diff --git a/.gitignore b/.gitignore
index e9d429c..fda2452 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,7 +12,6 @@
# Run temp file and dir
reference
-omc/bin
omc/tools
# Built Visual Studio Code Extensions
diff --git a/omc/bin/alarmAgent b/omc/bin/alarmAgent
new file mode 100644
index 0000000..cb1f60a
Binary files /dev/null and b/omc/bin/alarmAgent differ
diff --git a/omc/bin/alive b/omc/bin/alive
new file mode 100644
index 0000000..2996582
Binary files /dev/null and b/omc/bin/alive differ
diff --git a/omc/bin/bsscomm b/omc/bin/bsscomm
new file mode 100644
index 0000000..65c5a62
Binary files /dev/null and b/omc/bin/bsscomm differ
diff --git a/omc/bin/cdrCollector b/omc/bin/cdrCollector
new file mode 100644
index 0000000..738ef81
Binary files /dev/null and b/omc/bin/cdrCollector differ
diff --git a/omc/bin/changehostname b/omc/bin/changehostname
new file mode 100644
index 0000000..f92177f
--- /dev/null
+++ b/omc/bin/changehostname
@@ -0,0 +1,47 @@
+#!/bin/bash
+
+# $1 - parameter like
+# $2 - hostname
+# $3 - filename
+function modify_hostname()
+{
+ if [ -e $3 ] ;then
+ tmpfile=$3_bak
+ sed "s/^\s*$1\s*=\s*.*-/$1 = $2-/" $3 > $tmpfile
+ mv -f $tmpfile $3
+ chmod 644 $3
+ fi
+}
+
+
+
+nowHostname=`hostname -s`
+#echo hostname=$nowHostname
+
+nowHostnamePrefix=`echo $nowHostname|awk -F'-' '{print $1}'`
+#echo nowHostnamePrefix=$nowHostnamePrefix
+
+configDir=/usr/local/omc/config
+binconfDir=/usr/local/omc/bin/conf
+
+modify_hostname master-host $nowHostnamePrefix $configDir/my.cnf_omc-0
+modify_hostname master-host $nowHostnamePrefix $configDir/my.cnf_omc-0.ES
+modify_hostname master-host $nowHostnamePrefix $configDir/my.cnf_omc-1
+modify_hostname master-host $nowHostnamePrefix $configDir/my.cnf_omc-1.ES
+
+modify_hostname master-host $nowHostnamePrefix $binconfDir/my.cnf_omc-0
+modify_hostname master-host $nowHostnamePrefix $binconfDir/my.cnf_omc-0.ES
+modify_hostname master-host $nowHostnamePrefix $binconfDir/my.cnf_omc-1
+modify_hostname master-host $nowHostnamePrefix $binconfDir/my.cnf_omc-1.ES
+
+
+modify_hostname omc_master $nowHostnamePrefix $configDir/server.conf
+modify_hostname mysql_master $nowHostnamePrefix $configDir/server.conf
+modify_hostname omc_slave $nowHostnamePrefix $configDir/server.conf
+modify_hostname mysql_slave $nowHostnamePrefix $configDir/server.conf
+
+modify_hostname omc_master $nowHostnamePrefix $binconfDir/server.conf
+modify_hostname mysql_master $nowHostnamePrefix $binconfDir/server.conf
+modify_hostname omc_slave $nowHostnamePrefix $binconfDir/server.conf
+modify_hostname mysql_slave $nowHostnamePrefix $binconfDir/server.conf
+
diff --git a/omc/bin/chgDate b/omc/bin/chgDate
new file mode 100644
index 0000000..9b58a9a
--- /dev/null
+++ b/omc/bin/chgDate
@@ -0,0 +1,19 @@
+#!/bin/sh
+#when change the date of system,
+#people always forget to do "hwclock --systohc"
+#But system will use the hardware clock after reboot.
+#so it is necessary to do it by this script.
+
+#By Hewd 2004-02-04
+
+if [ $# -ne 2 ] ; then
+ echo "Example:"
+ echo "chgdate \"2004-02-15 12:00:00\""
+else
+ date --set="$1 $2"
+ echo "date --set=\"$1 $2\""
+ echo "hwclock --systohc"
+ date --set="$1 $2"
+ hwclock --systohc
+fi
+
diff --git a/omc/bin/chkDb b/omc/bin/chkDb
new file mode 100644
index 0000000..413ed0d
--- /dev/null
+++ b/omc/bin/chkDb
@@ -0,0 +1,41 @@
+#!/bin/sh
+# chkconfig: 2345 89 05
+# description: as following
+# For OMC to fix table
+# Comments to support chkconfig on RedHat Linux
+
+if [ `uname -r |grep -c '2.4.7-10'` -eq 1 ] ; then
+ dataDir="/usr/local/mysql/data"
+ mysqlBinDir="/usr/local/mysql/bin"
+else
+ dataDir="/var/lib/mysql"
+ mysqlBinDir="/usr/bin/"
+fi
+
+confDir=/usr/local/omc/bin/conf
+
+mode=$1
+case "$mode" in
+ start)
+ if [ `grep -c "dbStopMode=1" $confDir/chkDb.conf` -eq 0 ] ; then
+ cd $mysqlBinDir
+ chown -R mysql:mysql $dataDir/*
+ ./myisamchk -r -f -O sort_buffer_size=32M $dataDir/*/*.MYI
+ else
+ echo "It needn't to check database. "
+ echo "If you want to check database forcibly,please use \"$0 force\" "
+ fi
+ echo "dbStopMode=0" > $confDir/chkDb.conf
+ ;;
+ force)
+ cd $mysqlBinDir
+ ./myisamchk -r -f -O sort_buffer_size=32M $dataDir/*/*.MYI
+ ;;
+ stop)
+ echo "dbStopMode=1" > $confDir/chkDb.conf
+ ;;
+ *)
+ echo "Check and fix all database file"
+ echo "Usage: $0 start|force"
+ ;;
+esac
diff --git a/omc/bin/clearDb b/omc/bin/clearDb
new file mode 100644
index 0000000..7b25ed3
--- /dev/null
+++ b/omc/bin/clearDb
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+
+if [ `uname -r |grep -c '2.4.7-10'` -eq 1 ] ; then
+ dataDir="/usr/local/mysql/data"
+ mysqlBin="/usr/local/mysql/bin/mysql"
+else
+ dataDir="/var/lib/mysql"
+ mysqlBin="/usr/bin/mysql"
+fi
+
+mysql_user=`/usr/local/mssBak/script/encryption 1 "6266706d736f7a7c7b6b7f7b7f"`
+mysql_pw=`/usr/local/mssBak/script/encryption 1 "2b3a392757557b697b7e7e757b777c"`
+
+
+echo "Clear CSTA_DB.*Detail"
+echo "show tables from CSTA_DB like '%Detail%';"|$mysqlBin -u$mysql_user -p$mysql_pw | sed -e '1d'|awk '/Detail/{print "DELETE FROM CSTA_DB."$1";"}' | $mysqlBin -u$mysql_user -p$mysql_pw
+
+echo "Clear CSTA_DB.*Sum"
+echo "show tables from CSTA_DB like '%Sum%';"|$mysqlBin -u$mysql_user -p$mysql_pw | sed -e '1d'|awk '/Sum/{print "DELETE FROM CSTA_DB."$1";"}' | $mysqlBin -u$mysql_user -p$mysql_pw
+
+echo "Clear CDR_DB.cdrFrom*"
+echo "show tables from CDR_DB like 'cdrFrom%';"|$mysqlBin -u$mysql_user -p$mysql_pw | sed -e '1d'|awk '/cdrFrom/{print "DELETE FROM CDR_DB."$1";"}' | $mysqlBin -u$mysql_user -p$mysql_pw
+
+echo "Clear CSTA and CDR'S record finished!!"
+
diff --git a/omc/bin/conf/NR.conf b/omc/bin/conf/NR.conf
new file mode 100644
index 0000000..d633b48
--- /dev/null
+++ b/omc/bin/conf/NR.conf
@@ -0,0 +1,48 @@
+#NR.conf
+
+# Enable or disable the NRTRDE function,0-disable,1-enable
+Flag=0
+
+# The local mcc
+MCC=460
+
+# The local mnc
+MNC=02
+
+# The local tag
+LOCAL_TADIG=FEAKE
+
+# The time to make NRTRDE Delivery Report and Error Report
+MAKE_REPORT_TIME=12
+
+# The max value of CallEventDuration of a CDR
+CallEventDurationMax=6000
+
+# The version of the NRTRDE Delivery report
+ND_VERSION=1.0
+
+# The version of the NRTRDE Error report
+NE_VERSION=1.0
+
+# The specificationVersionNumber of the NRTRDE file
+NR_SVN=2
+
+# The ReleaseVersionNumber of the NRTRDE file
+NR_RVN=1
+
+# The backup directory
+NR_RECV_BAK_DIR=/usr/local/apache/htdocs/db_backup/nrtrde/NR_RECV_BAK/
+NR_SEND_BAK_DIR=/usr/local/apache/htdocs/db_backup/nrtrde/NR_SEND_BAK/
+ND_RECV_BAK_DIR=/usr/local/apache/htdocs/db_backup/nrtrde/ND_RECV_BAK/
+ND_SEND_BAK_DIR=/usr/local/apache/htdocs/db_backup/nrtrde/ND_SEND_BAK/
+NE_RECV_BAK_DIR=/usr/local/apache/htdocs/db_backup/nrtrde/NE_RECV_BAK/
+NE_SEND_BAK_DIR=/usr/local/apache/htdocs/db_backup/nrtrde/NE_SEND_BAK/
+LOCAL_CSV_DIR=/usr/local/apache/htdocs/db_backup/nrtrde/LOCAL_CSV/
+
+# The source directory to send the file
+SEND_DIR=/usr/local/apache/htdocs/db_backup/nrtrde/SEND/
+
+# The directory to receive the file
+RECV_DIR=/usr/local/apache/htdocs/db_backup/nrtrde/RECV/
+
+
diff --git a/omc/bin/conf/chkDb.conf b/omc/bin/conf/chkDb.conf
new file mode 100644
index 0000000..3d7b336
--- /dev/null
+++ b/omc/bin/conf/chkDb.conf
@@ -0,0 +1 @@
+dbStopMode=0
diff --git a/omc/bin/conf/conv_prefix.conf b/omc/bin/conf/conv_prefix.conf
new file mode 100644
index 0000000..559e81a
Binary files /dev/null and b/omc/bin/conf/conv_prefix.conf differ
diff --git a/omc/bin/conf/debug.conf b/omc/bin/conf/debug.conf
new file mode 100644
index 0000000..42013d9
--- /dev/null
+++ b/omc/bin/conf/debug.conf
@@ -0,0 +1,6 @@
+//Debug Conf File
+
+System Type = CDMA ; // GSM, CDMA , GC_SSW
+MMI Switch = OFF ; // ON , OFF
+
+
diff --git a/omc/bin/conf/help_page b/omc/bin/conf/help_page
new file mode 100644
index 0000000..4202a7e
--- /dev/null
+++ b/omc/bin/conf/help_page
@@ -0,0 +1,20 @@
+
+ ******************
+ * Module PAGE *
+ ******************
+
+ Welcome to DEBUG MONITOR.
+
+ Press 's' or 'S' to enter "SUB MODULE SELECTION PAGE".
+
+ In "SUB MODULE SELECTION PAGE",
+ Press 'x' or 'X' to return "HELP PAGE",
+ Press 'a-p' or 'A-P' to select sub module.
+
+ In each sub module, Press '0-9' and 'a-f' to select pages.
+
+ There are two methods to use Debug,
+ 1. Serial Port, use PC-to-PC serial line.
+ 2. Telnet, use "telnet dst_host_ip 4965".
+
+$
diff --git a/omc/bin/conf/hosts b/omc/bin/conf/hosts
new file mode 100644
index 0000000..0a47d90
--- /dev/null
+++ b/omc/bin/conf/hosts
@@ -0,0 +1,5 @@
+127.0.0.1 localhost.localdomain localhost
+172.18.128.1 omc-0.iwv omc-0
+172.18.129.1 omc-1.iwv omc-1
+172.18.98.1 mss-0.iwv mss-0
+172.18.99.1 mss-1.iwv mss-1
diff --git a/omc/bin/conf/httpd.conf b/omc/bin/conf/httpd.conf
new file mode 100644
index 0000000..59266cc
--- /dev/null
+++ b/omc/bin/conf/httpd.conf
@@ -0,0 +1,946 @@
+ ##
+ ## httpd.conf -- Apache HTTP server configuration file
+ ##
+
+ #
+ # Based upon the NCSA server configuration files originally by Rob McCool.
+ #
+ # This is the main Apache server configuration file. It contains the
+ # configuration directives that give the server its instructions.
+ # See for detailed information about
+ # the directives.
+ #
+ # Do NOT simply read the instructions in here without understanding
+ # what they do. They're here only as hints or reminders. If you are unsure
+ # consult the online docs. You have been warned.
+ #
+ # After this file is processed, the server will look for and process
+ # /usr/local/apache/conf/srm.conf and then /usr/local/apache/conf/access.conf
+ # unless you have overridden these with ResourceConfig and/or
+ # AccessConfig directives here.
+ #
+ # The configuration directives are grouped into three basic sections:
+ # 1. Directives that control the operation of the Apache server process as a
+ # whole (the 'global environment').
+ # 2. Directives that define the parameters of the 'main' or 'default' server,
+ # which responds to requests that aren't handled by a virtual host.
+ # These directives also provide default values for the settings
+ # of all virtual hosts.
+ # 3. Settings for virtual hosts, which allow Web requests to be sent to
+ # different IP addresses or hostnames and have them handled by the
+ # same Apache server process.
+ #
+ # Configuration and logfile names: If the filenames you specify for many
+ # of the server's control files begin with "/" (or "drive:/" for Win32), the
+ # server will use that explicit path. If the filenames do *not* begin
+ # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
+ # with ServerRoot set to "/usr/local/apache" will be interpreted by the
+ # server as "/usr/local/apache/logs/foo.log".
+ #
+
+ ### Section 1: Global Environment
+ #
+ # The directives in this section affect the overall operation of Apache,
+ # such as the number of concurrent requests it can handle or where it
+ # can find its configuration files.
+ #
+
+ #
+ # ServerType is either inetd, or standalone. Inetd mode is only supported on
+ # Unix platforms.
+ #
+ ServerType standalone
+
+ #
+ # ServerRoot: The top of the directory tree under which the server's
+ # configuration, error, and log files are kept.
+ #
+ # NOTE! If you intend to place this on an NFS (or otherwise network)
+ # mounted filesystem then please read the LockFile documentation
+ # (available at );
+ # you will save yourself a lot of trouble.
+ #
+ # Do NOT add a slash at the end of the directory path.
+ #
+ ServerRoot "/usr/local/apache"
+
+ #
+ # The LockFile directive sets the path to the lockfile used when Apache
+ # is compiled with either USE_FCNTL_SERIALIZED_ACCEPT or
+ # USE_FLOCK_SERIALIZED_ACCEPT. This directive should normally be left at
+ # its default value. The main reason for changing it is if the logs
+ # directory is NFS mounted, since the lockfile MUST BE STORED ON A LOCAL
+ # DISK. The PID of the main server process is automatically appended to
+ # the filename.
+ #
+ #LockFile /usr/local/apache/logs/httpd.lock
+
+ #
+ # PidFile: The file in which the server should record its process
+ # identification number when it starts.
+ #
+ PidFile /usr/local/apache/logs/httpd.pid
+
+ #
+ # ScoreBoardFile: File used to store internal server process information.
+ # Not all architectures require this. But if yours does (you'll know because
+ # this file will be created when you run Apache) then you *must* ensure that
+ # no two invocations of Apache share the same scoreboard file.
+ #
+ ScoreBoardFile /usr/local/apache/logs/httpd.scoreboard
+
+ #
+ # In the standard configuration, the server will process this file,
+ # srm.conf, and access.conf in that order. The latter two files are
+ # now distributed empty, as it is recommended that all directives
+ # be kept in a single file for simplicity. The commented-out values
+ # below are the built-in defaults. You can have the server ignore
+ # these files altogether by using "/dev/null" (for Unix) or
+ # "nul" (for Win32) for the arguments to the directives.
+ #
+ #ResourceConfig conf/srm.conf
+ #AccessConfig conf/access.conf
+
+ #
+ # Timeout: The number of seconds before receives and sends time out.
+ #
+ Timeout 300
+
+ #
+ # KeepAlive: Whether or not to allow persistent connections (more than
+ # one request per connection). Set to "Off" to deactivate.
+ #
+ KeepAlive On
+
+ #
+ # MaxKeepAliveRequests: The maximum number of requests to allow
+ # during a persistent connection. Set to 0 to allow an unlimited amount.
+ # We recommend you leave this number high, for maximum performance.
+ #
+ MaxKeepAliveRequests 100
+
+ #
+ # KeepAliveTimeout: Number of seconds to wait for the next request from the
+ # same client on the same connection.
+ #
+ KeepAliveTimeout 15
+
+ #
+ # Server-pool size regulation. Rather than making you guess how many
+ # server processes you need, Apache dynamically adapts to the load it
+ # sees --- that is, it tries to maintain enough server processes to
+ # handle the current load, plus a few spare servers to handle transient
+ # load spikes (e.g., multiple simultaneous requests from a single
+ # Netscape browser).
+ #
+ # It does this by periodically checking how many servers are waiting
+ # for a request. If there are fewer than MinSpareServers, it creates
+ # a new spare. If there are more than MaxSpareServers, some of the
+ # spares die off. The default values are probably OK for most sites.
+ #
+ MinSpareServers 5
+ MaxSpareServers 10
+
+ #
+ # Number of servers to start initially --- should be a reasonable ballpark
+ # figure.
+ #
+ StartServers 5
+
+ #
+ # Limit on total number of servers running, i.e., limit on the number
+ # of clients who can simultaneously connect --- if this limit is ever
+ # reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW.
+ # It is intended mainly as a brake to keep a runaway server from taking
+ # the system with it as it spirals down...
+ #
+ MaxClients 100
+
+ #
+ # MaxRequestsPerChild: the number of requests each child process is
+ # allowed to process before the child dies. The child will exit so
+ # as to avoid problems after prolonged use when Apache (and maybe the
+ # libraries it uses) leak memory or other resources. On most systems, this
+ # isn't really needed, but a few (such as Solaris) do have notable leaks
+ # in the libraries. For these platforms, set to something like 10000
+ # or so; a setting of 0 means unlimited.
+ #
+ # NOTE: This value does not include keepalive requests after the initial
+ # request per connection. For example, if a child process handles
+ # an initial request and 10 subsequent "keptalive" requests, it
+ # would only count as 1 request towards this limit.
+ #
+ MaxRequestsPerChild 0
+
+ #
+ # Listen: Allows you to bind Apache to specific IP addresses and/or
+ # ports, in addition to the default. See also the
+ # directive.
+ #
+ #Listen 3000
+ #Listen 12.34.56.78:80
+
+ #
+ # BindAddress: You can support virtual hosts with this option. This directive
+ # is used to tell the server which IP address to listen to. It can either
+ # contain "*", an IP address, or a fully qualified Internet domain name.
+ # See also the and Listen directives.
+ #
+ #BindAddress *
+
+ #
+ # Dynamic Shared Object (DSO) Support
+ #
+ # To be able to use the functionality of a module which was built as a DSO you
+ # have to place corresponding `LoadModule' lines at this location so the
+ # directives contained in it are actually available _before_ they are used.
+ # Please read the file README.DSO in the Apache 1.3 distribution for more
+ # details about the DSO mechanism and run `httpd -l' for the list of already
+ # built-in (statically linked and thus always available) modules in your httpd
+ # binary.
+ #
+ # Note: The order is which modules are loaded is important. Don't change
+ # the order below without expert advice.
+ #
+ # Example:
+ # LoadModule foo_module libexec/mod_foo.so
+
+ #
+ # ExtendedStatus controls whether Apache will generate "full" status
+ # information (ExtendedStatus On) or just basic information (ExtendedStatus
+ # Off) when the "server-status" handler is called. The default is Off.
+ #
+ #ExtendedStatus On
+
+ ### Section 2: 'Main' server configuration
+ #
+ # The directives in this section set up the values used by the 'main'
+ # server, which responds to any requests that aren't handled by a
+ # definition. These values also provide defaults for
+ # any containers you may define later in the file.
+ #
+ # All of these directives may appear inside containers,
+ # in which case these default settings will be overridden for the
+ # virtual host being defined.
+ #
+
+ #
+ # If your ServerType directive (set earlier in the 'Global Environment'
+ # section) is set to "inetd", the next few directives don't have any
+ # effect since their settings are defined by the inetd configuration.
+ # Skip ahead to the ServerAdmin directive.
+ #
+
+ #
+ # Port: The port to which the standalone server listens. For
+ # ports < 1023, you will need httpd to be run as root initially.
+ #
+ Port 80
+
+ #
+ # If you wish httpd to run as a different user or group, you must run
+ # httpd as root initially and it will switch.
+ #
+ # User/Group: The name (or #number) of the user/group to run httpd as.
+ # . On SCO (ODT 3) use "User nouser" and "Group nogroup".
+ # . On HPUX you may not be able to use shared memory as nobody, and the
+ # suggested workaround is to create a user www and use that user.
+ # NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
+ # when the value of (unsigned)Group is above 60000;
+ # don't use Group nobody on these systems!
+ #
+User www
+Group omc
+
+#
+# ServerAdmin: Your address, where problems with the server should be
+# e-mailed. This address appears on some server-generated pages, such
+# as error documents.
+#
+ServerAdmin root@omc-u2
+
+#
+# ServerName allows you to set a host name which is sent back to clients for
+# your server if it's different than the one the program would get (i.e., use
+# "www" instead of the host's real name).
+#
+# Note: You cannot just invent host names and hope they work. The name you
+# define here must be a valid DNS name for your host. If you don't understand
+# this, ask your network administrator.
+# If your host doesn't have a registered DNS name, enter its IP address here.
+# You will have to access it by its address (e.g., http://123.45.67.89/)
+# anyway, and this will make redirections work in a sensible way.
+#
+
+ServerName omc-u2
+#
+# DocumentRoot: The directory out of which you will serve your
+# documents. By default, all requests are taken from this directory, but
+# symbolic links and aliases may be used to point to other locations.
+#
+DocumentRoot "/usr/local/apache/htdocs/"
+
+#
+# Each directory to which Apache has access, can be configured with respect
+# to which services and features are allowed and/or disabled in that
+# directory (and its subdirectories).
+#
+# First, we configure the "default" to be a very restrictive set of
+# permissions.
+#
+
+ Options FollowSymLinks
+ AllowOverride None
+
+
+#
+# Note that from this point forward you must specifically allow
+# particular features to be enabled - so if something's not working as
+# you might expect, make sure that you have specifically enabled it
+# below.
+#
+
+#
+# This should be changed to whatever you set DocumentRoot to.
+#
+
+
+#
+# This may also be "None", "All", or any combination of "Indexes",
+# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
+#
+# Note that "MultiViews" must be named *explicitly* --- "Options All"
+# doesn't give it to you.
+#
+ Options Indexes FollowSymLinks MultiViews
+
+#
+# This controls which options the .htaccess files in directories can
+# override. Can also be "All", or any combination of "Options", "FileInfo",
+# "AuthConfig", and "Limit"
+#
+ AllowOverride None
+
+#
+# Controls who can get stuff from this server.
+#
+ Order allow,deny
+ Allow from all
+
+
+#
+# UserDir: The name of the directory which is appended onto a user's home
+# directory if a ~user request is received.
+#
+
+ UserDir public_html
+
+
+#
+# Control access to UserDir directories. The following is an example
+# for a site where these directories are restricted to read-only.
+#
+#
+# AllowOverride FileInfo AuthConfig Limit
+# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
+#
+# Order allow,deny
+# Allow from all
+#
+#
+# Order deny,allow
+# Deny from all
+#
+#
+
+#
+# DirectoryIndex: Name of the file or files to use as a pre-written HTML
+# directory index. Separate multiple entries with spaces.
+#
+
+ DirectoryIndex index.php index.html index.php3
+
+
+#
+# AccessFileName: The name of the file to look for in each directory
+# for access control information.
+#
+AccessFileName .htaccess
+
+#
+# The following lines prevent .htaccess files from being viewed by
+# Web clients. Since .htaccess files often contain authorization
+# information, access is disallowed for security reasons. Comment
+# these lines out if you want Web visitors to see the contents of
+# .htaccess files. If you change the AccessFileName directive above,
+# be sure to make the corresponding changes here.
+#
+# Also, folks tend to use names such as .htpasswd for password
+# files, so this will protect those as well.
+#
+
+ Order allow,deny
+ Deny from all
+
+
+#
+# CacheNegotiatedDocs: By default, Apache sends "Pragma: no-cache" with each
+# document that was negotiated on the basis of content. This asks proxy
+# servers not to cache the document. Uncommenting the following line disables
+# this behavior, and proxies will be allowed to cache the documents.
+#
+#CacheNegotiatedDocs
+
+#
+# UseCanonicalName: (new for 1.3) With this setting turned on, whenever
+# Apache needs to construct a self-referencing URL (a URL that refers back
+# to the server the response is coming from) it will use ServerName and
+# Port to form a "canonical" name. With this setting off, Apache will
+# use the hostname:port that the client supplied, when possible. This
+# also affects SERVER_NAME and SERVER_PORT in CGI scripts.
+#
+UseCanonicalName On
+
+#
+# TypesConfig describes where the mime.types file (or equivalent) is
+# to be found.
+#
+
+ TypesConfig /usr/local/apache/conf/mime.types
+
+
+#
+# DefaultType is the default MIME type the server will use for a document
+# if it cannot otherwise determine one, such as from filename extensions.
+# If your server contains mostly text or HTML documents, "text/plain" is
+# a good value. If most of your content is binary, such as applications
+# or images, you may want to use "application/octet-stream" instead to
+# keep browsers from trying to display binary files as though they are
+# text.
+#
+DefaultType text/plain
+
+#
+# The mod_mime_magic module allows the server to use various hints from the
+# contents of the file itself to determine its type. The MIMEMagicFile
+# directive tells the module where the hint definitions are located.
+# mod_mime_magic is not part of the default server (you have to add
+# it yourself with a LoadModule [see the DSO paragraph in the 'Global
+# Environment' section], or recompile the server and include mod_mime_magic
+# as part of the configuration), so it's enclosed in an container.
+# This means that the MIMEMagicFile directive will only be processed if the
+# module is part of the server.
+#
+
+ MIMEMagicFile /usr/local/apache/conf/magic
+
+
+#
+# HostnameLookups: Log the names of clients or just their IP addresses
+# e.g., www.apache.org (on) or 204.62.129.132 (off).
+# The default is off because it'd be overall better for the net if people
+# had to knowingly turn this feature on, since enabling it means that
+# each client request will result in AT LEAST one lookup request to the
+# nameserver.
+#
+HostnameLookups Off
+
+#
+# ErrorLog: The location of the error log file.
+# If you do not specify an ErrorLog directive within a
+# container, error messages relating to that virtual host will be
+# logged here. If you *do* define an error logfile for a
+# container, that host's errors will be logged there and not here.
+#
+ErrorLog /usr/local/apache/logs/error_log
+
+#
+# LogLevel: Control the number of messages logged to the error_log.
+# Possible values include: debug, info, notice, warn, error, crit,
+# alert, emerg.
+#
+LogLevel warn
+
+#
+# The following directives define some format nicknames for use with
+# a CustomLog directive (see below).
+#
+LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
+LogFormat "%h %l %u %t \"%r\" %>s %b" common
+LogFormat "%{Referer}i -> %U" referer
+LogFormat "%{User-agent}i" agent
+
+#
+# The location and format of the access logfile (Common Logfile Format).
+# If you do not define any access logfiles within a
+# container, they will be logged here. Contrariwise, if you *do*
+# define per- access logfiles, transactions will be
+# logged therein and *not* in this file.
+#
+CustomLog "|/usr/local/apache/bin/rotatelogs /usr/local/apache/logs/access_log 86400" common
+
+#
+# If you would like to have agent and referer logfiles, uncomment the
+# following directives.
+#
+#CustomLog /usr/local/apache/logs/referer_log referer
+#CustomLog /usr/local/apache/logs/agent_log agent
+
+#
+# If you prefer a single logfile with access, agent, and referer information
+# (Combined Logfile Format) you can use the following directive.
+#
+#CustomLog /usr/local/apache/logs/access_log combined
+
+#
+# Optionally add a line containing the server version and virtual host
+# name to server-generated pages (error documents, FTP directory listings,
+# mod_status and mod_info output etc., but not CGI generated documents).
+# Set to "EMail" to also include a mailto: link to the ServerAdmin.
+# Set to one of: On | Off | EMail
+#
+ServerSignature On
+
+#
+# Aliases: Add here as many aliases as you need (with no limit). The format is
+# Alias fakename realname
+#
+
+
+ #
+ # Note that if you include a trailing / on fakename then the server will
+ # require it to be present in the URL. So "/icons" isn't aliased in this
+ # example, only "/icons/"..
+ #
+ #Alias /icons/ "/usr/local/apache/icons/"
+ #Alias /mysql/ "/usr/local/apache/htdocs/phpMyAdmin/"
+ #Alias /omc/ "/usr/local/apache/htdocs/ts_omc/"
+
+
+ Options Indexes MultiViews
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+
+
+ #
+ # ScriptAlias: This controls which directories contain server scripts.
+ # ScriptAliases are essentially the same as Aliases, except that
+ # documents in the realname directory are treated as applications and
+ # run by the server when requested rather than as documents sent to the client.
+ # The same rules about trailing "/" apply to ScriptAlias directives as to
+ # Alias.
+ #
+ ScriptAlias /cgi-bin/ "/usr/local/apache/cgi-bin/"
+
+ #
+ # "/usr/local/apache/cgi-bin" should be changed to whatever your ScriptAliased
+ # CGI directory exists, if you have that configured.
+ #
+
+ AllowOverride None
+ Options None
+ Order allow,deny
+ Allow from all
+
+
+
+# End of aliases.
+
+#
+# Redirect allows you to tell clients about documents which used to exist in
+# your server's namespace, but do not anymore. This allows you to tell the
+# clients where to look for the relocated document.
+# Format: Redirect old-URI new-URL
+#
+
+#
+# Directives controlling the display of server-generated directory listings.
+#
+
+
+ #
+ # FancyIndexing is whether you want fancy directory indexing or standard
+ #
+ IndexOptions FancyIndexing
+
+ #
+ # AddIcon* directives tell the server which icon to show for different
+ # files or filename extensions. These are only displayed for
+ # FancyIndexed directories.
+ #
+ AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
+
+ AddIconByType (TXT,/icons/text.gif) text/*
+ AddIconByType (IMG,/icons/image2.gif) image/*
+ AddIconByType (SND,/icons/sound2.gif) audio/*
+ AddIconByType (VID,/icons/movie.gif) video/*
+
+ AddIcon /icons/binary.gif .bin .exe
+ AddIcon /icons/binhex.gif .hqx
+ AddIcon /icons/tar.gif .tar
+ AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
+ AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
+ AddIcon /icons/a.gif .ps .ai .eps
+ AddIcon /icons/layout.gif .html .shtml .htm .pdf
+ AddIcon /icons/text.gif .txt
+ AddIcon /icons/c.gif .c
+ AddIcon /icons/p.gif .pl .py
+ AddIcon /icons/f.gif .for
+ AddIcon /icons/dvi.gif .dvi
+ AddIcon /icons/uuencoded.gif .uu
+ AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
+ AddIcon /icons/tex.gif .tex .csv
+ AddIcon /icons/bomb.gif core
+
+ AddIcon /icons/back.gif ..
+ AddIcon /icons/hand.right.gif README
+ AddIcon /icons/folder.gif ^^DIRECTORY^^
+ AddIcon /icons/blank.gif ^^BLANKICON^^
+
+ #
+ # DefaultIcon is which icon to show for files which do not have an icon
+ # explicitly set.
+ #
+ DefaultIcon /icons/unknown.gif
+
+ #
+ # AddDescription allows you to place a short description after a file in
+ # server-generated indexes. These are only displayed for FancyIndexed
+ # directories.
+ # Format: AddDescription "description" filename
+ #
+ #AddDescription "GZIP compressed document" .gz
+ #AddDescription "tar archive" .tar
+ #AddDescription "GZIP compressed tar archive" .tgz
+
+ #
+ # ReadmeName is the name of the README file the server will look for by
+ # default, and append to directory listings.
+ #
+ # HeaderName is the name of a file which should be prepended to
+ # directory indexes.
+ #
+ # If MultiViews are amongst the Options in effect, the server will
+ # first look for name.html and include it if found. If name.html
+ # doesn't exist, the server will then look for name.txt and include
+ # it as plaintext if found.
+ #
+ ReadmeName README
+ HeaderName HEADER
+
+ #
+ # IndexIgnore is a set of filenames which directory indexing should ignore
+ # and not include in the listing. Shell-style wildcarding is permitted.
+ #
+ IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
+
+
+# End of indexing directives.
+
+#
+# Document types.
+#
+
+
+ #
+ # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
+ # information on the fly. Note: Not all browsers support this.
+ # Despite the name similarity, the following Add* directives have nothing
+ # to do with the FancyIndexing customization directives above.
+ #
+ #AddEncoding x-compress Z
+ #AddEncoding x-gzip gz tgz
+
+ #
+ # AddLanguage allows you to specify the language of a document. You can
+ # then use content negotiation to give a browser a file in a language
+ # it can understand.
+ #
+ # Note 1: The suffix does not have to be the same as the language
+ # keyword --- those with documents in Polish (whose net-standard
+ # language code is pl) may wish to use "AddLanguage pl .po" to
+ # avoid the ambiguity with the common suffix for perl scripts.
+ #
+ # Note 2: The example entries below illustrate that in quite
+ # some cases the two character 'Language' abbriviation is not
+ # identical to the two character 'Country' code for its country,
+ # E.g. 'Danmark/dk' versus 'Danish/da'.
+ #
+ # Note 3: In the case of 'ltz' we violate the RFC by using a three char
+ # specifier. But there is 'work in progress' to fix this and get
+ # the reference data for rfc1766 cleaned up.
+ #
+ # Danish (da) - Dutch (nl) - English (en) - Estonian (ee)
+ # French (fr) - German (de) - Greek-Modern (el)
+ # Italian (it) - Portugese (pt) - Luxembourgeois* (ltz)
+ # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
+ # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
+ #
+ AddLanguage da .dk
+ AddLanguage nl .nl
+ AddLanguage en .en
+ AddLanguage et .ee
+ AddLanguage fr .fr
+ AddLanguage de .de
+ AddLanguage el .el
+ AddLanguage it .it
+ AddLanguage ja .ja
+ AddCharset ISO-2022-JP .jis
+ AddLanguage pl .po
+ AddCharset ISO-8859-2 .iso-pl
+ AddLanguage pt .pt
+ AddLanguage pt-br .pt-br
+ AddLanguage ltz .lu
+ AddLanguage ca .ca
+ AddLanguage es .es
+ AddLanguage sv .se
+ AddLanguage cz .cz
+
+ # LanguagePriority allows you to give precedence to some languages
+ # in case of a tie during content negotiation.
+ #
+ # Just list the languages in decreasing order of preference. We have
+ # more or less alphabetized them here. You probably want to change this.
+ #
+
+ LanguagePriority en da nl et fr de el it ja pl pt pt-br ltz ca es sv
+
+
+ #
+ # AddType allows you to tweak mime.types without actually editing it, or to
+ # make certain files to be certain types.
+ #
+ # For example, the PHP 3.x module (not part of the Apache distribution - see
+ # http://www.php.net) will typically use:
+ #
+ AddType application/x-httpd-php3 .php3
+ AddType application/x-httpd-php3-source .phps
+ #
+ # And for PHP 4.x, use:
+ #
+ AddType application/x-httpd-php .php3
+ AddType application/x-httpd-php .inc
+ AddType application/x-httpd-php .php
+ AddType application/x-httpd-php-source .phps
+
+ AddType application/x-tar .tar
+ AddType application/x-tgz .tgz
+ AddType application/x-csv .csv
+
+ #
+ # AddHandler allows you to map certain file extensions to "handlers",
+ # actions unrelated to filetype. These can be either built into the server
+ # or added with the Action command (see below)
+ #
+ # If you want to use server side includes, or CGI outside
+ # ScriptAliased directories, uncomment the following lines.
+ #
+ # To use CGI scripts:
+ #
+ #AddHandler cgi-script .cgi
+
+ #
+ # To use server-parsed HTML files
+ #
+ #AddType text/html .shtml
+ #AddHandler server-parsed .shtml
+
+ #
+ # Uncomment the following line to enable Apache's send-asis HTTP file
+ # feature
+ #
+ #AddHandler send-as-is asis
+
+ #
+ # If you wish to use server-parsed imagemap files, use
+ #
+ #AddHandler imap-file map
+
+ #
+ # To enable type maps, you might want to use
+ #
+ #AddHandler type-map var
+
+
+# End of document types.
+
+#
+# Action lets you define media types that will execute a script whenever
+# a matching file is called. This eliminates the need for repeated URL
+# pathnames for oft-used CGI file processors.
+# Format: Action media/type /cgi-script/location
+# Format: Action handler-name /cgi-script/location
+#
+
+#
+# MetaDir: specifies the name of the directory in which Apache can find
+# meta information files. These files contain additional HTTP headers
+# to include when sending the document
+#
+#MetaDir .web
+
+#
+# MetaSuffix: specifies the file name suffix for the file containing the
+# meta information.
+#
+#MetaSuffix .meta
+
+#
+# Customizable error response (Apache style)
+# these come in three flavors
+#
+# 1) plain text
+#ErrorDocument 500 "The server made a boo boo.
+# n.b. the (") marks it as text, it does not get output
+#
+# 2) local redirects
+#ErrorDocument 404 /missing.html
+# to redirect to local URL /missing.html
+#ErrorDocument 404 /cgi-bin/missing_handler.pl
+# N.B.: You can redirect to a script or a document using server-side-includes.
+#
+# 3) external redirects
+#ErrorDocument 402 http://some.other_server.com/subscription_info.html
+# N.B.: Many of the environment variables associated with the original
+# request will *not* be available to such a script.
+
+#
+# Customize behaviour based on the browser
+#
+
+
+ #
+ # The following directives modify normal HTTP response behavior.
+ # The first directive disables keepalive for Netscape 2.x and browsers that
+ # spoof it. There are known problems with these browser implementations.
+ # The second directive is for Microsoft Internet Explorer 4.0b2
+ # which has a broken HTTP/1.1 implementation and does not properly
+ # support keepalive when it is used on 301 or 302 (redirect) responses.
+ #
+ BrowserMatch "Mozilla/2" nokeepalive
+ BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
+
+ #
+ # The following directive disables HTTP/1.1 responses to browsers which
+ # are in violation of the HTTP/1.0 spec by not being able to grok a
+ # basic 1.1 response.
+ #
+ BrowserMatch "RealPlayer 4\.0" force-response-1.0
+ BrowserMatch "Java/1\.0" force-response-1.0
+ BrowserMatch "JDK/1\.0" force-response-1.0
+
+
+
+#
+# Allow server status reports, with the URL of http://servername/server-status
+# Change the ".your_domain.com" to match your domain to enable.
+#
+#
+# SetHandler server-status
+# Order deny,allow
+# Deny from all
+# Allow from .your_domain.com
+#
+
+#
+# Allow remote server configuration reports, with the URL of
+# http://servername/server-info (requires that mod_info.c be loaded).
+# Change the ".your_domain.com" to match your domain to enable.
+#
+#
+# SetHandler server-info
+# Order deny,allow
+# Deny from all
+# Allow from .your_domain.com
+#
+
+#
+# There have been reports of people trying to abuse an old bug from pre-1.1
+# days. This bug involved a CGI script distributed as a part of Apache.
+# By uncommenting these lines you can redirect these attacks to a logging
+# script on phf.apache.org. Or, you can record them yourself, using the script
+# support/phf_abuse_log.cgi.
+#
+#
+# Deny from all
+# ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
+#
+
+#
+# Proxy Server directives. Uncomment the following lines to
+# enable the proxy server:
+#
+#
+ #ProxyRequests On
+ #
+ #
+ # Order deny,allow
+ # Deny from all
+ # Allow from .your_domain.com
+ #
+
+ #
+ # Enable/disable the handling of HTTP/1.1 "Via:" headers.
+ # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
+ # Set to one of: Off | On | Full | Block
+ #
+ #ProxyVia On
+
+ #
+ # To enable the cache as well, edit and uncomment the following lines:
+ # (no cacheing without CacheRoot)
+ #
+ #CacheRoot "/usr/local/apache/proxy"
+ #CacheSize 5
+ #CacheGcInterval 4
+ #CacheMaxExpire 24
+ #CacheLastModifiedFactor 0.1
+ #CacheDefaultExpire 1
+ #NoCache a_domain.com another_domain.edu joes.garage_sale.com
+
+#
+# End of proxy directives.
+
+### Section 3: Virtual Hosts
+#
+# VirtualHost: If you want to maintain multiple domains/hostnames on your
+# machine you can setup VirtualHost containers for them.
+# Please see the documentation at
+# for further details before you try to setup virtual hosts.
+# You may use the command line option '-S' to verify your virtual host
+# configuration.
+
+#
+# If you want to use name-based virtual hosts you need to define at
+# least one IP address (and port number) for them.
+#
+#NameVirtualHost 12.34.56.78:80
+#NameVirtualHost 192.168.1.230
+
+
+#
+# VirtualHost example:
+# Almost any Apache directive may go into a VirtualHost container.
+#
+
+#
+# ServerAdmin webmaster@host.some_domain.com
+# DocumentRoot /usr/local/apache/htdocs/
+# ServerName omc-u2
+# ErrorLog logs/host.some_domain.com-error_log
+# CustomLog logs/host.some_domain.com-access_log common
+#
+
+#
+# ServerAdmin webmaster@host.some_domain.com
+# DocumentRoot /usr/local/apache/htdocs/phpMyAdmin/
+# ServerName admin
+# ErrorLog logs/host.some_domain.com-error_log
+# CustomLog logs/host.some_domain.com-access_log common
+#
+
+
+
+#
+#
diff --git a/omc/bin/conf/iptrans.conf b/omc/bin/conf/iptrans.conf
new file mode 100644
index 0000000..fc281ed
--- /dev/null
+++ b/omc/bin/conf/iptrans.conf
@@ -0,0 +1,25 @@
+#ipconfig for OMC
+4950=UDP,4,BUFFER
+4951=UDP,0,BUFFER
+4952=UDP,0,BUFFER
+4953=UDP,0,BUFFER
+4954=UDP,4,BUFFER
+4955=UDP,0,BUFFER
+4956=UDP,0,BUFFER
+4957=UDP,4,BUFFER
+4958=UDP,4,BUFFER
+4959=UDP,4,BUFFER
+4960=UDP,4,BUFFER
+4961=UDP,4,BUFFER
+4962=UDP,4,BUFFER
+4963=UDP,0,BUFFER
+4964=UDP,4,BUFFER
+4965=TCP,6,BUFFER
+4966=UDP,0,DIRECT
+4967=UDP,0,BUFFER
+4968=UDP,6,BUFFER
+4969=UDP,4,BUFFER
+4970=UDP,0,BUFFER
+4971=UDP,0,BUFFER
+4972=UDP,0,BUFFER
+4973=UDP,0,BUFFER
diff --git a/omc/bin/conf/manager_engine.conf b/omc/bin/conf/manager_engine.conf
new file mode 100644
index 0000000..9114648
Binary files /dev/null and b/omc/bin/conf/manager_engine.conf differ
diff --git a/omc/bin/conf/mcms_conf.txt b/omc/bin/conf/mcms_conf.txt
new file mode 100644
index 0000000..30fea2b
--- /dev/null
+++ b/omc/bin/conf/mcms_conf.txt
@@ -0,0 +1,2 @@
+bind ip=192.168.4.75
+shm key shift=0
diff --git a/omc/bin/conf/menu_page b/omc/bin/conf/menu_page
new file mode 100644
index 0000000..2f32f7a
--- /dev/null
+++ b/omc/bin/conf/menu_page
@@ -0,0 +1,17 @@
+
+ *******************
+ * MENU PAGE *
+ *******************
+
+ a -- IPTR m -- MNP
+ b -- MTP3 n -- DEBUG
+ c -- SCCP o -- AUC
+ d -- TCAP p -- SMPP
+ e -- XAPP r -- EMS
+ f -- MSC s -- BICC
+ g -- VLR t -- MGC
+ h -- SSF u -- GCP
+ i -- SMEG v -- 8ECP
+ j -- SMSC w -- AIF
+ k -- PPS y -- ISUP
+ l -- SNMP z -- AAS
diff --git a/omc/bin/conf/menu_page2 b/omc/bin/conf/menu_page2
new file mode 100644
index 0000000..9f5eaaa
--- /dev/null
+++ b/omc/bin/conf/menu_page2
@@ -0,0 +1,17 @@
+
+ *******************
+ * MENU PAGE *
+ *******************
+
+ a -- IPTR m -- MNP
+ b -- MTP3 n -- DEBUG
+ c -- SCCP o -- AUC
+ d -- TCAP p -- SMPP
+ e -- XAPP r -- XUA
+ f -- MSC s -- BICC
+ g -- VLR t -- MGC
+ h -- SSF u -- GCP
+ i -- SMEG v -- 8ECP
+ j -- SMSC w -- AIF
+ k -- PPS y -- ISUP
+ l -- SNMP z -- AAS
diff --git a/omc/bin/conf/mtp3.conf b/omc/bin/conf/mtp3.conf
new file mode 100644
index 0000000..38a4570
--- /dev/null
+++ b/omc/bin/conf/mtp3.conf
@@ -0,0 +1,1477 @@
+#MTP3 CONFIGURE FILE
+
+[SERVICE NETWORK SP LEN]
+[77]
+
+[MTP3LITE TCP PORT]
+[0000]
+
+[LOCAL SP]
+[000001] [000200] [000001] [000001]
+[000001] [000200] [000001] [000000]
+
+[LINK ATTRIBUTE]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [02.00.41cae29b.03.09.00.00000000.ff.ff.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [03.00.41cae29b.03.03.00.00000000.ff.fc.42cae29b]
+[04.00.41cae29b.03.04.00.00000000.0f.ff.ffffffff] [05.00.41cae29b.03.05.00.00000000.ff.ff.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [1c.00.41cae29b.03.0f.00.00000000.ff.fc.42cae29b] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [18.00.41cae29b.03.00.00.00000000.ff.ff.42cae29b] [1e.00.41cae29b.03.12.00.00000000.ff.fc.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [13.01.41cae29b.03.01.01.00000000.ff.ff.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[13.00.41cae29b.03.0a.00.00000000.ff.ff.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [7e.00.41cae29b.03.06.01.00000000.0f.ff.ffffffff] [7f.00.42cae29b.03.05.01.00000000.0f.ff.ffffffff]
+[13.00.42cae29b.02.0a.00.00000000.ff.fc.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+[80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff] [80.00.ffffffff.00.00.00.00000000.00.00.ffffffff]
+
+[LINKSET ATTRIBUTE]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+[000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000] [000000.00.00000000000000000000000000000000]
+
+[SG ATTRIBUTES]
+[00.00.00.00000000] [01.01.00.21CAE29B] [01.00.00.23CAE29B] [01.01.00.23CAE29B]
+[00.00.00.00000000] [00.00.00.00000000] [01.00.00.24CAE29B] [01.01.00.23CAE29B]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+[00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000] [00.00.00.00000000]
+
+[NATIONAL NETWORK SP]
+[001fd4.01.80.00000000] [002b72.12.12.00000000] [0007d0.5a.5a.00000000] [000fa0.03.03.00000000]
+[00006f.6f.80.00000000] [000009.04.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [00001a.05.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000002.0e.80.00000000] [000000.80.80.00000000]
+[000003.20.20.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000014.14.14.00000000] [000015.15.15.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000037.37.37.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000030.30.30.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [00004d.4d.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+
+[NATIONAL NETWORK SPARE SP]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000007.07.80.00000000]
+[000005.08.80.00000000] [000008.09.80.00000000] [000004.0a.80.00000000] [00005d.06.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [00000a.0b.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+
+[INTERNATIONAL NETWORK SP]
+[003952.64.80.00000000] [003953.65.80.00000000] [0001f4.10.10.00000000] [00000a.0c.80.00000000]
+[000009.04.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+
+[INTERNATIONAL NETWORK SPARE SP]
+[000000.80.80.00000000] [000005.19.80.00000000] [000006.1a.80.00000000] [0001f4.20.20.00000000]
+[000100.1c.80.00000000] [000150.1e.80.00000000] [00000a.1b.80.00000000] [000110.21.80.00000000]
+[000078.23.80.00000000] [000001.40.40.00000000] [000020.00.00.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+[000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000] [000000.80.80.00000000]
+
+[LOCAL ACN]
+030303030202020202030302020303020303020303030303030303030303030302020202
+
+[INTERNATIONAL NETWORK ACN]
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+
+[INTERNATIONAL NETWORK SPARE ACN]
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+
+[NATIONAL NETWORK ACN]
+020303030202020202030302020202020303020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+
+[NATIONAL NETWORK SPARE ACN]
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+030303030202020202030302020202020202020303030303030303030303030302020202
+
diff --git a/omc/bin/conf/nrtrde_seq.conf b/omc/bin/conf/nrtrde_seq.conf
new file mode 100644
index 0000000..3762733
Binary files /dev/null and b/omc/bin/conf/nrtrde_seq.conf differ
diff --git a/omc/bin/conf/omc_db.conf b/omc/bin/conf/omc_db.conf
new file mode 100644
index 0000000..a2e9e1b
--- /dev/null
+++ b/omc/bin/conf/omc_db.conf
@@ -0,0 +1,50 @@
+#omc_db.conf
+#config file for database maintenance
+
+[backup]
+#List the database that need to be backuped
+#CDR_DB,CSTA_DB is not need to backup
+#Format:database
+
+[clean]
+#You can termly clean tables by defining condition according to
+#Format:database,table,time field,timeout,max records
+OMC_PUB,sysAlarmLog,alarmTime,7,10000
+OMC_PUB,sysOperLog,datetime,7,10000
+OMC_PUB,dbAlarm,alarmTime,7,5000
+PPS_DB,used_card_info,updated_date,1900,5000000
+BssOmcDb,OMCR_ALARMEVENT,EventTime,7,10000
+BssOmcDb,OMCR_BtsMeasurements,updateTime,7,10000
+BssOmcDb,OMCR_NETWORKEVENT,EventTime,7,10000
+[remove_log]
+#You can termly remove log files by defining condition according to
+#Format:path,keyword,timeout(unit:day)
+/usr/local/mysql,-bin,2
+/usr/local/omc/bin/dual/cdr_data_proc,dat,1
+/usr/local/omc/bin/dual/cdr_io_proc,dat,1
+/usr/local/apache/logs,access_log,7
+/usr/local/apache/htdocs/db_backup/cdrsending,csv,7
+/usr/local/apache/htdocs/db_backup/cdr,csv,7
+/usr/local/apache/htdocs/db_backup/cdrsent,csv,7
+/usr/local/apache/htdocs/db_backup/cstasending,csv,7
+/usr/local/apache/htdocs/db_backup/csta,csv,7
+/usr/local/apache/htdocs/db_backup/cstasent,csv,7
+/usr/local/apache/htdocs/db_backup/subsData,csv,7
+/usr/local/apache/htdocs/db_backup/alarmLog,csv,7
+/usr/local/apache/htdocs/db_backup/operLog,csv,7
+/usr/local/apache/htdocs/db_backup/paramConf,csv,7
+/usr/local/omc/log,gz,7
+/usr/local/omc/log,log,7
+/usr/local/omc/log,dualsrv,7
+/var/log,tmp,7
+/var/log,log,7
+/var/log,messages,7
+/var/log,secure,7
+/usr/local/apache/htdocs/db_backup/nrtrde/LOCAL_CSV,csv,7
+/usr/local/apache/htdocs/db_backup/nrtrde/ND_RECV_BAK,ND,7
+/usr/local/apache/htdocs/db_backup/nrtrde/ND_SEND_BAK,ND,7
+/usr/local/apache/htdocs/db_backup/nrtrde/NE_RECV_BAK,NE,7
+/usr/local/apache/htdocs/db_backup/nrtrde/NE_SEND_BAK,NE,7
+/usr/local/apache/htdocs/db_backup/nrtrde/NR_RECV_BAK,NR,7
+/usr/local/apache/htdocs/db_backup/nrtrde/NR_SEND_BAK,NR,7
+
diff --git a/omc/bin/conf/omcd.conf b/omc/bin/conf/omcd.conf
new file mode 100644
index 0000000..03a66ed
--- /dev/null
+++ b/omc/bin/conf/omcd.conf
@@ -0,0 +1,19 @@
+###
+#omcTypeNo:
+# 0:WXC2 OMC
+# 1:GMSC OMC
+# 2:MSC OMC
+# 3:HLR OMC
+# 4:AUC OMC
+# 5:SMS OMC
+# 6:PPS OMC
+# 7:BSS OMC
+###
+omcVersion=9.02.00
+
+omcTypeNo=0
+omcSysNo=0
+omcSubSysNo=0
+
+#omc run mode 0:single omc 1:dual omc
+omcRunMode=0
diff --git a/omc/bin/conf/omcd.conf_bak b/omc/bin/conf/omcd.conf_bak
new file mode 100644
index 0000000..106dfb0
--- /dev/null
+++ b/omc/bin/conf/omcd.conf_bak
@@ -0,0 +1,19 @@
+###
+#omcTypeNo:
+# 0:WXC2 OMC
+# 1:GMSC OMC
+# 2:MSC OMC
+# 3:HLR OMC
+# 4:AUC OMC
+# 5:SMS OMC
+# 6:PPS OMC
+# 7:BSS OMC
+###
+omcVersion=9.02.00
+
+omcTypeNo=0
+omcSysNo=0
+omcSubSysNo=0
+
+#omc run mode 0:single omc 1:dual omc
+omcRunMode=1
diff --git a/omc/bin/conf/omcd.conf_omc-0 b/omc/bin/conf/omcd.conf_omc-0
new file mode 100644
index 0000000..106dfb0
--- /dev/null
+++ b/omc/bin/conf/omcd.conf_omc-0
@@ -0,0 +1,19 @@
+###
+#omcTypeNo:
+# 0:WXC2 OMC
+# 1:GMSC OMC
+# 2:MSC OMC
+# 3:HLR OMC
+# 4:AUC OMC
+# 5:SMS OMC
+# 6:PPS OMC
+# 7:BSS OMC
+###
+omcVersion=9.02.00
+
+omcTypeNo=0
+omcSysNo=0
+omcSubSysNo=0
+
+#omc run mode 0:single omc 1:dual omc
+omcRunMode=1
diff --git a/omc/bin/conf/omcd.conf_omc-1 b/omc/bin/conf/omcd.conf_omc-1
new file mode 100644
index 0000000..0946f83
--- /dev/null
+++ b/omc/bin/conf/omcd.conf_omc-1
@@ -0,0 +1,19 @@
+###
+#omcTypeNo:
+# 0:WXC2 OMC
+# 1:GMSC OMC
+# 2:MSC OMC
+# 3:HLR OMC
+# 4:AUC OMC
+# 5:SMS OMC
+# 6:PPS OMC
+# 7:BSS OMC
+###
+omcVersion=9.02.00
+
+omcTypeNo=0
+omcSysNo=1
+omcSubSysNo=0
+
+#omc run mode 0:single omc 1:dual omc
+omcRunMode=1
diff --git a/omc/bin/conf/omcd.conf_single b/omc/bin/conf/omcd.conf_single
new file mode 100644
index 0000000..03a66ed
--- /dev/null
+++ b/omc/bin/conf/omcd.conf_single
@@ -0,0 +1,19 @@
+###
+#omcTypeNo:
+# 0:WXC2 OMC
+# 1:GMSC OMC
+# 2:MSC OMC
+# 3:HLR OMC
+# 4:AUC OMC
+# 5:SMS OMC
+# 6:PPS OMC
+# 7:BSS OMC
+###
+omcVersion=9.02.00
+
+omcTypeNo=0
+omcSysNo=0
+omcSubSysNo=0
+
+#omc run mode 0:single omc 1:dual omc
+omcRunMode=0
diff --git a/omc/bin/conf/omcd_serialnum.conf b/omc/bin/conf/omcd_serialnum.conf
new file mode 100644
index 0000000..b798c43
--- /dev/null
+++ b/omc/bin/conf/omcd_serialnum.conf
@@ -0,0 +1 @@
+omcSN=13750015
diff --git a/omc/bin/conf/omctrap_iplist.conf b/omc/bin/conf/omctrap_iplist.conf
new file mode 100644
index 0000000..fa24963
--- /dev/null
+++ b/omc/bin/conf/omctrap_iplist.conf
@@ -0,0 +1,14 @@
+# This file configure the IP list to where omc send the heartbeat-trap message
+# Max IP Object Count = 64
+# Example
+#192.168.4.75
+
+192.168.4.75
+192.168.7.46
+#192.168.7.155
+#192.168.7.46
+#192.168.4.17
+# END
+
+
+
diff --git a/omc/bin/conf/profile b/omc/bin/conf/profile
new file mode 100644
index 0000000..5571da1
--- /dev/null
+++ b/omc/bin/conf/profile
@@ -0,0 +1,48 @@
+# /etc/profile
+
+# System wide environment and startup programs, for login setup
+# Functions and aliases go in /etc/bashrc
+
+
+# Path manipulation
+if [ `id -u` = 0 ] && ! echo $PATH | /bin/grep -q "/sbin" ; then
+ PATH=/sbin:$PATH
+fi
+
+if [ `id -u` = 0 ] && ! echo $PATH | /bin/grep -q "/usr/sbin" ; then
+ PATH=/usr/sbin:$PATH
+fi
+
+if [ `id -u` = 0 ] && ! echo $PATH | /bin/grep -q "/usr/local/sbin" ; then
+ PATH=/usr/local/sbin:$PATH
+fi
+
+if ! echo $PATH | /bin/grep -q "/usr/X11R6/bin" ; then
+ PATH="$PATH:/usr/X11R6/bin"
+fi
+
+# No core files by default
+#ulimit -S -c 0 > /dev/null 2>&1
+ulimit -c unlimited
+
+USER=`id -un`
+LOGNAME=$USER
+MAIL="/var/spool/mail/$USER"
+
+HOSTNAME=`/bin/hostname`
+HISTSIZE=1000
+
+if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
+ INPUTRC=/etc/inputrc
+fi
+
+export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC
+
+for i in /etc/profile.d/*.sh ; do
+ if [ -r $i ]; then
+ . $i
+ fi
+done
+
+unset i
+PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin:/etc/rc.d/init.d"
diff --git a/omc/bin/conf/raid.conf b/omc/bin/conf/raid.conf
new file mode 100644
index 0000000..05506c2
--- /dev/null
+++ b/omc/bin/conf/raid.conf
@@ -0,0 +1,24 @@
+[Global]
+# Function Enable Flag, Value = [On/Off]
+EnableFlag=On
+
+# The Port of the server SNMP for the RAID service
+ServerSNMPPort=161
+
+# The System Type, Value = [MCSS/MCMS]
+SystemType=MCSS
+
+# This is a table to configure the remote server which need check RAID
+# ServerName, Value = [MSS/EMS/VMS/MCMS]
+# ServerType, Value = [Intel/Dell]
+# CheckFlag, Value = [On/Off]
+# ------------------------------------------
+# ServerName ServerType CheckFlag
+[MCSS Server]
+EMS,Intel,On
+MSS,Intel,On
+VMS,Intel,On
+RCM,Intel,On
+[MCMS Server]
+MCMS,Intel,On
+
diff --git a/omc/bin/conf/rsyncd.conf b/omc/bin/conf/rsyncd.conf
new file mode 100644
index 0000000..283a113
--- /dev/null
+++ b/omc/bin/conf/rsyncd.conf
@@ -0,0 +1,15 @@
+uid=mysql
+gid=mysql
+use chroot=no
+max connections=4
+pid file=/var/run/rsyncd.pid
+lock file=/var/run/rsync.lock
+log file=/var/log/rsyncd.log
+
+[data]
+path=/usr/local/mysql/data/
+list=true
+
+[conf]
+path=/usr/local/omc/bin/conf/
+list=true
diff --git a/omc/bin/conf/sccp.conf b/omc/bin/conf/sccp.conf
new file mode 100644
index 0000000..382ec7a
--- /dev/null
+++ b/omc/bin/conf/sccp.conf
@@ -0,0 +1,1058 @@
+#SCCP Config file (R9V1_05)
+
+[Local Node]
+#ssn NetID msisdn ip0 ip1
+4 2 57888123001 155.226.202.34 172.18.129.1
+6 1 57888123002 155.226.202.35 -
+7 1 57888123003 155.226.202.35 -
+8 1 57888123004 155.226.202.35 -
+9 1 57888123005 155.226.202.35 -
+10 2 57888123006 155.226.202.35 172.18.99.1
+11 2 57888123007 155.226.202.35 172.18.99.1
+19 2 57888123008 155.226.202.35 172.18.99.1
+20 2 57888123009 155.226.202.35 172.18.99.1
+21 2 57888123010 155.226.202.35 -
+22 1 57888123011 155.226.202.35 -
+23 1 57888123012 155.226.202.35 -
+32 2 57888123015 155.226.202.35 172.18.99.1
+33 2 57888123016 155.226.202.35 172.18.99.1
+146 2 57888123017 155.226.202.35 172.18.99.1
+147 2 57888123018 155.226.202.35 172.18.99.1
+153 2 57888123019 155.226.202.35 172.18.99.1
+254 1 57888123020 155.226.202.35 172.18.99.1
+[GTT_Table]
+#No EN NP TT StartDigits EndDigits NI SPC SSN RI AI S E N Rep
+0 1 6 - 570028000000000 570028000000100 1 000200 6 1 7
+1 1 1 - 57888123007 57888123007 1 000200 11 1 7
+2 0 - - - - 0 000000 0 0 0
+3 1 6 - 570029000000000 570029000000100 1 000200 6 0 7 1 15 1 57888123002
+4 1 1 - 578885 578885 1 000200 6 1 7
+5 0 - - - - 0 000000 0 0 0
+6 0 - - - - 0 000000 0 0 0
+7 0 - - - - 0 000000 0 0 0
+8 0 - - - - 0 000000 0 0 0
+9 0 - - - - 0 000000 0 0 0
+10 0 - - - - 0 000000 0 0 0
+11 0 - - - - 0 000000 0 0 0
+12 0 - - - - 0 000000 0 0 0
+13 0 - - - - 0 000000 0 0 0
+14 0 - - - - 0 000000 0 0 0
+15 0 - - - - 0 000000 0 0 0
+16 0 - - - - 0 000000 0 0 0
+17 0 - - - - 0 000000 0 0 0
+18 0 - - - - 0 000000 0 0 0
+19 0 - - - - 0 000000 0 0 0
+20 0 - - - - 0 000000 0 0 0
+21 0 - - - - 0 000000 0 0 0
+22 0 - - - - 0 000000 0 0 0
+23 0 - - - - 0 000000 0 0 0
+24 0 - - - - 0 000000 0 0 0
+25 0 - - - - 0 000000 0 0 0
+26 0 - - - - 0 000000 0 0 0
+27 0 - - - - 0 000000 0 0 0
+28 0 - - - - 0 000000 0 0 0
+29 0 - - - - 0 000000 0 0 0
+30 0 - - - - 0 000000 0 0 0
+31 0 - - - - 0 000000 0 0 0
+32 0 - - - - 0 000000 0 0 0
+33 0 - - - - 0 000000 0 0 0
+34 0 - - - - 0 000000 0 0 0
+35 0 - - - - 0 000000 0 0 0
+36 0 - - - - 0 000000 0 0 0
+37 0 - - - - 0 000000 0 0 0
+38 0 - - - - 0 000000 0 0 0
+39 0 - - - - 0 000000 0 0 0
+40 0 - - - - 0 000000 0 0 0
+41 0 - - - - 0 000000 0 0 0
+42 0 - - - - 0 000000 0 0 0
+43 0 - - - - 0 000000 0 0 0
+44 0 - - - - 0 000000 0 0 0
+45 0 - - - - 0 000000 0 0 0
+46 0 - - - - 0 000000 0 0 0
+47 0 - - - - 0 000000 0 0 0
+48 0 - - - - 0 000000 0 0 0
+49 0 - - - - 0 000000 0 0 0
+50 0 - - - - 0 000000 0 0 0
+51 0 - - - - 0 000000 0 0 0
+52 0 - - - - 0 000000 0 0 0
+53 0 - - - - 0 000000 0 0 0
+54 0 - - - - 0 000000 0 0 0
+55 0 - - - - 0 000000 0 0 0
+56 0 - - - - 0 000000 0 0 0
+57 0 - - - - 0 000000 0 0 0
+58 0 - - - - 0 000000 0 0 0
+59 0 - - - - 0 000000 0 0 0
+60 0 - - - - 0 000000 0 0 0
+61 0 - - - - 0 000000 0 0 0
+62 0 - - - - 0 000000 0 0 0
+63 0 - - - - 0 000000 0 0 0
+64 0 - - - - 0 000000 0 0 0
+65 0 - - - - 0 000000 0 0 0
+66 0 - - - - 0 000000 0 0 0
+67 0 - - - - 0 000000 0 0 0
+68 0 - - - - 0 000000 0 0 0
+69 0 - - - - 0 000000 0 0 0
+70 0 - - - - 0 000000 0 0 0
+71 0 - - - - 0 000000 0 0 0
+72 0 - - - - 0 000000 0 0 0
+73 0 - - - - 0 000000 0 0 0
+74 0 - - - - 0 000000 0 0 0
+75 0 - - - - 0 000000 0 0 0
+76 0 - - - - 0 000000 0 0 0
+77 0 - - - - 0 000000 0 0 0
+78 0 - - - - 0 000000 0 0 0
+79 0 - - - - 0 000000 0 0 0
+80 0 - - - - 0 000000 0 0 0
+81 0 - - - - 0 000000 0 0 0
+82 0 - - - - 0 000000 0 0 0
+83 0 - - - - 0 000000 0 0 0
+84 0 - - - - 0 000000 0 0 0
+85 0 - - - - 0 000000 0 0 0
+86 0 - - - - 0 000000 0 0 0
+87 0 - - - - 0 000000 0 0 0
+88 0 - - - - 0 000000 0 0 0
+89 0 - - - - 0 000000 0 0 0
+90 0 - - - - 0 000000 0 0 0
+91 0 - - - - 0 000000 0 0 0
+92 0 - - - - 0 000000 0 0 0
+93 0 - - - - 0 000000 0 0 0
+94 0 - - - - 0 000000 0 0 0
+95 0 - - - - 0 000000 0 0 0
+96 0 - - - - 0 000000 0 0 0
+97 0 - - - - 0 000000 0 0 0
+98 0 - - - - 0 000000 0 0 0
+99 0 - - - - 0 000000 0 0 0
+100 0 - - - - 0 000000 0 0 0
+101 0 - - - - 0 000000 0 0 0
+102 0 - - - - 0 000000 0 0 0
+103 0 - - - - 0 000000 0 0 0
+104 0 - - - - 0 000000 0 0 0
+105 0 - - - - 0 000000 0 0 0
+106 0 - - - - 0 000000 0 0 0
+107 0 - - - - 0 000000 0 0 0
+108 0 - - - - 0 000000 0 0 0
+109 0 - - - - 0 000000 0 0 0
+110 0 - - - - 0 000000 0 0 0
+111 0 - - - - 0 000000 0 0 0
+112 0 - - - - 0 000000 0 0 0
+113 0 - - - - 0 000000 0 0 0
+114 0 - - - - 0 000000 0 0 0
+115 0 - - - - 0 000000 0 0 0
+116 0 - - - - 0 000000 0 0 0
+117 0 - - - - 0 000000 0 0 0
+118 0 - - - - 0 000000 0 0 0
+119 0 - - - - 0 000000 0 0 0
+120 0 - - - - 0 000000 0 0 0
+121 0 - - - - 0 000000 0 0 0
+122 0 - - - - 0 000000 0 0 0
+123 0 - - - - 0 000000 0 0 0
+124 0 - - - - 0 000000 0 0 0
+125 0 - - - - 0 000000 0 0 0
+126 0 - - - - 0 000000 0 0 0
+127 0 - - - - 0 000000 0 0 0
+128 0 - - - - 0 000000 0 0 0
+129 0 - - - - 0 000000 0 0 0
+130 0 - - - - 0 000000 0 0 0
+131 0 - - - - 0 000000 0 0 0
+132 0 - - - - 0 000000 0 0 0
+133 0 - - - - 0 000000 0 0 0
+134 0 - - - - 0 000000 0 0 0
+135 0 - - - - 0 000000 0 0 0
+136 0 - - - - 0 000000 0 0 0
+137 0 - - - - 0 000000 0 0 0
+138 0 - - - - 0 000000 0 0 0
+139 0 - - - - 0 000000 0 0 0
+140 0 - - - - 0 000000 0 0 0
+141 0 - - - - 0 000000 0 0 0
+142 0 - - - - 0 000000 0 0 0
+143 0 - - - - 0 000000 0 0 0
+144 0 - - - - 0 000000 0 0 0
+145 0 - - - - 0 000000 0 0 0
+146 0 - - - - 0 000000 0 0 0
+147 0 - - - - 0 000000 0 0 0
+148 0 - - - - 0 000000 0 0 0
+149 0 - - - - 0 000000 0 0 0
+150 0 - - - - 0 000000 0 0 0
+151 0 - - - - 0 000000 0 0 0
+152 0 - - - - 0 000000 0 0 0
+153 0 - - - - 0 000000 0 0 0
+154 0 - - - - 0 000000 0 0 0
+155 0 - - - - 0 000000 0 0 0
+156 0 - - - - 0 000000 0 0 0
+157 0 - - - - 0 000000 0 0 0
+158 0 - - - - 0 000000 0 0 0
+159 0 - - - - 0 000000 0 0 0
+160 0 - - - - 0 000000 0 0 0
+161 0 - - - - 0 000000 0 0 0
+162 0 - - - - 0 000000 0 0 0
+163 0 - - - - 0 000000 0 0 0
+164 0 - - - - 0 000000 0 0 0
+165 0 - - - - 0 000000 0 0 0
+166 0 - - - - 0 000000 0 0 0
+167 0 - - - - 0 000000 0 0 0
+168 0 - - - - 0 000000 0 0 0
+169 0 - - - - 0 000000 0 0 0
+170 0 - - - - 0 000000 0 0 0
+171 0 - - - - 0 000000 0 0 0
+172 0 - - - - 0 000000 0 0 0
+173 0 - - - - 0 000000 0 0 0
+174 0 - - - - 0 000000 0 0 0
+175 0 - - - - 0 000000 0 0 0
+176 0 - - - - 0 000000 0 0 0
+177 0 - - - - 0 000000 0 0 0
+178 0 - - - - 0 000000 0 0 0
+179 0 - - - - 0 000000 0 0 0
+180 0 - - - - 0 000000 0 0 0
+181 0 - - - - 0 000000 0 0 0
+182 0 - - - - 0 000000 0 0 0
+183 0 - - - - 0 000000 0 0 0
+184 0 - - - - 0 000000 0 0 0
+185 0 - - - - 0 000000 0 0 0
+186 0 - - - - 0 000000 0 0 0
+187 0 - - - - 0 000000 0 0 0
+188 0 - - - - 0 000000 0 0 0
+189 0 - - - - 0 000000 0 0 0
+190 0 - - - - 0 000000 0 0 0
+191 0 - - - - 0 000000 0 0 0
+192 0 - - - - 0 000000 0 0 0
+193 0 - - - - 0 000000 0 0 0
+194 0 - - - - 0 000000 0 0 0
+195 0 - - - - 0 000000 0 0 0
+196 0 - - - - 0 000000 0 0 0
+197 0 - - - - 0 000000 0 0 0
+198 0 - - - - 0 000000 0 0 0
+199 0 - - - - 0 000000 0 0 0
+200 0 - - - - 0 000000 0 0 0
+201 0 - - - - 0 000000 0 0 0
+202 0 - - - - 0 000000 0 0 0
+203 0 - - - - 0 000000 0 0 0
+204 0 - - - - 0 000000 0 0 0
+205 0 - - - - 0 000000 0 0 0
+206 0 - - - - 0 000000 0 0 0
+207 0 - - - - 0 000000 0 0 0
+208 0 - - - - 0 000000 0 0 0
+209 0 - - - - 0 000000 0 0 0
+210 0 - - - - 0 000000 0 0 0
+211 0 - - - - 0 000000 0 0 0
+212 0 - - - - 0 000000 0 0 0
+213 0 - - - - 0 000000 0 0 0
+214 0 - - - - 0 000000 0 0 0
+215 0 - - - - 0 000000 0 0 0
+216 0 - - - - 0 000000 0 0 0
+217 0 - - - - 0 000000 0 0 0
+218 0 - - - - 0 000000 0 0 0
+219 0 - - - - 0 000000 0 0 0
+220 0 - - - - 0 000000 0 0 0
+221 0 - - - - 0 000000 0 0 0
+222 0 - - - - 0 000000 0 0 0
+223 0 - - - - 0 000000 0 0 0
+224 0 - - - - 0 000000 0 0 0
+225 0 - - - - 0 000000 0 0 0
+226 0 - - - - 0 000000 0 0 0
+227 0 - - - - 0 000000 0 0 0
+228 0 - - - - 0 000000 0 0 0
+229 0 - - - - 0 000000 0 0 0
+230 0 - - - - 0 000000 0 0 0
+231 0 - - - - 0 000000 0 0 0
+232 0 - - - - 0 000000 0 0 0
+233 0 - - - - 0 000000 0 0 0
+234 0 - - - - 0 000000 0 0 0
+235 0 - - - - 0 000000 0 0 0
+236 0 - - - - 0 000000 0 0 0
+237 0 - - - - 0 000000 0 0 0
+238 0 - - - - 0 000000 0 0 0
+239 0 - - - - 0 000000 0 0 0
+240 0 - - - - 0 000000 0 0 0
+241 0 - - - - 0 000000 0 0 0
+242 0 - - - - 0 000000 0 0 0
+243 0 - - - - 0 000000 0 0 0
+244 0 - - - - 0 000000 0 0 0
+245 0 - - - - 0 000000 0 0 0
+246 0 - - - - 0 000000 0 0 0
+247 0 - - - - 0 000000 0 0 0
+248 0 - - - - 0 000000 0 0 0
+249 0 - - - - 0 000000 0 0 0
+250 0 - - - - 0 000000 0 0 0
+251 0 - - - - 0 000000 0 0 0
+252 0 - - - - 0 000000 0 0 0
+253 0 - - - - 0 000000 0 0 0
+254 0 - - - - 0 000000 0 0 0
+255 0 - - - - 0 000000 0 0 0
+256 0 - - - - 0 000000 0 0 0
+257 0 - - - - 0 000000 0 0 0
+258 0 - - - - 0 000000 0 0 0
+259 0 - - - - 0 000000 0 0 0
+260 0 - - - - 0 000000 0 0 0
+261 0 - - - - 0 000000 0 0 0
+262 0 - - - - 0 000000 0 0 0
+263 0 - - - - 0 000000 0 0 0
+264 0 - - - - 0 000000 0 0 0
+265 0 - - - - 0 000000 0 0 0
+266 0 - - - - 0 000000 0 0 0
+267 0 - - - - 0 000000 0 0 0
+268 0 - - - - 0 000000 0 0 0
+269 0 - - - - 0 000000 0 0 0
+270 0 - - - - 0 000000 0 0 0
+271 0 - - - - 0 000000 0 0 0
+272 0 - - - - 0 000000 0 0 0
+273 0 - - - - 0 000000 0 0 0
+274 0 - - - - 0 000000 0 0 0
+275 0 - - - - 0 000000 0 0 0
+276 0 - - - - 0 000000 0 0 0
+277 0 - - - - 0 000000 0 0 0
+278 0 - - - - 0 000000 0 0 0
+279 0 - - - - 0 000000 0 0 0
+280 0 - - - - 0 000000 0 0 0
+281 0 - - - - 0 000000 0 0 0
+282 0 - - - - 0 000000 0 0 0
+283 0 - - - - 0 000000 0 0 0
+284 0 - - - - 0 000000 0 0 0
+285 0 - - - - 0 000000 0 0 0
+286 0 - - - - 0 000000 0 0 0
+287 0 - - - - 0 000000 0 0 0
+288 0 - - - - 0 000000 0 0 0
+289 0 - - - - 0 000000 0 0 0
+290 0 - - - - 0 000000 0 0 0
+291 0 - - - - 0 000000 0 0 0
+292 0 - - - - 0 000000 0 0 0
+293 0 - - - - 0 000000 0 0 0
+294 0 - - - - 0 000000 0 0 0
+295 0 - - - - 0 000000 0 0 0
+296 0 - - - - 0 000000 0 0 0
+297 0 - - - - 0 000000 0 0 0
+298 0 - - - - 0 000000 0 0 0
+299 0 - - - - 0 000000 0 0 0
+300 0 - - - - 0 000000 0 0 0
+301 0 - - - - 0 000000 0 0 0
+302 0 - - - - 0 000000 0 0 0
+303 0 - - - - 0 000000 0 0 0
+304 0 - - - - 0 000000 0 0 0
+305 0 - - - - 0 000000 0 0 0
+306 0 - - - - 0 000000 0 0 0
+307 0 - - - - 0 000000 0 0 0
+308 0 - - - - 0 000000 0 0 0
+309 0 - - - - 0 000000 0 0 0
+310 0 - - - - 0 000000 0 0 0
+311 0 - - - - 0 000000 0 0 0
+312 0 - - - - 0 000000 0 0 0
+313 0 - - - - 0 000000 0 0 0
+314 0 - - - - 0 000000 0 0 0
+315 0 - - - - 0 000000 0 0 0
+316 0 - - - - 0 000000 0 0 0
+317 0 - - - - 0 000000 0 0 0
+318 0 - - - - 0 000000 0 0 0
+319 0 - - - - 0 000000 0 0 0
+320 0 - - - - 0 000000 0 0 0
+321 0 - - - - 0 000000 0 0 0
+322 0 - - - - 0 000000 0 0 0
+323 0 - - - - 0 000000 0 0 0
+324 0 - - - - 0 000000 0 0 0
+325 0 - - - - 0 000000 0 0 0
+326 0 - - - - 0 000000 0 0 0
+327 0 - - - - 0 000000 0 0 0
+328 0 - - - - 0 000000 0 0 0
+329 0 - - - - 0 000000 0 0 0
+330 0 - - - - 0 000000 0 0 0
+331 0 - - - - 0 000000 0 0 0
+332 0 - - - - 0 000000 0 0 0
+333 0 - - - - 0 000000 0 0 0
+334 0 - - - - 0 000000 0 0 0
+335 0 - - - - 0 000000 0 0 0
+336 0 - - - - 0 000000 0 0 0
+337 0 - - - - 0 000000 0 0 0
+338 0 - - - - 0 000000 0 0 0
+339 0 - - - - 0 000000 0 0 0
+340 0 - - - - 0 000000 0 0 0
+341 0 - - - - 0 000000 0 0 0
+342 0 - - - - 0 000000 0 0 0
+343 0 - - - - 0 000000 0 0 0
+344 0 - - - - 0 000000 0 0 0
+345 0 - - - - 0 000000 0 0 0
+346 0 - - - - 0 000000 0 0 0
+347 0 - - - - 0 000000 0 0 0
+348 0 - - - - 0 000000 0 0 0
+349 0 - - - - 0 000000 0 0 0
+350 0 - - - - 0 000000 0 0 0
+351 0 - - - - 0 000000 0 0 0
+352 0 - - - - 0 000000 0 0 0
+353 0 - - - - 0 000000 0 0 0
+354 0 - - - - 0 000000 0 0 0
+355 0 - - - - 0 000000 0 0 0
+356 0 - - - - 0 000000 0 0 0
+357 0 - - - - 0 000000 0 0 0
+358 0 - - - - 0 000000 0 0 0
+359 0 - - - - 0 000000 0 0 0
+360 0 - - - - 0 000000 0 0 0
+361 0 - - - - 0 000000 0 0 0
+362 0 - - - - 0 000000 0 0 0
+363 0 - - - - 0 000000 0 0 0
+364 0 - - - - 0 000000 0 0 0
+365 0 - - - - 0 000000 0 0 0
+366 0 - - - - 0 000000 0 0 0
+367 0 - - - - 0 000000 0 0 0
+368 0 - - - - 0 000000 0 0 0
+369 0 - - - - 0 000000 0 0 0
+370 0 - - - - 0 000000 0 0 0
+371 0 - - - - 0 000000 0 0 0
+372 0 - - - - 0 000000 0 0 0
+373 0 - - - - 0 000000 0 0 0
+374 0 - - - - 0 000000 0 0 0
+375 0 - - - - 0 000000 0 0 0
+376 0 - - - - 0 000000 0 0 0
+377 0 - - - - 0 000000 0 0 0
+378 0 - - - - 0 000000 0 0 0
+379 0 - - - - 0 000000 0 0 0
+380 0 - - - - 0 000000 0 0 0
+381 0 - - - - 0 000000 0 0 0
+382 0 - - - - 0 000000 0 0 0
+383 0 - - - - 0 000000 0 0 0
+384 0 - - - - 0 000000 0 0 0
+385 0 - - - - 0 000000 0 0 0
+386 0 - - - - 0 000000 0 0 0
+387 0 - - - - 0 000000 0 0 0
+388 0 - - - - 0 000000 0 0 0
+389 0 - - - - 0 000000 0 0 0
+390 0 - - - - 0 000000 0 0 0
+391 0 - - - - 0 000000 0 0 0
+392 0 - - - - 0 000000 0 0 0
+393 0 - - - - 0 000000 0 0 0
+394 0 - - - - 0 000000 0 0 0
+395 0 - - - - 0 000000 0 0 0
+396 0 - - - - 0 000000 0 0 0
+397 0 - - - - 0 000000 0 0 0
+398 0 - - - - 0 000000 0 0 0
+399 0 - - - - 0 000000 0 0 0
+400 0 - - - - 0 000000 0 0 0
+401 0 - - - - 0 000000 0 0 0
+402 0 - - - - 0 000000 0 0 0
+403 0 - - - - 0 000000 0 0 0
+404 0 - - - - 0 000000 0 0 0
+405 0 - - - - 0 000000 0 0 0
+406 0 - - - - 0 000000 0 0 0
+407 0 - - - - 0 000000 0 0 0
+408 0 - - - - 0 000000 0 0 0
+409 0 - - - - 0 000000 0 0 0
+410 0 - - - - 0 000000 0 0 0
+411 0 - - - - 0 000000 0 0 0
+412 0 - - - - 0 000000 0 0 0
+413 0 - - - - 0 000000 0 0 0
+414 0 - - - - 0 000000 0 0 0
+415 0 - - - - 0 000000 0 0 0
+416 0 - - - - 0 000000 0 0 0
+417 0 - - - - 0 000000 0 0 0
+418 0 - - - - 0 000000 0 0 0
+419 0 - - - - 0 000000 0 0 0
+420 0 - - - - 0 000000 0 0 0
+421 0 - - - - 0 000000 0 0 0
+422 0 - - - - 0 000000 0 0 0
+423 0 - - - - 0 000000 0 0 0
+424 0 - - - - 0 000000 0 0 0
+425 0 - - - - 0 000000 0 0 0
+426 0 - - - - 0 000000 0 0 0
+427 0 - - - - 0 000000 0 0 0
+428 0 - - - - 0 000000 0 0 0
+429 0 - - - - 0 000000 0 0 0
+430 0 - - - - 0 000000 0 0 0
+431 0 - - - - 0 000000 0 0 0
+432 0 - - - - 0 000000 0 0 0
+433 0 - - - - 0 000000 0 0 0
+434 0 - - - - 0 000000 0 0 0
+435 0 - - - - 0 000000 0 0 0
+436 0 - - - - 0 000000 0 0 0
+437 0 - - - - 0 000000 0 0 0
+438 0 - - - - 0 000000 0 0 0
+439 0 - - - - 0 000000 0 0 0
+440 0 - - - - 0 000000 0 0 0
+441 0 - - - - 0 000000 0 0 0
+442 0 - - - - 0 000000 0 0 0
+443 0 - - - - 0 000000 0 0 0
+444 0 - - - - 0 000000 0 0 0
+445 0 - - - - 0 000000 0 0 0
+446 0 - - - - 0 000000 0 0 0
+447 0 - - - - 0 000000 0 0 0
+448 0 - - - - 0 000000 0 0 0
+449 0 - - - - 0 000000 0 0 0
+450 0 - - - - 0 000000 0 0 0
+451 0 - - - - 0 000000 0 0 0
+452 0 - - - - 0 000000 0 0 0
+453 0 - - - - 0 000000 0 0 0
+454 0 - - - - 0 000000 0 0 0
+455 0 - - - - 0 000000 0 0 0
+456 0 - - - - 0 000000 0 0 0
+457 0 - - - - 0 000000 0 0 0
+458 0 - - - - 0 000000 0 0 0
+459 0 - - - - 0 000000 0 0 0
+460 0 - - - - 0 000000 0 0 0
+461 0 - - - - 0 000000 0 0 0
+462 0 - - - - 0 000000 0 0 0
+463 0 - - - - 0 000000 0 0 0
+464 0 - - - - 0 000000 0 0 0
+465 0 - - - - 0 000000 0 0 0
+466 0 - - - - 0 000000 0 0 0
+467 0 - - - - 0 000000 0 0 0
+468 0 - - - - 0 000000 0 0 0
+469 0 - - - - 0 000000 0 0 0
+470 0 - - - - 0 000000 0 0 0
+471 0 - - - - 0 000000 0 0 0
+472 0 - - - - 0 000000 0 0 0
+473 0 - - - - 0 000000 0 0 0
+474 0 - - - - 0 000000 0 0 0
+475 0 - - - - 0 000000 0 0 0
+476 0 - - - - 0 000000 0 0 0
+477 0 - - - - 0 000000 0 0 0
+478 0 - - - - 0 000000 0 0 0
+479 0 - - - - 0 000000 0 0 0
+480 0 - - - - 0 000000 0 0 0
+481 0 - - - - 0 000000 0 0 0
+482 0 - - - - 0 000000 0 0 0
+483 0 - - - - 0 000000 0 0 0
+484 0 - - - - 0 000000 0 0 0
+485 0 - - - - 0 000000 0 0 0
+486 0 - - - - 0 000000 0 0 0
+487 0 - - - - 0 000000 0 0 0
+488 0 - - - - 0 000000 0 0 0
+489 0 - - - - 0 000000 0 0 0
+490 0 - - - - 0 000000 0 0 0
+491 0 - - - - 0 000000 0 0 0
+492 0 - - - - 0 000000 0 0 0
+493 0 - - - - 0 000000 0 0 0
+494 0 - - - - 0 000000 0 0 0
+495 0 - - - - 0 000000 0 0 0
+496 0 - - - - 0 000000 0 0 0
+497 0 - - - - 0 000000 0 0 0
+498 0 - - - - 0 000000 0 0 0
+499 0 - - - - 0 000000 0 0 0
+500 0 - - - - 0 000000 0 0 0
+501 0 - - - - 0 000000 0 0 0
+502 0 - - - - 0 000000 0 0 0
+503 0 - - - - 0 000000 0 0 0
+504 0 - - - - 0 000000 0 0 0
+505 0 - - - - 0 000000 0 0 0
+506 0 - - - - 0 000000 0 0 0
+507 0 - - - - 0 000000 0 0 0
+508 0 - - - - 0 000000 0 0 0
+509 0 - - - - 0 000000 0 0 0
+510 0 - - - - 0 000000 0 0 0
+511 0 - - - - 0 000000 0 0 0
+512 0 - - - - 0 000000 0 0 0
+513 0 - - - - 0 000000 0 0 0
+514 0 - - - - 0 000000 0 0 0
+515 0 - - - - 0 000000 0 0 0
+516 0 - - - - 0 000000 0 0 0
+517 0 - - - - 0 000000 0 0 0
+518 0 - - - - 0 000000 0 0 0
+519 0 - - - - 0 000000 0 0 0
+520 0 - - - - 0 000000 0 0 0
+521 0 - - - - 0 000000 0 0 0
+522 0 - - - - 0 000000 0 0 0
+523 0 - - - - 0 000000 0 0 0
+524 0 - - - - 0 000000 0 0 0
+525 0 - - - - 0 000000 0 0 0
+526 0 - - - - 0 000000 0 0 0
+527 0 - - - - 0 000000 0 0 0
+528 0 - - - - 0 000000 0 0 0
+529 0 - - - - 0 000000 0 0 0
+530 0 - - - - 0 000000 0 0 0
+531 0 - - - - 0 000000 0 0 0
+532 0 - - - - 0 000000 0 0 0
+533 0 - - - - 0 000000 0 0 0
+534 0 - - - - 0 000000 0 0 0
+535 0 - - - - 0 000000 0 0 0
+536 0 - - - - 0 000000 0 0 0
+537 0 - - - - 0 000000 0 0 0
+538 0 - - - - 0 000000 0 0 0
+539 0 - - - - 0 000000 0 0 0
+540 0 - - - - 0 000000 0 0 0
+541 0 - - - - 0 000000 0 0 0
+542 0 - - - - 0 000000 0 0 0
+543 0 - - - - 0 000000 0 0 0
+544 0 - - - - 0 000000 0 0 0
+545 0 - - - - 0 000000 0 0 0
+546 0 - - - - 0 000000 0 0 0
+547 0 - - - - 0 000000 0 0 0
+548 0 - - - - 0 000000 0 0 0
+549 0 - - - - 0 000000 0 0 0
+550 0 - - - - 0 000000 0 0 0
+551 0 - - - - 0 000000 0 0 0
+552 0 - - - - 0 000000 0 0 0
+553 0 - - - - 0 000000 0 0 0
+554 0 - - - - 0 000000 0 0 0
+555 0 - - - - 0 000000 0 0 0
+556 0 - - - - 0 000000 0 0 0
+557 0 - - - - 0 000000 0 0 0
+558 0 - - - - 0 000000 0 0 0
+559 0 - - - - 0 000000 0 0 0
+560 0 - - - - 0 000000 0 0 0
+561 0 - - - - 0 000000 0 0 0
+562 0 - - - - 0 000000 0 0 0
+563 0 - - - - 0 000000 0 0 0
+564 0 - - - - 0 000000 0 0 0
+565 0 - - - - 0 000000 0 0 0
+566 0 - - - - 0 000000 0 0 0
+567 0 - - - - 0 000000 0 0 0
+568 0 - - - - 0 000000 0 0 0
+569 0 - - - - 0 000000 0 0 0
+570 0 - - - - 0 000000 0 0 0
+571 0 - - - - 0 000000 0 0 0
+572 0 - - - - 0 000000 0 0 0
+573 0 - - - - 0 000000 0 0 0
+574 0 - - - - 0 000000 0 0 0
+575 0 - - - - 0 000000 0 0 0
+576 0 - - - - 0 000000 0 0 0
+577 0 - - - - 0 000000 0 0 0
+578 0 - - - - 0 000000 0 0 0
+579 0 - - - - 0 000000 0 0 0
+580 0 - - - - 0 000000 0 0 0
+581 0 - - - - 0 000000 0 0 0
+582 0 - - - - 0 000000 0 0 0
+583 0 - - - - 0 000000 0 0 0
+584 0 - - - - 0 000000 0 0 0
+585 0 - - - - 0 000000 0 0 0
+586 0 - - - - 0 000000 0 0 0
+587 0 - - - - 0 000000 0 0 0
+588 0 - - - - 0 000000 0 0 0
+589 0 - - - - 0 000000 0 0 0
+590 0 - - - - 0 000000 0 0 0
+591 0 - - - - 0 000000 0 0 0
+592 0 - - - - 0 000000 0 0 0
+593 0 - - - - 0 000000 0 0 0
+594 0 - - - - 0 000000 0 0 0
+595 0 - - - - 0 000000 0 0 0
+596 0 - - - - 0 000000 0 0 0
+597 0 - - - - 0 000000 0 0 0
+598 0 - - - - 0 000000 0 0 0
+599 0 - - - - 0 000000 0 0 0
+600 0 - - - - 0 000000 0 0 0
+601 0 - - - - 0 000000 0 0 0
+602 0 - - - - 0 000000 0 0 0
+603 0 - - - - 0 000000 0 0 0
+604 0 - - - - 0 000000 0 0 0
+605 0 - - - - 0 000000 0 0 0
+606 0 - - - - 0 000000 0 0 0
+607 0 - - - - 0 000000 0 0 0
+608 0 - - - - 0 000000 0 0 0
+609 0 - - - - 0 000000 0 0 0
+610 0 - - - - 0 000000 0 0 0
+611 0 - - - - 0 000000 0 0 0
+612 0 - - - - 0 000000 0 0 0
+613 0 - - - - 0 000000 0 0 0
+614 0 - - - - 0 000000 0 0 0
+615 0 - - - - 0 000000 0 0 0
+616 0 - - - - 0 000000 0 0 0
+617 0 - - - - 0 000000 0 0 0
+618 0 - - - - 0 000000 0 0 0
+619 0 - - - - 0 000000 0 0 0
+620 0 - - - - 0 000000 0 0 0
+621 0 - - - - 0 000000 0 0 0
+622 0 - - - - 0 000000 0 0 0
+623 0 - - - - 0 000000 0 0 0
+624 0 - - - - 0 000000 0 0 0
+625 0 - - - - 0 000000 0 0 0
+626 0 - - - - 0 000000 0 0 0
+627 0 - - - - 0 000000 0 0 0
+628 0 - - - - 0 000000 0 0 0
+629 0 - - - - 0 000000 0 0 0
+630 0 - - - - 0 000000 0 0 0
+631 0 - - - - 0 000000 0 0 0
+632 0 - - - - 0 000000 0 0 0
+633 0 - - - - 0 000000 0 0 0
+634 0 - - - - 0 000000 0 0 0
+635 0 - - - - 0 000000 0 0 0
+636 0 - - - - 0 000000 0 0 0
+637 0 - - - - 0 000000 0 0 0
+638 0 - - - - 0 000000 0 0 0
+639 0 - - - - 0 000000 0 0 0
+640 0 - - - - 0 000000 0 0 0
+641 0 - - - - 0 000000 0 0 0
+642 0 - - - - 0 000000 0 0 0
+643 0 - - - - 0 000000 0 0 0
+644 0 - - - - 0 000000 0 0 0
+645 0 - - - - 0 000000 0 0 0
+646 0 - - - - 0 000000 0 0 0
+647 0 - - - - 0 000000 0 0 0
+648 0 - - - - 0 000000 0 0 0
+649 0 - - - - 0 000000 0 0 0
+650 0 - - - - 0 000000 0 0 0
+651 0 - - - - 0 000000 0 0 0
+652 0 - - - - 0 000000 0 0 0
+653 0 - - - - 0 000000 0 0 0
+654 0 - - - - 0 000000 0 0 0
+655 0 - - - - 0 000000 0 0 0
+656 0 - - - - 0 000000 0 0 0
+657 0 - - - - 0 000000 0 0 0
+658 0 - - - - 0 000000 0 0 0
+659 0 - - - - 0 000000 0 0 0
+660 0 - - - - 0 000000 0 0 0
+661 0 - - - - 0 000000 0 0 0
+662 0 - - - - 0 000000 0 0 0
+663 0 - - - - 0 000000 0 0 0
+664 0 - - - - 0 000000 0 0 0
+665 0 - - - - 0 000000 0 0 0
+666 0 - - - - 0 000000 0 0 0
+667 0 - - - - 0 000000 0 0 0
+668 0 - - - - 0 000000 0 0 0
+669 0 - - - - 0 000000 0 0 0
+670 0 - - - - 0 000000 0 0 0
+671 0 - - - - 0 000000 0 0 0
+672 0 - - - - 0 000000 0 0 0
+673 0 - - - - 0 000000 0 0 0
+674 0 - - - - 0 000000 0 0 0
+675 0 - - - - 0 000000 0 0 0
+676 0 - - - - 0 000000 0 0 0
+677 0 - - - - 0 000000 0 0 0
+678 0 - - - - 0 000000 0 0 0
+679 0 - - - - 0 000000 0 0 0
+680 0 - - - - 0 000000 0 0 0
+681 0 - - - - 0 000000 0 0 0
+682 0 - - - - 0 000000 0 0 0
+683 0 - - - - 0 000000 0 0 0
+684 0 - - - - 0 000000 0 0 0
+685 0 - - - - 0 000000 0 0 0
+686 0 - - - - 0 000000 0 0 0
+687 0 - - - - 0 000000 0 0 0
+688 0 - - - - 0 000000 0 0 0
+689 0 - - - - 0 000000 0 0 0
+690 0 - - - - 0 000000 0 0 0
+691 0 - - - - 0 000000 0 0 0
+692 0 - - - - 0 000000 0 0 0
+693 0 - - - - 0 000000 0 0 0
+694 0 - - - - 0 000000 0 0 0
+695 0 - - - - 0 000000 0 0 0
+696 0 - - - - 0 000000 0 0 0
+697 0 - - - - 0 000000 0 0 0
+698 0 - - - - 0 000000 0 0 0
+699 0 - - - - 0 000000 0 0 0
+700 0 - - - - 0 000000 0 0 0
+701 0 - - - - 0 000000 0 0 0
+702 0 - - - - 0 000000 0 0 0
+703 0 - - - - 0 000000 0 0 0
+704 0 - - - - 0 000000 0 0 0
+705 0 - - - - 0 000000 0 0 0
+706 0 - - - - 0 000000 0 0 0
+707 0 - - - - 0 000000 0 0 0
+708 0 - - - - 0 000000 0 0 0
+709 0 - - - - 0 000000 0 0 0
+710 0 - - - - 0 000000 0 0 0
+711 0 - - - - 0 000000 0 0 0
+712 0 - - - - 0 000000 0 0 0
+713 0 - - - - 0 000000 0 0 0
+714 0 - - - - 0 000000 0 0 0
+715 0 - - - - 0 000000 0 0 0
+716 0 - - - - 0 000000 0 0 0
+717 0 - - - - 0 000000 0 0 0
+718 0 - - - - 0 000000 0 0 0
+719 0 - - - - 0 000000 0 0 0
+720 0 - - - - 0 000000 0 0 0
+721 0 - - - - 0 000000 0 0 0
+722 0 - - - - 0 000000 0 0 0
+723 0 - - - - 0 000000 0 0 0
+724 0 - - - - 0 000000 0 0 0
+725 0 - - - - 0 000000 0 0 0
+726 0 - - - - 0 000000 0 0 0
+727 0 - - - - 0 000000 0 0 0
+728 0 - - - - 0 000000 0 0 0
+729 0 - - - - 0 000000 0 0 0
+730 0 - - - - 0 000000 0 0 0
+731 0 - - - - 0 000000 0 0 0
+732 0 - - - - 0 000000 0 0 0
+733 0 - - - - 0 000000 0 0 0
+734 0 - - - - 0 000000 0 0 0
+735 0 - - - - 0 000000 0 0 0
+736 0 - - - - 0 000000 0 0 0
+737 0 - - - - 0 000000 0 0 0
+738 0 - - - - 0 000000 0 0 0
+739 0 - - - - 0 000000 0 0 0
+740 0 - - - - 0 000000 0 0 0
+741 0 - - - - 0 000000 0 0 0
+742 0 - - - - 0 000000 0 0 0
+743 0 - - - - 0 000000 0 0 0
+744 0 - - - - 0 000000 0 0 0
+745 0 - - - - 0 000000 0 0 0
+746 0 - - - - 0 000000 0 0 0
+747 0 - - - - 0 000000 0 0 0
+748 0 - - - - 0 000000 0 0 0
+749 0 - - - - 0 000000 0 0 0
+750 0 - - - - 0 000000 0 0 0
+751 0 - - - - 0 000000 0 0 0
+752 0 - - - - 0 000000 0 0 0
+753 0 - - - - 0 000000 0 0 0
+754 0 - - - - 0 000000 0 0 0
+755 0 - - - - 0 000000 0 0 0
+756 0 - - - - 0 000000 0 0 0
+757 0 - - - - 0 000000 0 0 0
+758 0 - - - - 0 000000 0 0 0
+759 0 - - - - 0 000000 0 0 0
+760 0 - - - - 0 000000 0 0 0
+761 0 - - - - 0 000000 0 0 0
+762 0 - - - - 0 000000 0 0 0
+763 0 - - - - 0 000000 0 0 0
+764 0 - - - - 0 000000 0 0 0
+765 0 - - - - 0 000000 0 0 0
+766 0 - - - - 0 000000 0 0 0
+767 0 - - - - 0 000000 0 0 0
+768 0 - - - - 0 000000 0 0 0
+769 0 - - - - 0 000000 0 0 0
+770 0 - - - - 0 000000 0 0 0
+771 0 - - - - 0 000000 0 0 0
+772 0 - - - - 0 000000 0 0 0
+773 0 - - - - 0 000000 0 0 0
+774 0 - - - - 0 000000 0 0 0
+775 0 - - - - 0 000000 0 0 0
+776 0 - - - - 0 000000 0 0 0
+777 0 - - - - 0 000000 0 0 0
+778 0 - - - - 0 000000 0 0 0
+779 0 - - - - 0 000000 0 0 0
+780 0 - - - - 0 000000 0 0 0
+781 0 - - - - 0 000000 0 0 0
+782 0 - - - - 0 000000 0 0 0
+783 0 - - - - 0 000000 0 0 0
+784 0 - - - - 0 000000 0 0 0
+785 0 - - - - 0 000000 0 0 0
+786 0 - - - - 0 000000 0 0 0
+787 0 - - - - 0 000000 0 0 0
+788 0 - - - - 0 000000 0 0 0
+789 0 - - - - 0 000000 0 0 0
+790 0 - - - - 0 000000 0 0 0
+791 0 - - - - 0 000000 0 0 0
+792 0 - - - - 0 000000 0 0 0
+793 0 - - - - 0 000000 0 0 0
+794 0 - - - - 0 000000 0 0 0
+795 0 - - - - 0 000000 0 0 0
+796 0 - - - - 0 000000 0 0 0
+797 0 - - - - 0 000000 0 0 0
+798 0 - - - - 0 000000 0 0 0
+799 0 - - - - 0 000000 0 0 0
+800 0 - - - - 0 000000 0 0 0
+801 0 - - - - 0 000000 0 0 0
+802 0 - - - - 0 000000 0 0 0
+803 0 - - - - 0 000000 0 0 0
+804 0 - - - - 0 000000 0 0 0
+805 0 - - - - 0 000000 0 0 0
+806 0 - - - - 0 000000 0 0 0
+807 0 - - - - 0 000000 0 0 0
+808 0 - - - - 0 000000 0 0 0
+809 0 - - - - 0 000000 0 0 0
+810 0 - - - - 0 000000 0 0 0
+811 0 - - - - 0 000000 0 0 0
+812 0 - - - - 0 000000 0 0 0
+813 0 - - - - 0 000000 0 0 0
+814 0 - - - - 0 000000 0 0 0
+815 0 - - - - 0 000000 0 0 0
+816 0 - - - - 0 000000 0 0 0
+817 0 - - - - 0 000000 0 0 0
+818 0 - - - - 0 000000 0 0 0
+819 0 - - - - 0 000000 0 0 0
+820 0 - - - - 0 000000 0 0 0
+821 0 - - - - 0 000000 0 0 0
+822 0 - - - - 0 000000 0 0 0
+823 0 - - - - 0 000000 0 0 0
+824 0 - - - - 0 000000 0 0 0
+825 0 - - - - 0 000000 0 0 0
+826 0 - - - - 0 000000 0 0 0
+827 0 - - - - 0 000000 0 0 0
+828 0 - - - - 0 000000 0 0 0
+829 0 - - - - 0 000000 0 0 0
+830 0 - - - - 0 000000 0 0 0
+831 0 - - - - 0 000000 0 0 0
+832 0 - - - - 0 000000 0 0 0
+833 0 - - - - 0 000000 0 0 0
+834 0 - - - - 0 000000 0 0 0
+835 0 - - - - 0 000000 0 0 0
+836 0 - - - - 0 000000 0 0 0
+837 0 - - - - 0 000000 0 0 0
+838 0 - - - - 0 000000 0 0 0
+839 0 - - - - 0 000000 0 0 0
+840 0 - - - - 0 000000 0 0 0
+841 0 - - - - 0 000000 0 0 0
+842 0 - - - - 0 000000 0 0 0
+843 0 - - - - 0 000000 0 0 0
+844 0 - - - - 0 000000 0 0 0
+845 0 - - - - 0 000000 0 0 0
+846 0 - - - - 0 000000 0 0 0
+847 0 - - - - 0 000000 0 0 0
+848 0 - - - - 0 000000 0 0 0
+849 0 - - - - 0 000000 0 0 0
+850 0 - - - - 0 000000 0 0 0
+851 0 - - - - 0 000000 0 0 0
+852 0 - - - - 0 000000 0 0 0
+853 0 - - - - 0 000000 0 0 0
+854 0 - - - - 0 000000 0 0 0
+855 0 - - - - 0 000000 0 0 0
+856 0 - - - - 0 000000 0 0 0
+857 0 - - - - 0 000000 0 0 0
+858 0 - - - - 0 000000 0 0 0
+859 0 - - - - 0 000000 0 0 0
+860 0 - - - - 0 000000 0 0 0
+861 0 - - - - 0 000000 0 0 0
+862 0 - - - - 0 000000 0 0 0
+863 0 - - - - 0 000000 0 0 0
+864 0 - - - - 0 000000 0 0 0
+865 0 - - - - 0 000000 0 0 0
+866 0 - - - - 0 000000 0 0 0
+867 0 - - - - 0 000000 0 0 0
+868 0 - - - - 0 000000 0 0 0
+869 0 - - - - 0 000000 0 0 0
+870 0 - - - - 0 000000 0 0 0
+871 0 - - - - 0 000000 0 0 0
+872 0 - - - - 0 000000 0 0 0
+873 0 - - - - 0 000000 0 0 0
+874 0 - - - - 0 000000 0 0 0
+875 0 - - - - 0 000000 0 0 0
+876 0 - - - - 0 000000 0 0 0
+877 0 - - - - 0 000000 0 0 0
+878 0 - - - - 0 000000 0 0 0
+879 0 - - - - 0 000000 0 0 0
+880 0 - - - - 0 000000 0 0 0
+881 0 - - - - 0 000000 0 0 0
+882 0 - - - - 0 000000 0 0 0
+883 0 - - - - 0 000000 0 0 0
+884 0 - - - - 0 000000 0 0 0
+885 0 - - - - 0 000000 0 0 0
+886 0 - - - - 0 000000 0 0 0
+887 0 - - - - 0 000000 0 0 0
+888 0 - - - - 0 000000 0 0 0
+889 0 - - - - 0 000000 0 0 0
+890 0 - - - - 0 000000 0 0 0
+891 0 - - - - 0 000000 0 0 0
+892 0 - - - - 0 000000 0 0 0
+893 0 - - - - 0 000000 0 0 0
+894 0 - - - - 0 000000 0 0 0
+895 0 - - - - 0 000000 0 0 0
+896 0 - - - - 0 000000 0 0 0
+897 0 - - - - 0 000000 0 0 0
+898 0 - - - - 0 000000 0 0 0
+899 0 - - - - 0 000000 0 0 0
+900 0 - - - - 0 000000 0 0 0
+901 0 - - - - 0 000000 0 0 0
+902 0 - - - - 0 000000 0 0 0
+903 0 - - - - 0 000000 0 0 0
+904 0 - - - - 0 000000 0 0 0
+905 0 - - - - 0 000000 0 0 0
+906 0 - - - - 0 000000 0 0 0
+907 0 - - - - 0 000000 0 0 0
+908 0 - - - - 0 000000 0 0 0
+909 0 - - - - 0 000000 0 0 0
+910 0 - - - - 0 000000 0 0 0
+911 0 - - - - 0 000000 0 0 0
+912 0 - - - - 0 000000 0 0 0
+913 0 - - - - 0 000000 0 0 0
+914 0 - - - - 0 000000 0 0 0
+915 0 - - - - 0 000000 0 0 0
+916 0 - - - - 0 000000 0 0 0
+917 0 - - - - 0 000000 0 0 0
+918 0 - - - - 0 000000 0 0 0
+919 0 - - - - 0 000000 0 0 0
+920 0 - - - - 0 000000 0 0 0
+921 0 - - - - 0 000000 0 0 0
+922 0 - - - - 0 000000 0 0 0
+923 0 - - - - 0 000000 0 0 0
+924 0 - - - - 0 000000 0 0 0
+925 0 - - - - 0 000000 0 0 0
+926 0 - - - - 0 000000 0 0 0
+927 0 - - - - 0 000000 0 0 0
+928 0 - - - - 0 000000 0 0 0
+929 0 - - - - 0 000000 0 0 0
+930 0 - - - - 0 000000 0 0 0
+931 0 - - - - 0 000000 0 0 0
+932 0 - - - - 0 000000 0 0 0
+933 0 - - - - 0 000000 0 0 0
+934 0 - - - - 0 000000 0 0 0
+935 0 - - - - 0 000000 0 0 0
+936 0 - - - - 0 000000 0 0 0
+937 0 - - - - 0 000000 0 0 0
+938 0 - - - - 0 000000 0 0 0
+939 0 - - - - 0 000000 0 0 0
+940 0 - - - - 0 000000 0 0 0
+941 0 - - - - 0 000000 0 0 0
+942 0 - - - - 0 000000 0 0 0
+943 0 - - - - 0 000000 0 0 0
+944 0 - - - - 0 000000 0 0 0
+945 0 - - - - 0 000000 0 0 0
+946 0 - - - - 0 000000 0 0 0
+947 0 - - - - 0 000000 0 0 0
+948 0 - - - - 0 000000 0 0 0
+949 0 - - - - 0 000000 0 0 0
+950 0 - - - - 0 000000 0 0 0
+951 0 - - - - 0 000000 0 0 0
+952 0 - - - - 0 000000 0 0 0
+953 0 - - - - 0 000000 0 0 0
+954 0 - - - - 0 000000 0 0 0
+955 0 - - - - 0 000000 0 0 0
+956 0 - - - - 0 000000 0 0 0
+957 0 - - - - 0 000000 0 0 0
+958 0 - - - - 0 000000 0 0 0
+959 0 - - - - 0 000000 0 0 0
+960 0 - - - - 0 000000 0 0 0
+961 0 - - - - 0 000000 0 0 0
+962 0 - - - - 0 000000 0 0 0
+963 0 - - - - 0 000000 0 0 0
+964 0 - - - - 0 000000 0 0 0
+965 0 - - - - 0 000000 0 0 0
+966 0 - - - - 0 000000 0 0 0
+967 0 - - - - 0 000000 0 0 0
+968 0 - - - - 0 000000 0 0 0
+969 0 - - - - 0 000000 0 0 0
+970 0 - - - - 0 000000 0 0 0
+971 0 - - - - 0 000000 0 0 0
+972 0 - - - - 0 000000 0 0 0
+973 0 - - - - 0 000000 0 0 0
+974 0 - - - - 0 000000 0 0 0
+975 0 - - - - 0 000000 0 0 0
+976 0 - - - - 0 000000 0 0 0
+977 0 - - - - 0 000000 0 0 0
+978 0 - - - - 0 000000 0 0 0
+979 0 - - - - 0 000000 0 0 0
+980 0 - - - - 0 000000 0 0 0
+981 0 - - - - 0 000000 0 0 0
+982 0 - - - - 0 000000 0 0 0
+983 0 - - - - 0 000000 0 0 0
+984 0 - - - - 0 000000 0 0 0
+985 0 - - - - 0 000000 0 0 0
+986 0 - - - - 0 000000 0 0 0
+987 0 - - - - 0 000000 0 0 0
+988 0 - - - - 0 000000 0 0 0
+989 0 - - - - 0 000000 0 0 0
+990 0 - - - - 0 000000 0 0 0
+991 0 - - - - 0 000000 0 0 0
+992 0 - - - - 0 000000 0 0 0
+993 0 - - - - 0 000000 0 0 0
+994 0 - - - - 0 000000 0 0 0
+995 0 - - - - 0 000000 0 0 0
+996 0 - - - - 0 000000 0 0 0
+997 0 - - - - 0 000000 0 0 0
+998 0 - - - - 0 000000 0 0 0
+999 0 - - - - 0 000000 0 0 0
+1000 0 - - - - 0 000000 0 0 0
+1001 0 - - - - 0 000000 0 0 0
+1002 0 - - - - 0 000000 0 0 0
+1003 0 - - - - 0 000000 0 0 0
+1004 0 - - - - 0 000000 0 0 0
+1005 0 - - - - 0 000000 0 0 0
+1006 0 - - - - 0 000000 0 0 0
+1007 0 - - - - 0 000000 0 0 0
+1008 0 - - - - 0 000000 0 0 0
+1009 0 - - - - 0 000000 0 0 0
+1010 0 - - - - 0 000000 0 0 0
+1011 0 - - - - 0 000000 0 0 0
+1012 0 - - - - 0 000000 0 0 0
+1013 0 - - - - 0 000000 0 0 0
+1014 0 - - - - 0 000000 0 0 0
+1015 0 - - - - 0 000000 0 0 0
+1016 0 - - - - 0 000000 0 0 0
+1017 0 - - - - 0 000000 0 0 0
+1018 0 - - - - 0 000000 0 0 0
+1019 0 - - - - 0 000000 0 0 0
+1020 0 - - - - 0 000000 0 0 0
+1021 0 - - - - 0 000000 0 0 0
+1022 0 - - - - 0 000000 0 0 0
+1023 0 - - - - 0 000000 0 0 0
+
+[RL_SSN]
+#NetID DPC SSN
+
+[GTT_ATTRIBUTE]
+Idx
+ 0 0000000000000000000000000000000000000000000000000000000000000000
+1 0000000000000000000000000000000000000000000000000000000000000000
+3 0000000000000000000000000000000000000000000000000000000000000000
+4 0000000000000000000000000000000000000000000000000000000000000000
diff --git a/omc/bin/conf/server.conf b/omc/bin/conf/server.conf
new file mode 100644
index 0000000..bbc8f32
--- /dev/null
+++ b/omc/bin/conf/server.conf
@@ -0,0 +1,31 @@
+[host]
+omc_master = omc-0
+mysql_master = omc-0
+
+omc_slave = omc-1
+mysql_slave = omc-1
+
+[master_task]
+#processor option
+iptrans -d
+paraComm -d
+subsComm -d
+logCollector -d
+omcCleaner -d
+smcli -d
+cdrCollector -d
+subsDataBackup -d
+ftpSend -d
+alarmAgent -d
+nrtrde -d
+sftpSend -d
+cstaCollector -d
+[slave_task]
+iptrans -d
+paraComm -d
+subsComm -d
+logCollector -d
+omcCleaner -d
+smcli -d
+cdrCollector -d
+
diff --git a/omc/bin/conf/smeg.conf b/omc/bin/conf/smeg.conf
new file mode 100644
index 0000000..b8b9086
Binary files /dev/null and b/omc/bin/conf/smeg.conf differ
diff --git a/omc/bin/conf/smpp.conf b/omc/bin/conf/smpp.conf
new file mode 100644
index 0000000..342d30d
--- /dev/null
+++ b/omc/bin/conf/smpp.conf
@@ -0,0 +1,35 @@
+#SMPP Config file (V1.0.01)
+#Copy this file to ./conf/smpp.conf to set global options
+#No lkEn lkType serverType sessionType sysID pwd sysType LGTT RGTT LIP RIP sessionTimer enqTimer inactTimer rspTimer ServiceNum localSSN remoteSSN
+0 129 1 0 0 Test 123456 esme -- -- 192.168.4.75 10.10.1.179 5 10 5 5 98765 0 0
+1 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+2 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+3 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+4 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+5 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+6 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+7 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+8 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+9 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+10 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+11 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+12 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+13 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+14 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+15 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+16 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+17 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+18 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+19 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+20 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+21 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+22 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+23 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+24 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+25 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+26 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+27 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+28 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+29 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+30 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
+31 0 0 0 0 Test 123456 GSM -- -- 0.0.0.0 0.0.0.0 5 10 5 5 -- 0 0
diff --git a/omc/bin/conf/snmp.conf b/omc/bin/conf/snmp.conf
new file mode 100644
index 0000000..abeab14
--- /dev/null
+++ b/omc/bin/conf/snmp.conf
@@ -0,0 +1,36 @@
+[version-1]
+[manager]
+engineID=00000063000000A19BE2CAC5
+
+[engine-2]
+engineType=0
+securityLevel=3
+userName=Sw1tch3msUser!
+authPassword=Sw1tch3msPass
+privacyPassword=Sw1tch3msPriv
+engineID=00000063000000A19BE2CAC5
+contextName=Sw1tch3msUser!
+contextEngineID=00000063000000A19BE2CAC5
+
+[engine-3]
+engineType=2
+securityLevel=3
+userName=Wxc2LocalUser!
+authPassword=Sw1tch3msPass
+privacyPassword=Sw1tch3msPriv
+engineID=00000063000000A19BE2CAC5
+contextName=Sw1tch3msUser!
+contextEngineID=00000063000000A19BE2CAC5
+
+[engine-4]
+engineType=1
+securityLevel=3
+userName=McmsRaid123!
+authPassword=Sw1tch3msPass
+privacyPassword=Sw1tch3msPriv
+engineID=00000063000000A19BE2CAC5
+contextName=McmsRaid123!
+contextEngineID=00000063000000A19BE2CAC5
+remoteIp=172.18.128.1
+remotePort=161
+
diff --git a/omc/bin/conf/sync.conf b/omc/bin/conf/sync.conf
new file mode 100644
index 0000000..e69de29
diff --git a/omc/bin/conf/welcomeSMS.conf b/omc/bin/conf/welcomeSMS.conf
new file mode 100644
index 0000000..9b1f313
--- /dev/null
+++ b/omc/bin/conf/welcomeSMS.conf
@@ -0,0 +1,11 @@
+#WelcomeSMS conf file
+
+#1-enable 0-disable
+flag=1
+
+#The day time to keep roamer record
+keep_day_time=7
+
+#The service number of the smpp link
+service_number=98765
+
diff --git a/omc/bin/cstaCollector b/omc/bin/cstaCollector
new file mode 100644
index 0000000..07a8afd
Binary files /dev/null and b/omc/bin/cstaCollector differ
diff --git a/omc/bin/dual/cdr_data_proc.sh b/omc/bin/dual/cdr_data_proc.sh
new file mode 100644
index 0000000..0a6cd5d
--- /dev/null
+++ b/omc/bin/dual/cdr_data_proc.sh
@@ -0,0 +1,54 @@
+#!/bin/bash
+
+omcbinpath="/usr/local/omc/bin"
+mysqlbin="/usr/bin/mysql"
+mysqluser="administrator"
+mysqlpwd="*86#ROtartsinim"
+progname=$0
+
+function debug_log()
+{
+ watcherLogFile=/usr/local/omc/log/cdr_data_proc`date +%Y%m%d`.log
+ timestr=`date +%H:%M:%S`
+ #echo $timestr
+ echo "$timestr $1" >> $watcherLogFile
+}
+
+function error_log()
+{
+ watcherLogFile=/usr/local/omc/log/cdr_data_proc_error`date +%Y%m%d`.log
+ timestr=`date +%H:%M:%S`
+ #echo $timestr
+ echo "$1" >> $watcherLogFile
+}
+
+lockfile="/tmp/`basename $progname|awk -F. '{print $1}'`.lock"
+if test -f $lockfile ; then
+ exit
+fi
+touch $lockfile
+
+setting=`grep $progname $omcbinpath/dual/sync_source.conf`
+iodir=`echo $setting |awk -F, '{print $5}'`
+procdir=`echo $setting |awk -F, '{print $6}'`
+
+
+cd $procdir
+procfiles=`ls *.finish`
+for file in $procfiles; do
+ datafile="`echo $file|awk -F. '{print $1}'`.dat"
+ if test -f $procdir/$datafile ; then
+ rm -rf error.txt
+ cat $procdir/$datafile | $mysqlbin -u$mysqluser -p$mysqlpwd 2>error.txt
+ if test -f error.txt ; then
+ if test `cat error.txt|wc -l` -gt 0 ; then
+ error_log "$datafile:`cat error.txt`"
+ fi
+ rm -rf error.txt
+ fi
+ rm -rf $procdir/$datafile $file
+ debug_log "Process $datafile"
+ fi
+done
+
+rm -rf $lockfile
diff --git a/omc/bin/dual/cdr_io_proc.sh b/omc/bin/dual/cdr_io_proc.sh
new file mode 100644
index 0000000..f90bc60
--- /dev/null
+++ b/omc/bin/dual/cdr_io_proc.sh
@@ -0,0 +1,98 @@
+#!/bin/bash
+
+omcbinpath="/usr/local/omc/bin"
+progname=$0
+
+function debug_log()
+{
+ watcherLogFile=/usr/local/omc/log/cdr_io_proc`date +%Y%m%d`.log
+ timestr=`date +%H:%M:%S`
+ #echo $timestr
+ echo "$timestr $1" >> $watcherLogFile
+}
+
+lockfile="/tmp/`basename $progname|awk -F. '{print $1}'`.lock"
+if test -f $lockfile ; then
+ exit
+fi
+touch $lockfile
+
+
+setting=`grep $progname $omcbinpath/dual/sync_source.conf`
+iodir=`echo $setting |awk -F, '{print $5}'`
+procdir=`echo $setting |awk -F, '{print $6}'`
+
+localhostnameprefix=`hostname|awk -F'-' '{print $1}'`
+localhostnameid=`hostname|awk -F'-' '{print $2}'|awk -F. '{print $1}'`
+
+if test $localhostnameid -eq 0 ; then
+ otherhostnameid=1
+else
+ otherhostnameid=0
+fi
+
+otherserverip=`grep ''$localhostnameprefix'\-'$otherhostnameid'' /etc/hosts |awk '{print $1}'`
+
+#echo iodir=$iodir
+#echo procdir=$procdir
+#echo localhostnameprefix=$localhostnameprefix
+#echo localhostnameid=$localhostnameid
+#echo otherhostnameid=$otherhostnameid
+#echo otherserverip=$otherserverip
+
+cd $iodir
+
+low=`od -x file.index|awk '{print $2}'`
+high=`od -x file.index|awk '{print $3}'`
+((declow=16#$low))
+((dechigh=16#$high))
+
+#writing_index=`expr $dechigh \* 65536 + $declow`
+#writing_file=`printf "%06d.dat" $writing_index`
+#echo writing_index=$writing_index
+#echo writing_file=$writing_file
+
+sendfiles=`ls *.dat`
+debug_log "Prepare to send files to $otherserverip"
+for file in $sendfiles; do
+ processflag=0
+ endfile="`echo $file|awk -F. '{print $1}'`.end"
+ if test -f $endfile ; then
+ processflag=1
+ else
+ if test `find . -mmin +3 -name $file|wc -l` -eq 1 ; then
+ processflag=1
+ fi
+ fi
+
+ if test $processflag -eq 1 ; then
+ resultfile="`echo $file|awk -F. '{print $1}'`.ret"
+ sessionfile="`echo $file|awk -F. '{print $1}'`.finish"
+ touch $sessionfile
+ expect $omcbinpath/dual/sendfile $otherserverip www 123456 $iodir $file $procdir $iodir/$resultfile $sessionfile
+ if test -f $resultfile ; then
+ ret=`grep -c '^1' $resultfile`
+ else
+ ret=0
+ fi
+ if test $ret -eq 1 ; then
+ debug_log "Send $file successfully"
+ rm -rf $file $resultfile $sessionfile $endfile
+ else
+ rm -rf $resultfile $sessionfile $endfile
+ debug_log "Send $file unsuccessfully"
+ fi
+ fi
+done
+
+endfiles=`find . -mmin +5 -name '*.end'`
+for file in $endfiles; do
+ datafile=`echo $file|awk -F'.end' '{print $1}'`".dat"
+ if test ! -f $datafile ; then
+ rm -rf $file
+ debug_log "Delete $file for nouse"
+ fi
+done
+
+
+rm -rf $lockfile
diff --git a/omc/bin/dual/cdr_io_proc/file.index b/omc/bin/dual/cdr_io_proc/file.index
new file mode 100644
index 0000000..4b75839
Binary files /dev/null and b/omc/bin/dual/cdr_io_proc/file.index differ
diff --git a/omc/bin/dual/check_proc_status.sh b/omc/bin/dual/check_proc_status.sh
new file mode 100644
index 0000000..bf094d4
--- /dev/null
+++ b/omc/bin/dual/check_proc_status.sh
@@ -0,0 +1,119 @@
+#!/bin/bash
+omcbinpath="/usr/local/omc/bin"
+
+function debug_log()
+{
+ watcherLogFile=/usr/local/omc/log/check_proc_status`date +%Y%m%d`.log
+ timestr=`date +%H:%M:%S`
+ #echo $timestr
+ echo "$timestr $1" >> $watcherLogFile
+}
+
+
+process_id=0
+function get_process_id()
+{
+ # parameter: process_name
+ progname=$1
+ process_id=`ps -aef|grep -v grep|grep '\./'$1 |awk '{print $2}'`
+}
+
+process_status=0
+function get_process_status()
+{
+ # parameter: process_name
+ progname=$1
+
+ pid=`ps -aef|grep -v grep|grep -c '\./'$1`
+ if test $progname == "mysqld" ; then
+ pid=`ps -aef|grep -v grep|grep -c 'mysqld'`
+ fi
+ if test $progname == "httpd" ; then
+ pid=`ps -aef|grep -v grep|grep -c 'httpd'`
+ fi
+
+
+
+ if test $pid -ge 1 ; then
+ process_status=1
+ else
+ process_status=0
+ fi
+}
+
+function get_param()
+{
+ # parameter: file_name parameter_name
+ ret=`grep "$2=" $1|awk -F= '{print $2}'`
+ echo $ret
+}
+
+function get_master_process()
+{
+ master_line=`grep -n '\[master_task\]' $omcbinpath/conf/server.conf |awk -F: '{print $1}'`
+ slave_line=`grep -n '\[slave_task\]' $omcbinpath/conf/server.conf |awk -F: '{print $1}'`
+ sed -n "${master_line},${slave_line}"p $omcbinpath/conf/server.conf|grep '^\s*[a-zA-Z]' |awk '{print $1}'
+}
+
+function get_slave_process()
+{
+ slave_line=`grep -n '\[slave_task\]' $omcbinpath/conf/server.conf |awk -F: '{print $1}'`
+ sed -n "${slave_line},$"p $omcbinpath/conf/server.conf|grep '^\s*[a-zA-Z]' |awk '{print $1}'
+}
+
+omc_state=`get_param $omcbinpath/dual/dualstate State`
+master_list=`get_master_process`
+slave_list=`get_slave_process`
+
+get_process_status "mysqld"
+mysql_status=$process_status
+get_process_status "httpd"
+http_status=$process_status
+get_process_status "omcMain"
+omcMain_status=$process_status
+
+status_list="$mysql_status$http_status$omcMain_status"
+
+# master
+if [ "x$omc_state" == "xMaster" -o "x$omc_state" == "xSingle" ] ;then
+ for prog in $master_list; do
+ get_process_status "$prog"
+ prog_status=$process_status
+ status_list="$status_list$prog_status"
+ if [ $prog_status -eq 0 ] ;then
+ debug_log "Run in $omc_state, start process $prog"
+ cd $omcbinpath
+ ./$prog -d
+ sleep 1
+ fi
+ done
+fi
+
+# slave
+if [ "x$omc_state" == "xSlave" ] ;then
+ for prog in $master_list; do
+ get_process_status "$prog"
+ if [ $process_status -eq 1 ] ;then
+ if [ `echo $slave_list|grep -c $prog` -eq 0 ] ;then
+ debug_log "Run in $omc_state, stop process $prog"
+ get_process_id $prog
+ kill -9 $process_id
+ fi
+ fi
+ done
+
+ for prog in $slave_list; do
+ get_process_status "$prog"
+ prog_status=$process_status
+ status_list="$status_list$prog_status"
+ if [ $prog_status -eq 0 ] ;then
+ debug_log "Run in $omc_state, start process $prog"
+ cd $omcbinpath
+ ./$prog -d
+ sleep 1
+ fi
+ done
+fi
+
+echo $status_list
+echo $status_list > $omcbinpath/dual/procstatus
diff --git a/omc/bin/dual/dualstate b/omc/bin/dual/dualstate
new file mode 100644
index 0000000..fa927ea
--- /dev/null
+++ b/omc/bin/dual/dualstate
@@ -0,0 +1 @@
+State=Single
\ No newline at end of file
diff --git a/omc/bin/dual/procstatus b/omc/bin/dual/procstatus
new file mode 100644
index 0000000..aa91fef
--- /dev/null
+++ b/omc/bin/dual/procstatus
@@ -0,0 +1 @@
+0011111111111111
diff --git a/omc/bin/dual/sendfile b/omc/bin/dual/sendfile
new file mode 100644
index 0000000..31a1004
--- /dev/null
+++ b/omc/bin/dual/sendfile
@@ -0,0 +1,38 @@
+#!/usr/bin/expect
+
+#This script interative with the remote server, and send the file to it
+
+#This script have 6 parameters
+#remoteip: the ip of the remote server
+#username: the name for logining in
+#userpass: the password for logining in
+#resdir: the directory to store the files
+#sendfile: the file to send to the remote server
+#desdir: the directory to send the files
+
+set remoteip [lindex $argv 0]
+set username [lindex $argv 1]
+set userpass [lindex $argv 2]
+set resdir [lindex $argv 3]
+set sendfile [lindex $argv 4]
+set desdir [lindex $argv 5]
+set resultfile [lindex $argv 6]
+set sessionfile [lindex $argv 7]
+
+set timeout 6
+
+spawn sftp $username@$remoteip
+
+
+expect "*(yes/no)?" {send "yes\n"; expect "*assword: "} timeout {exit 1} "*assword: "
+send "$userpass\n"
+expect "*sftp>*"
+send "cd $desdir\n"
+send "lcd $resdir\n"
+send "put $sendfile\n"
+expect "*100%*"
+send "put $sessionfile\n"
+expect "*100%*"
+exec echo 1 > $resultfile
+exit
+
diff --git a/omc/bin/dual/sync_source.conf b/omc/bin/dual/sync_source.conf
new file mode 100644
index 0000000..58679a4
--- /dev/null
+++ b/omc/bin/dual/sync_source.conf
@@ -0,0 +1,7 @@
+# Sync data source configuration
+# NAME IO_PROC_SCRIPT DATA_PROC_SCRIPT SYNC_FILE_SIZE SEND_DIR RECV_DIR
+CDR_SYNC,/usr/local/omc/bin/dual/cdr_io_proc.sh,/usr/local/omc/bin/dual/cdr_data_proc.sh,102400,/usr/local/omc/bin/dual/cdr_io_proc,/usr/local/omc/bin/dual/cdr_data_proc
+
+
+# END
+
diff --git a/omc/bin/ftpSend b/omc/bin/ftpSend
new file mode 100644
index 0000000..fbc65a4
Binary files /dev/null and b/omc/bin/ftpSend differ
diff --git a/omc/bin/initKeys b/omc/bin/initKeys
new file mode 100644
index 0000000..70055b9
--- /dev/null
+++ b/omc/bin/initKeys
@@ -0,0 +1,32 @@
+#!/usr/bin/expect
+
+#This script use to init the server keys, it rewrite the known_hosts config file
+
+#This script have 3 parameters
+#remoteip: the ip of the remote server
+#username: the name for logging in
+#userpass: the password for logging in
+
+set remoteip [lindex $argv 0]
+set username [lindex $argv 1]
+set userpass [lindex $argv 2]
+
+set timeout 5
+
+spawn sftp $username@$remoteip
+
+expect "*(yes/no)?*"
+
+send "yes\n"
+
+expect "*password*"
+
+send "$userpass\n"
+
+expect "*sftp>*"
+
+send "quit\n"
+
+expect eof
+exit
+
diff --git a/omc/bin/iptrans b/omc/bin/iptrans
new file mode 100644
index 0000000..017a0e3
Binary files /dev/null and b/omc/bin/iptrans differ
diff --git a/omc/bin/logCollector b/omc/bin/logCollector
new file mode 100644
index 0000000..9ad5b59
Binary files /dev/null and b/omc/bin/logCollector differ
diff --git a/omc/bin/mib/LGC-MIB.my b/omc/bin/mib/LGC-MIB.my
new file mode 100644
index 0000000..ddc8a11
--- /dev/null
+++ b/omc/bin/mib/LGC-MIB.my
@@ -0,0 +1,656 @@
+--
+-- LGC-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Friday, December 16, 2011 at 15:52:13
+--
+
+ LGC-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ enterprises, TimeTicks, MODULE-IDENTITY
+ FROM SNMPv2-SMI
+ TEXTUAL-CONVENTION
+ FROM SNMPv2-TC;
+
+
+ -- 1.3.6.1.4.1.1373.2
+ lgcSS MODULE-IDENTITY
+ LAST-UPDATED "200706041222Z" -- June 04, 2007 at 12:22 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "The MIB module for lgcWireless's Softswitch products."
+ REVISION "200706041223Z" -- June 04, 2007 at 12:23 GMT
+ DESCRIPTION
+ "This is the first release version of the MIB"
+ ::= { lgcNS 2 }
+
+
+
+--
+-- Type definitions
+--
+
+ AdminStateChoices ::= INTEGER
+ {
+ locked(0),
+ unlocked(1),
+ shutDown(2)
+ }
+
+ OperStateChoices ::= INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+--
+-- Textual conventions
+--
+
+-- TEXTUAL-CONVENTION MACRO ::=
+-- BEGIN
+-- TYPE NOTATION ::=
+-- DisplayPart
+-- "STATUS" Status
+-- "DESCRIPTION" Text
+-- ReferPart
+-- "SYNTAX" Syntax
+--
+-- VALUE NOTATION ::=
+-- value(VALUE Syntax)
+--
+-- DisplayPart ::=
+-- "DISPLAY-HINT" Text
+-- | empty
+--
+-- Status ::=
+-- "current"
+-- | "deprecated"
+-- | "obsolete"
+--
+-- ReferPart ::=
+-- "REFERENCE" Text
+-- | empty
+--
+-- -- -- uses the NVT ASCII character set
+-- Text ::= """" string """"
+--
+-- Syntax ::=
+-- type(ObjectSyntax)
+-- | "BITS" "{" Kibbles "}"
+-- Kibbles ::=
+-- Kibble
+-- | Kibbles "," Kibble
+-- Kibble ::=
+-- identifier "(" nonNegativeNumber ")"
+-- END
+ DisplayString8 ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT
+ "8a"
+ STATUS current
+ DESCRIPTION
+ "Represents textual information taken from the NVT ASCII
+ character set, as defined in pages 4, 10-11 of RFC 854.
+
+ To summarize RFC 854, the NVT ASCII repertoire specifies:
+
+ - the use of character codes 0-127 (decimal)
+
+ - the graphics characters (32-126) are interpreted as
+ US ASCII
+
+ - NUL, LF, CR, BEL, BS, HT, VT and FF have the special
+ meanings specified in RFC 854
+
+ - the other 25 codes have no standard interpretation
+
+ - the sequence 'CR LF' means newline
+
+ - the sequence 'CR NUL' means carriage-return
+
+ - an 'LF' not preceded by a 'CR' means moving to the
+ same column on the next line.
+
+ - the sequence 'CR x' for any x other than LF or NUL is
+ illegal. (Note that this also means that a string may
+ end with either 'CR LF' or 'CR NUL', but not with CR.)
+
+ Any object defined using this syntax may not exceed 255
+ characters in length."
+ SYNTAX OCTET STRING (SIZE (0..8))
+
+ DisplayString16 ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT
+ "16a"
+ STATUS current
+ DESCRIPTION
+ "A version of DisplayString that contains only 16 characters most."
+ SYNTAX OCTET STRING (SIZE (0..16))
+
+ DisplayString32 ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT
+ "32a"
+ STATUS current
+ DESCRIPTION
+ "A version of DisplayString that contains only 32 characters most."
+ SYNTAX OCTET STRING (SIZE (0..32))
+
+ DisplayString64 ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT
+ "64a"
+ STATUS current
+ DESCRIPTION
+ "A version of DisplayString that contains only 64 characters most."
+ SYNTAX OCTET STRING (SIZE (0..64))
+
+ DisplayString ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT
+ "255a"
+ STATUS current
+ DESCRIPTION
+ "A version of DisplayString that contains only 255 characters most."
+ SYNTAX OCTET STRING (SIZE (0..255))
+
+ RowStatus ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "The RowStatus textual convention is used to manage the
+ creation and deletion of conceptual rows, and is used as the
+ value of the SYNTAX clause for the status column of a
+ conceptual row (as described in Section 7.7.1 of [2].)
+
+ The status column has six defined values:
+
+ - `active', which indicates that the conceptual row is
+ available for use by the managed device;
+
+ - `notInService', which indicates that the conceptual
+ row exists in the agent, but is unavailable for use by
+ the managed device (see NOTE below);
+
+ - `notReady', which indicates that the conceptual row
+ exists in the agent, but is missing information
+ necessary in order to be available for use by the
+ managed device;
+
+ - `createAndGo', which is supplied by a management
+ station wishing to create a new instance of a
+ conceptual row and to have its status automatically set
+ to active, making it available for use by the managed
+ device;
+
+ - `createAndWait', which is supplied by a management
+ station wishing to create a new instance of a
+ conceptual row (but not make it available for use by
+ the managed device); and,
+
+ - `destroy', which is supplied by a management station
+ wishing to delete all of the instances associated with
+ an existing conceptual row.
+
+ Whereas five of the six values (all except `notReady') may
+ be specified in a management protocol set operation, only
+ three values will be returned in response to a management
+ protocol retrieval operation: `notReady', `notInService' or
+ `active'. That is, when queried, an existing conceptual row
+ has only three states: it is either available for use by
+ the managed device (the status column has value `active');
+ it is not available for use by the managed device, though
+ the agent has sufficient information to make it so (the
+ status column has value `notInService'); or, it is not
+ available for use by the managed device, and an attempt to
+ make it so would fail because the agent has insufficient
+ information (the state column has value `notReady').
+
+ NOTE WELL
+
+ This textual convention may be used for a MIB table,
+ irrespective of whether the values of that table's
+ conceptual rows are able to be modified while it is
+ active, or whether its conceptual rows must be taken
+ out of service in order to be modified. That is, it is
+ the responsibility of the DESCRIPTION clause of the
+ status column to specify whether the status column must
+ not be `active' in order for the value of some other
+ column of the same conceptual row to be modified. If
+ such a specification is made, affected columns may be
+ changed by an SNMP set PDU if the RowStatus would not
+ be equal to `active' either immediately before or after
+ processing the PDU. In other words, if the PDU also
+ contained a varbind that would change the RowStatus
+ value, the column in question may be changed if the
+ RowStatus was not equal to `active' as the PDU was
+ received, or if the varbind sets the status to a value
+ other than 'active'.
+
+
+ Also note that whenever any elements of a row exist, the
+ RowStatus column must also exist.
+
+ To summarize the effect of having a conceptual row with a
+ status column having a SYNTAX clause value of RowStatus,
+ consider the following state diagram:
+
+
+ STATE
+ +--------------+-----------+-------------+-------------
+ | A | B | C | D
+ | |status col.|status column|
+ |status column | is | is |status column
+ ACTION |does not exist| notReady | notInService| is active
+ --------------+--------------+-----------+-------------+-------------
+ set status |noError ->D|inconsist- |inconsistent-|inconsistent-
+ column to | or | entValue| Value| Value
+ createAndGo |inconsistent- | | |
+ | Value| | |
+ --------------+--------------+-----------+-------------+-------------
+ set status |noError see 1|inconsist- |inconsistent-|inconsistent-
+ column to | or | entValue| Value| Value
+ createAndWait |wrongValue | | |
+ --------------+--------------+-----------+-------------+-------------
+ set status |inconsistent- |inconsist- |noError |noError
+ column to | Value| entValue| |
+ active | | | |
+ | | or | |
+ | | | |
+ | |see 2 ->D| ->D| ->D
+ --------------+--------------+-----------+-------------+-------------
+ set status |inconsistent- |inconsist- |noError |noError ->C
+ column to | Value| entValue| |
+ notInService | | | |
+ | | or | | or
+ | | | |
+ | |see 3 ->C| ->C|wrongValue
+ --------------+--------------+-----------+-------------+-------------
+ set status |noError |noError |noError |noError
+ column to | | | |
+ destroy | ->A| ->A| ->A| ->A
+ --------------+--------------+-----------+-------------+-------------
+ set any other |see 4 |noError |noError |see 5
+ column to some| | | |
+ value | | see 1| ->C| ->D
+ --------------+--------------+-----------+-------------+-------------
+
+ (1) goto B or C, depending on information available to the
+ agent.
+
+ (2) if other variable bindings included in the same PDU,
+ provide values for all columns which are missing but
+ required, then return noError and goto D.
+
+ (3) if other variable bindings included in the same PDU,
+ provide values for all columns which are missing but
+ required, then return noError and goto C.
+
+ (4) at the discretion of the agent, the return value may be
+ either:
+
+ inconsistentName: because the agent does not choose to
+ create such an instance when the corresponding
+ RowStatus instance does not exist, or
+
+ inconsistentValue: if the supplied value is
+ inconsistent with the state of some other MIB object's
+ value, or
+
+ noError: because the agent chooses to create the
+ instance.
+
+ If noError is returned, then the instance of the status
+ column must also be created, and the new state is B or C,
+ depending on the information available to the agent. If
+ inconsistentName or inconsistentValue is returned, the row
+ remains in state A.
+
+ (5) depending on the MIB definition for the column/table,
+ either noError or inconsistentValue may be returned.
+
+ NOTE: Other processing of the set request may result in a
+ response other than noError being returned, e.g.,
+ wrongValue, noCreation, etc.
+
+
+ Conceptual Row Creation
+
+ There are four potential interactions when creating a
+ conceptual row: selecting an instance-identifier which is
+ not in use; creating the conceptual row; initializing any
+ objects for which the agent does not supply a default; and,
+ making the conceptual row available for use by the managed
+ device.
+
+ Interaction 1: Selecting an Instance-Identifier
+
+ The algorithm used to select an instance-identifier varies
+ for each conceptual row. In some cases, the instance-
+ identifier is semantically significant, e.g., the
+ destination address of a route, and a management station
+ selects the instance-identifier according to the semantics.
+
+ In other cases, the instance-identifier is used solely to
+ distinguish conceptual rows, and a management station
+ without specific knowledge of the conceptual row might
+ examine the instances present in order to determine an
+ unused instance-identifier. (This approach may be used, but
+ it is often highly sub-optimal; however, it is also a
+ questionable practice for a naive management station to
+ attempt conceptual row creation.)
+
+ Alternately, the MIB module which defines the conceptual row
+ might provide one or more objects which provide assistance
+ in determining an unused instance-identifier. For example,
+ if the conceptual row is indexed by an integer-value, then
+ an object having an integer-valued SYNTAX clause might be
+ defined for such a purpose, allowing a management station to
+ issue a management protocol retrieval operation. In order
+ to avoid unnecessary collisions between competing management
+ stations, `adjacent' retrievals of this object should be
+ different.
+
+ Finally, the management station could select a pseudo-random
+ number to use as the index. In the event that this index
+ was already in use and an inconsistentValue was returned in
+ response to the management protocol set operation, the
+ management station should simply select a new pseudo-random
+ number and retry the operation.
+
+ A MIB designer should choose between the two latter
+ algorithms based on the size of the table (and therefore the
+ efficiency of each algorithm). For tables in which a large
+ number of entries are expected, it is recommended that a MIB
+ object be defined that returns an acceptable index for
+ creation. For tables with small numbers of entries, it is
+ recommended that the latter pseudo-random index mechanism be
+ used.
+
+
+ Interaction 2: Creating the Conceptual Row
+
+ Once an unused instance-identifier has been selected, the
+ management station determines if it wishes to create and
+ activate the conceptual row in one transaction or in a
+ negotiated set of interactions.
+
+ Interaction 2a: Creating and Activating the Conceptual Row
+
+ The management station must first determine the column
+ requirements, i.e., it must determine those columns for
+ which it must or must not provide values. Depending on the
+ complexity of the table and the management station's
+ knowledge of the agent's capabilities, this determination
+ can be made locally by the management station. Alternately,
+ the management station issues a management protocol get
+ operation to examine all columns in the conceptual row that
+ it wishes to create. In response, for each column, there
+ are three possible outcomes:
+
+ - a value is returned, indicating that some other
+ management station has already created this conceptual
+ row. We return to interaction 1.
+
+ - the exception `noSuchInstance' is returned,
+ indicating that the agent implements the object-type
+ associated with this column, and that this column in at
+ least one conceptual row would be accessible in the MIB
+ view used by the retrieval were it to exist. For those
+ columns to which the agent provides read-create access,
+ the `noSuchInstance' exception tells the management
+ station that it should supply a value for this column
+ when the conceptual row is to be created.
+
+ - the exception `noSuchObject' is returned, indicating
+ that the agent does not implement the object-type
+ associated with this column or that there is no
+ conceptual row for which this column would be
+ accessible in the MIB view used by the retrieval. As
+ such, the management station can not issue any
+ management protocol set operations to create an
+ instance of this column.
+
+ Once the column requirements have been determined, a
+ management protocol set operation is accordingly issued.
+ This operation also sets the new instance of the status
+ column to `createAndGo'.
+
+ When the agent processes the set operation, it verifies that
+ it has sufficient information to make the conceptual row
+ available for use by the managed device. The information
+ available to the agent is provided by two sources: the
+ management protocol set operation which creates the
+ conceptual row, and, implementation-specific defaults
+ supplied by the agent (note that an agent must provide
+ implementation-specific defaults for at least those objects
+ which it implements as read-only). If there is sufficient
+ information available, then the conceptual row is created, a
+ `noError' response is returned, the status column is set to
+ `active', and no further interactions are necessary (i.e.,
+ interactions 3 and 4 are skipped). If there is insufficient
+ information, then the conceptual row is not created, and the
+ set operation fails with an error of `inconsistentValue'.
+ On this error, the management station can issue a management
+ protocol retrieval operation to determine if this was
+ because it failed to specify a value for a required column,
+ or, because the selected instance of the status column
+ already existed. In the latter case, we return to
+ interaction 1. In the former case, the management station
+ can re-issue the set operation with the additional
+ information, or begin interaction 2 again using
+ `createAndWait' in order to negotiate creation of the
+ conceptual row.
+
+ NOTE WELL
+
+ Regardless of the method used to determine the column
+ requirements, it is possible that the management
+ station might deem a column necessary when, in fact,
+ the agent will not allow that particular columnar
+ instance to be created or written. In this case, the
+ management protocol set operation will fail with an
+ error such as `noCreation' or `notWritable'. In this
+ case, the management station decides whether it needs
+ to be able to set a value for that particular columnar
+ instance. If not, the management station re-issues the
+ management protocol set operation, but without setting
+ a value for that particular columnar instance;
+ otherwise, the management station aborts the row
+ creation algorithm.
+
+ Interaction 2b: Negotiating the Creation of the Conceptual
+ Row
+
+ The management station issues a management protocol set
+ operation which sets the desired instance of the status
+ column to `createAndWait'. If the agent is unwilling to
+ process a request of this sort, the set operation fails with
+ an error of `wrongValue'. (As a consequence, such an agent
+ must be prepared to accept a single management protocol set
+ operation, i.e., interaction 2a above, containing all of the
+ columns indicated by its column requirements.) Otherwise,
+ the conceptual row is created, a `noError' response is
+ returned, and the status column is immediately set to either
+ `notInService' or `notReady', depending on whether it has
+ sufficient information to make the conceptual row available
+ for use by the managed device. If there is sufficient
+ information available, then the status column is set to
+ `notInService'; otherwise, if there is insufficient
+ information, then the status column is set to `notReady'.
+ Regardless, we proceed to interaction 3.
+
+ Interaction 3: Initializing non-defaulted Objects
+
+ The management station must now determine the column
+ requirements. It issues a management protocol get operation
+ to examine all columns in the created conceptual row. In
+ the response, for each column, there are three possible
+ outcomes:
+
+ - a value is returned, indicating that the agent
+ implements the object-type associated with this column
+ and had sufficient information to provide a value. For
+ those columns to which the agent provides read-create
+ access (and for which the agent allows their values to
+ be changed after their creation), a value return tells
+ the management station that it may issue additional
+ management protocol set operations, if it desires, in
+ order to change the value associated with this column.
+
+ - the exception `noSuchInstance' is returned,
+ indicating that the agent implements the object-type
+ associated with this column, and that this column in at
+ least one conceptual row would be accessible in the MIB
+ view used by the retrieval were it to exist. However,
+ the agent does not have sufficient information to
+ provide a value, and until a value is provided, the
+ conceptual row may not be made available for use by the
+ managed device. For those columns to which the agent
+ provides read-create access, the `noSuchInstance'
+ exception tells the management station that it must
+ issue additional management protocol set operations, in
+ order to provide a value associated with this column.
+
+ - the exception `noSuchObject' is returned, indicating
+ that the agent does not implement the object-type
+ associated with this column or that there is no
+ conceptual row for which this column would be
+ accessible in the MIB view used by the retrieval. As
+ such, the management station can not issue any
+ management protocol set operations to create an
+ instance of this column.
+
+ If the value associated with the status column is
+ `notReady', then the management station must first deal with
+ all `noSuchInstance' columns, if any. Having done so, the
+ value of the status column becomes `notInService', and we
+ proceed to interaction 4.
+
+ Interaction 4: Making the Conceptual Row Available
+
+ Once the management station is satisfied with the values
+ associated with the columns of the conceptual row, it issues
+ a management protocol set operation to set the status column
+ to `active'. If the agent has sufficient information to
+ make the conceptual row available for use by the managed
+ device, the management protocol set operation succeeds (a
+ `noError' response is returned). Otherwise, the management
+ protocol set operation fails with an error of
+ `inconsistentValue'.
+
+
+ NOTE WELL
+
+ A conceptual row having a status column with value
+ `notInService' or `notReady' is unavailable to the
+ managed device. As such, it is possible for the
+ managed device to create its own instances during the
+ time between the management protocol set operation
+ which sets the status column to `createAndWait' and the
+ management protocol set operation which sets the status
+ column to `active'. In this case, when the management
+ protocol set operation is issued to set the status
+ column to `active', the values held in the agent
+ supersede those used by the managed device.
+
+ If the management station is prevented from setting the
+ status column to `active' (e.g., due to management station
+ or network failure) the conceptual row will be left in the
+ `notInService' or `notReady' state, consuming resources
+ indefinitely. The agent must detect conceptual rows that
+ have been in either state for an abnormally long period of
+ time and remove them. It is the responsibility of the
+ DESCRIPTION clause of the status column to indicate what an
+ abnormally long period of time would be. This period of
+ time should be long enough to allow for human response time
+ (including `think time') between the creation of the
+ conceptual row and the setting of the status to `active'.
+ In the absense of such information in the DESCRIPTION
+ clause, it is suggested that this period be approximately 5
+ minutes in length. This removal action applies not only to
+ newly-created rows, but also to previously active rows which
+ are set to, and left in, the notInService state for a
+ prolonged period exceeding that which is considered normal
+ for such a conceptual row.
+
+
+ Conceptual Row Suspension
+
+ When a conceptual row is `active', the management station
+ may issue a management protocol set operation which sets the
+ instance of the status column to `notInService'. If the
+ agent is unwilling to do so, the set operation fails with an
+ error of `wrongValue'. Otherwise, the conceptual row is
+ taken out of service, and a `noError' response is returned.
+ It is the responsibility of the DESCRIPTION clause of the
+ status column to indicate under what circumstances the
+ status column should be taken out of service (e.g., in order
+ for the value of some other column of the same conceptual
+ row to be modified).
+
+
+ Conceptual Row Deletion
+
+ For deletion of conceptual rows, a management protocol set
+ operation is issued which sets the instance of the status
+ column to `destroy'. This request may be made regardless of
+ the current value of the status column (e.g., it is possible
+ to delete conceptual rows which are either `notReady',
+ `notInService' or `active'.) If the operation succeeds,
+ then all instances associated with the conceptual row are
+ immediately removed."
+ SYNTAX INTEGER
+ {
+ active(1),
+ notInService(2),
+ notReady(3),
+ createAndGo(4),
+ createAndWait(5),
+ destroy(6)
+ }
+
+-- the following two values are states:
+-- these values may be read or written
+-- the following value is a state:
+-- this value may be read, but not written
+-- the following three values are
+-- actions: these values may be written,
+-- but are never read
+ TimeStamp ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "The value of the sysUpTime object at which a specific
+ occurrence happened. The specific occurrence must be
+ defined in the description of any object defined using this
+ type."
+ SYNTAX TimeTicks
+
+
+--
+-- Node definitions
+--
+
+ -- 1.3.6.1.4.1.1373
+ lgcNS OBJECT IDENTIFIER ::= { enterprises 1373 }
+
+
+
+ END
+
+--
+-- LGC-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-AAS-MIB.my b/omc/bin/mib/LGC-SS-AAS-MIB.my
new file mode 100644
index 0000000..3001cd1
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-AAS-MIB.my
@@ -0,0 +1,260 @@
+--
+-- LGC-SS-AAS-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Monday, September 13, 2010 at 15:36:43
+--
+
+ LGC-SS-AAS-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS
+ FROM LGC-MIB
+ OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10
+ aas MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 10 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2
+ parameter OBJECT IDENTIFIER ::= { aas 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.1.1
+ systemNum OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:System ID
+ Remark:(Read Only) ID to identify the target AAS."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.1.2
+ aASPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:AAS Prefix
+ Remark:Define an internal prefix used to route to AAS and play audio announcement.
- Default = BB"
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.1.3
+ playTimes OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Play Times
+ Remark:Define the audio announcement play times.
- Range = 1 - 5"
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.1.4
+ command OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ reset(1),
+ saveVoiceFile(2),
+ loadVoiceFile(3),
+ saveCodec(4),
+ loadCodec(5)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Control command for VAS."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.2
+ linkManage OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.2.1
+ networkIndication OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ international(0),
+ internationalSpare(1),
+ national(2),
+ nationalSpare(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Network Indicator
+ Remark:Select the type of network used to establish connection between AAS and MSS."
+ ::= { linkManage 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.2.2
+ mSISDN OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:SRF MSISDN
+ Remark:(Read Only) The E.164 node address of the SRF."
+ ::= { linkManage 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.2.3
+ cC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CC
+ Remark:Country code"
+ ::= { linkManage 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.2.4
+ nDC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..6))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NDC
+ Remark:National Destination Code"
+ ::= { linkManage 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.2.5
+ aAS0OPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:AAS 0 OPC
+ Remark:Originating Point Code of AAS-0 in decimal format."
+ ::= { linkManage 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.2.6
+ aAS0DPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:AAS 0 DPC
+ Remark:Destination Point Code of AAS-0 in decimal format."
+ ::= { linkManage 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.2.7
+ aAS1OPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:AAS 1 OPC
+ Remark:Originating Point Code of AAS-1 in decimal format."
+ ::= { linkManage 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.2.8
+ aAS1DPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:AAS 1 DPC
+ Remark:Destination Point Code of AAS-1 in decimal format."
+ ::= { linkManage 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.2.9
+ flagLink0 OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Link 0 Flag
+ Remark:Enable or disable link-0 of the target AAS specified in the upper System ID field."
+ ::= { linkManage 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.10.2.2.10
+ flagLink1 OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Link 1 Flag
+ Remark:Enable or disable link-1 of the target AAS specified in the upper System ID field."
+ ::= { linkManage 10 }
+
+
+
+ END
+
+--
+-- LGC-SS-AAS-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-AMRMG-MIB.my b/omc/bin/mib/LGC-SS-AMRMG-MIB.my
new file mode 100644
index 0000000..d481ba2
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-AMRMG-MIB.my
@@ -0,0 +1,263 @@
+--
+-- LGC-SS-AMRMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Monday, September 13, 2010 at 15:43:06
+--
+
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Friday, March 12, 2010 at 14:15:06
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, March 11, 2010 at 10:05:09
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, March 11, 2010 at 10:04:10
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Wednesday, March 10, 2010 at 14:44:19
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Wednesday, March 10, 2010 at 11:35:26
+--
+
+ LGC-SS-AMRMG-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString
+ FROM LGC-MIB
+ IpAddress, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.22
+ amrmg MODULE-IDENTITY
+ LAST-UPDATED "201003101054Z" -- March 10, 2010 at 10:54 GMT
+ ORGANIZATION
+ "altobridge"
+ CONTACT-INFO
+ "Contact-info."
+ DESCRIPTION
+ "Description."
+ REVISION "201003101055Z" -- March 10, 2010 at 10:55 GMT
+ DESCRIPTION
+ "1st Version"
+ ::= { application 22 }
+
+
+
+
+--
+-- Node definitions
+--
+
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+ -- 1.3.6.1.4.1.1373.2.3.3.22.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { amrmg 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+ -- 1.3.6.1.4.1.1373.2.3.3.22.2
+ parameter OBJECT IDENTIFIER ::= { amrmg 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.22.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.22.2.1.1
+ localIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Local IP
+ Remark:Specify the IP address of this Media Gateway."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.22.2.1.2
+ netMask OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Netmask
+ Remark:A netmask is a 32-bit mask used to divide an IP address into subnets and specify the networks available hosts."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.22.2.1.3
+ gateway OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Gateway
+ Remark:Specify the IP address of the gateway used to pass traffic from Media Gateway to other subnets."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.22.2.1.4
+ systemID OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:System ID
+ Remark:Specify the system ID of the target Media Gateway.
- Range = 0 - 31"
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.22.2.1.5
+ subSystemID OBJECT-TYPE
+ SYNTAX INTEGER (0..7)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Sub-System ID
+ Remark:Specify the subsystem ID of the target Media Gateway.
- Range = 0 - 1"
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.22.2.1.6
+ proxyIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Proxy IP
+ Remark:Specify the IP address of the connected RTP proxy server."
+ ::= { system 6 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.22.2.1.7
+ portType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ t1(0),
+ e1(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Port Type
+ Remark:Specify the physical interface type of target Media Gateway."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.22.2.1.8
+ interfaceID OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Interface ID
+ Remark:Specify the interface identifier to the Media Gateway physical interface."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.22.2.1.9
+ crc4Switch OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ closed(0),
+ open(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CRC4 Flag
+ Remark:Enable or disable Cyclic Redundancy Check on the Media Gateway physical interface."
+ ::= { system 9 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.22.2.1.10
+ rebootCommand OBJECT-TYPE
+ SYNTAX INTEGER { reboot(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 10 }
+
+
+
+ END
+
+--
+-- LGC-SS-AMRMG-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-AUC-MIB.my b/omc/bin/mib/LGC-SS-AUC-MIB.my
new file mode 100644
index 0000000..455c9fe
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-AUC-MIB.my
@@ -0,0 +1,567 @@
+--
+-- LGC-SS-AUC-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, May 24, 2012 at 11:16:44
+--
+
+ LGC-SS-AUC-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, RowStatus
+ FROM LGC-MIB
+ Opaque, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4
+ auc MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 4 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2
+ parameter OBJECT IDENTIFIER ::= { auc 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.1
+ maxLicenses OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Max License
+ Remark:(Read Only) The maximum allowable AUC subscriber capacity determined by License Control."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.2
+ usedLicenses OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Used License
+ Remark:(Read Only) The number of registered AUC subscribers."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.3
+ provisionedUsers OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Provisioned Users
+ Remark:(Read Only) The number of service enabled AUC subscribers."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.4
+ softwareVersion OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Software Version
+ Remark:(Read Only) Version of AUC software."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.5
+ dataVersion OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Data Version
+ Remark:(Read Only) Version of AUC subscriber data structure."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.6
+ saveParam OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ idle(0),
+ save(1),
+ succeeded(2),
+ failed(3)
+ }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Save the parameters into the disk."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.7
+ saveDataCommand OBJECT-TYPE
+ SYNTAX INTEGER { saveData(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Save data into the disk."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.8
+ importSubs OBJECT-TYPE
+ SYNTAX Opaque (SIZE (12))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes
+ OPAQUE DECODE RULE:
+ [unit]Command[u]00.0-00.7[u]select
+ [v]0[opt]Idle
+ [v]1[opt]Sending Command
+ [v]2[opt]In Processing
+ [v]3[opt]Succeeded
+ [v]4[opt]Failed
+ [unit]Success Numbers[u]01.0-03.7[u]input
+ [v]toDec-high-0
+ [unit]Ki[u]04.0-11.7[u]input
+ [v]keepHex"
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.2
+ subscriberSelectAlgorithm OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.2.1
+ subscriberSelectAlgorithmTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SubscriberSelectAlgorithmEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subscriberSelectAlgorithm 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.2.1.1
+ subscriberSelectAlgorithmEntry OBJECT-TYPE
+ SYNTAX SubscriberSelectAlgorithmEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { ssaIndex }
+ ::= { subscriberSelectAlgorithmTable 1 }
+
+
+ SubscriberSelectAlgorithmEntry ::=
+ SEQUENCE {
+ ssaIndex
+ INTEGER,
+ ssaAdministrationStatus
+ INTEGER,
+ ssaStartIMSI
+ OCTET STRING,
+ ssaEndIMSI
+ OCTET STRING,
+ ssaAlgorithmid
+ INTEGER,
+ ssaRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.2.1.1.1
+ ssaIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index"
+ ::= { subscriberSelectAlgorithmEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.2.1.1.2
+ ssaAdministrationStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ lock(0),
+ unlock(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Administration State"
+ ::= { subscriberSelectAlgorithmEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.2.1.1.3
+ ssaStartIMSI OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..15))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Start IMSI"
+ ::= { subscriberSelectAlgorithmEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.2.1.1.4
+ ssaEndIMSI OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..15))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:End IMSI"
+ ::= { subscriberSelectAlgorithmEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.2.1.1.5
+ ssaAlgorithmid OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Algorithm index"
+ ::= { subscriberSelectAlgorithmEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.2.1.1.6
+ ssaRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { subscriberSelectAlgorithmEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3
+ algorithm OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1
+ algorithmTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF AlgorithmEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { algorithm 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1
+ algorithmEntry OBJECT-TYPE
+ SYNTAX AlgorithmEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { aIndex }
+ ::= { algorithmTable 1 }
+
+
+ AlgorithmEntry ::=
+ SEQUENCE {
+ aIndex
+ INTEGER,
+ aAdministrationStatus
+ INTEGER,
+ aOP
+ OCTET STRING,
+ aR1
+ INTEGER,
+ aR2
+ INTEGER,
+ aR3
+ INTEGER,
+ aR4
+ INTEGER,
+ aR5
+ INTEGER,
+ aC1
+ Opaque,
+ aC2
+ Opaque,
+ aC3
+ Opaque,
+ aC4
+ Opaque,
+ aC5
+ Opaque,
+ aL
+ OCTET STRING,
+ aDelta
+ OCTET STRING,
+ aSQNgenerationScheme
+ INTEGER,
+ aAMF
+ Opaque,
+ aRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.1
+ aIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index"
+ ::= { algorithmEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.2
+ aAdministrationStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ lock(0),
+ unlock(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Administration state"
+ ::= { algorithmEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.3
+ aOP OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "PASSWORD:Visible Name:OP
+ Remark: a 128bit Operator variant algorithm configuration field that is a component of the functions f1, f1(, f2, f3, f4, f5 and f5(. It should be displayed "("."
+ ::= { algorithmEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.4
+ aR1 OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:R1
+ Remark: integers in the range 0 to 127 inclusive, which define amounts by which intermediate variables are cyclically rotated."
+ ::= { algorithmEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.5
+ aR2 OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:R2"
+ ::= { algorithmEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.6
+ aR3 OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:R3"
+ ::= { algorithmEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.7
+ aR4 OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:R4"
+ ::= { algorithmEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.8
+ aR5 OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:R5"
+ ::= { algorithmEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.9
+ aC1 OBJECT-TYPE
+ SYNTAX Opaque (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:C1
+ OPAQUE DECODE RULE:
+ [unit]C1[u]00.0-15.7[u]input
+ [v]keepHex-high-0
+ Remark: 128bit constants, which are XORed onto intermediate variables."
+ ::= { algorithmEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.10
+ aC2 OBJECT-TYPE
+ SYNTAX Opaque (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:C2
+ OPAQUE DECODE RULE:
+ [unit]C2[u]00.0-15.7[u]input
+ [v]keepHex-high-0"
+ ::= { algorithmEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.11
+ aC3 OBJECT-TYPE
+ SYNTAX Opaque (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:C3
+ OPAQUE DECODE RULE:
+ [unit]C3[u]00.0-15.7[u]input
+ [v]keepHex-high-0"
+ ::= { algorithmEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.12
+ aC4 OBJECT-TYPE
+ SYNTAX Opaque (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:C4
+ OPAQUE DECODE RULE:
+ [unit]C4[u]00.0-15.7[u]input
+ [v]keepHex-high-0"
+ ::= { algorithmEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.13
+ aC5 OBJECT-TYPE
+ SYNTAX Opaque (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:C5
+ OPAQUE DECODE RULE:
+ [unit]C5[u]00.0-15.7[u]input
+ [v]keepHex-high-0"
+ ::= { algorithmEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.14
+ aL OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:L
+ Remark:The USIM shall also be able to put a limit L on the difference between SEQms and a received sequence number component SEQ."
+ ::= { algorithmEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.15
+ aDelta OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Delta
+ Remark:The USIM will not accept arbitrary jumps in sequence numbers, but only increases by a value of at most delta."
+ ::= { algorithmEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.16
+ aSQNgenerationScheme OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ partlyTime(0),
+ notTime(1),
+ entirelyTime(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SQN generation scheme
+ Remark: Sequence number. 0:partly time-based; 1: not time-based; 2:entirely time-based."
+ ::= { algorithmEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.17
+ aAMF OBJECT-TYPE
+ SYNTAX Opaque (SIZE (2))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:AMF
+ OPAQUE DECODE RULE:
+ [unit]AMF[u]00.0-01.7[u]input
+ [v]keepHex-high-0"
+ ::= { algorithmEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.3.1.1.18
+ aRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { algorithmEntry 18 }
+
+
+
+ END
+
+--
+-- LGC-SS-AUC-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-AUC-MIB.my_bak b/omc/bin/mib/LGC-SS-AUC-MIB.my_bak
new file mode 100644
index 0000000..6ad4f7e
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-AUC-MIB.my_bak
@@ -0,0 +1,184 @@
+--
+-- LGC-SS-AUC-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Monday, September 13, 2010 at 15:46:52
+--
+
+ LGC-SS-AUC-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS
+ FROM LGC-MIB
+ Opaque, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4
+ auc MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 4 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2
+ parameter OBJECT IDENTIFIER ::= { auc 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.1
+ maxLicenses OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Max License
+ Remark:(Read Only) The maximum allowable AUC subscriber capacity determined by License Control."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.2
+ usedLicenses OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Used License
+ Remark:(Read Only) The number of registered AUC subscribers."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.3
+ provisionedUsers OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Provisioned Users
+ Remark:(Read Only) The number of service enabled AUC subscribers."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.4
+ softwareVersion OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Software Version
+ Remark:(Read Only) Version of AUC software."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.5
+ dataVersion OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Data Version
+ Remark:(Read Only) Version of AUC subscriber data structure."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.6
+ saveParam OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ idle(0),
+ save(1),
+ succeeded(2),
+ failed(3)
+ }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Save the parameters into the disk."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.7
+ saveDataCommand OBJECT-TYPE
+ SYNTAX INTEGER { saveData(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Save data into the disk."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.4.2.1.8
+ importSubs OBJECT-TYPE
+ SYNTAX Opaque (SIZE (12))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes
+ OPAQUE DECODE RULE:
+ [unit]Command[u]00.0-00.7[u]select
+ [v]0[opt]Idle
+ [v]1[opt]Sending Command
+ [v]2[opt]In Processing
+ [v]3[opt]Succeeded
+ [v]4[opt]Failed
+ [unit]Success Numbers[u]01.0-03.7[u]input
+ [v]toDec-high-0
+ [unit]Ki[u]04.0-11.7[u]input
+ [v]keepHex"
+ ::= { system 8 }
+
+
+
+ END
+
+--
+-- LGC-SS-AUC-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-AUSF-MIB.my b/omc/bin/mib/LGC-SS-AUSF-MIB.my
new file mode 100644
index 0000000..a50da5e
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-AUSF-MIB.my
@@ -0,0 +1,241 @@
+--
+-- LGC-SS-AUSF-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Sunday, January 19, 2020 at 15:40:02
+--
+
+ LGC-SS-AUSF-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS
+ FROM LGC-MIB
+ Integer32, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52
+ ausf MODULE-IDENTITY
+ LAST-UPDATED "202001090955Z" -- January 09, 2020 at 09:55 GMT
+ ORGANIZATION
+ "Organization."
+ CONTACT-INFO
+ "Contact-info."
+ DESCRIPTION
+ "Description."
+ ::= { application 52 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2
+ parameter OBJECT IDENTIFIER ::= { ausf 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.1
+ adminState OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ unlock(0),
+ lock(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.2
+ label OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.3
+ nfInstanceID OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.4
+ hplmnID OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.5
+ servicesIP OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.6
+ servicesPort OBJECT-TYPE
+ SYNTAX Integer32 (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.7
+ nrf0Path OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.8
+ nrf1Path OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.9
+ defaultUDMURI OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.10
+ defaultNRFNotifyURI OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.11
+ fqdn OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.12
+ priority OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.13
+ capacity OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.14
+ groupID OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.15
+ supiRanges OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.52.2.1.16
+ snssais OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 16 }
+
+
+
+ END
+
+--
+-- LGC-SS-AUSF-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-EIR-MIB.my b/omc/bin/mib/LGC-SS-EIR-MIB.my
new file mode 100644
index 0000000..3ea72eb
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-EIR-MIB.my
@@ -0,0 +1,253 @@
+--
+-- LGC-SS-EIR-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Monday, September 13, 2010 at 15:55:05
+--
+
+ LGC-SS-EIR-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, RowStatus
+ FROM LGC-MIB
+ Opaque, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8
+ eir MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 8 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2
+ parameter OBJECT IDENTIFIER ::= { eir 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.1.1
+ maxLicenses OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Max License
+ Remark:(Read Only) The maximum allowable EIR subscriber capacity determined by License Control."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.1.2
+ usedLicenses OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Used License
+ Remark:(Read Only) The number of registered EIR subscribers."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.1.3
+ softwareVersion OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Software Version
+ Remark:(Read Only) Version of EIR software."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.1.4
+ dataVersion OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Data Version
+ Remark:(Read Only) Version of EIR subscriber data structure."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.1.5
+ saveParam OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ idle(0),
+ save(1),
+ succeeded(2),
+ failed(3)
+ }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:EIR control commands."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.1.6
+ saveDataCommand OBJECT-TYPE
+ SYNTAX INTEGER { saveData(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:EIR control commands."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.1.7
+ importSubs OBJECT-TYPE
+ SYNTAX Opaque (SIZE (7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes
+ OPAQUE DECODE RULE:
+ [unit]Progress Report[u]00.0-00.7[u]select
+ [v]0[opt]Idle
+ [v]1[opt]Requesting
+ [v]2[opt]Processing
+ [v]3[opt]Succeeded
+ [v]4[opt]Failed
+ [unit]Total IMEIs[u]01.0-03.7[u]input
+ [v]toDec-high-0
+ [unit]Imported IMEIs[u]04.0-06.7[u]input
+ [v]toDec-high-0"
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.2
+ whiteListSegments OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.2.1
+ whiteListSegmentsTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF WhiteListSegmentsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { whiteListSegments 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.2.1.1
+ whiteListSegmentsEntry OBJECT-TYPE
+ SYNTAX WhiteListSegmentsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { wlsIndex }
+ ::= { whiteListSegmentsTable 1 }
+
+
+ WhiteListSegmentsEntry ::=
+ SEQUENCE {
+ wlsIndex
+ INTEGER,
+ wlsStartIMEI
+ OCTET STRING,
+ wlsEndIMEI
+ OCTET STRING,
+ wlsRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.2.1.1.1
+ wlsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1023)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:White-list IMEI segment index number ranges from 0 to 1023. A white-list number is a legal IMEI that can pass the EIR verification."
+ ::= { whiteListSegmentsEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.2.1.1.2
+ wlsStartIMEI OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:IMEI Start
+ Remark:The beginning of consecutive white-list IMEIs. A 16-digit IMEI comprises four parts:
- TAC = 6 digits (Type Approval Code)
- FAC = 2 digits (Final Assembly Code)
- SNR = 6 digits (Serial Number)
- SVN = 2 digits (Software Version Number)"
+ ::= { whiteListSegmentsEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.2.1.1.3
+ wlsEndIMEI OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:IMEI End
+ Remark:The end of consecutive white-list IMEIs."
+ ::= { whiteListSegmentsEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.8.2.2.1.1.4
+ wlsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { whiteListSegmentsEntry 4 }
+
+
+
+ END
+
+--
+-- LGC-SS-EIR-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-GRS-MIB.my b/omc/bin/mib/LGC-SS-GRS-MIB.my
new file mode 100644
index 0000000..2d1bbe3
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-GRS-MIB.my
@@ -0,0 +1,2225 @@
+--
+-- LGC-SS-GRS-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, June 20, 2019 at 17:38:34
+--
+
+ LGC-SS-GRS-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, TimeStamp, RowStatus, DisplayString, AdminStateChoices
+ FROM LGC-MIB
+ IpAddress, Opaque, Integer32, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16
+ grs MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 16 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { grs 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2
+ parameter OBJECT IDENTIFIER ::= { grs 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.1.1
+ systemID OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:System ID
+ Remark:Specify the System ID of the iGRS."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.1.2
+ primaryPalimIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Primary iPALIM IP
+ Remark:Specify the IP address of the master iPALIM connecting to the iGRS."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.1.3
+ primaryPalimPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Primary iPALIM Port
+ Remark:Specify the transmission port of the master iPALIM connecting to the iGRS."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.1.4
+ secondaryPalimIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Secondary iPALIM IP
+ Remark:Specify the IP address of the slave iPALIM connecting to the iGRS."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.1.5
+ secondaryPalimPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Secondary iPALIM Port
+ Remark:Specify the transmission port of the slave iPALIM connecting to the iGRS."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.1.6
+ keepNSAliveToCellTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..3600)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Keep NS Alive to Cell Timer
+ Remark:Keep Alive Time Interval to Cell."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.1.7
+ resetToSGSNTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..3600)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Reset to SGSN Timer
+ Remark:Reset Time Interval to SGSN."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.1.8
+ blockUnblockToSGSNTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..3600)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Block and Unblock to SGSN Timer
+ Remark:Block and Unblock Time Interval to SGSN."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.1.9
+ keepAliveToSGSNTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..3600)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Keep Alive to SGSN Timer
+ Remark:Keep Alive Time Interval to SGSN."
+ ::= { system 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.1.10
+ resetToSGSNRetries OBJECT-TYPE
+ SYNTAX INTEGER (0..3600)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Reset to SGSN Retries
+ Remark:Reset Retry to SGSN."
+ ::= { system 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.1.11
+ blockUnblockToSGSNRetries OBJECT-TYPE
+ SYNTAX INTEGER (0..3600)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Block and Unblock to SGSN Retries
+ Remark:Block and Unblock Retry to SGSN."
+ ::= { system 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.1.12
+ keepAliveToSGSNRetries OBJECT-TYPE
+ SYNTAX INTEGER (0..3600)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Keep Alive to SGSN Retries
+ Remark:Keep Alive Retry to SGSN."
+ ::= { system 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.1.13
+ defaultMocnSgsnId OBJECT-TYPE
+ SYNTAX INTEGER (0..7)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:default MOCN SGSN Id
+ Remark:Used when MOCN only."
+ ::= { system 13 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2
+ bSS OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.1
+ bSSTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF BSSEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { bSS 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.1.1
+ bSSEntry OBJECT-TYPE
+ SYNTAX BSSEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { bssIndex }
+ ::= { bSSTable 1 }
+
+
+ BSSEntry ::=
+ SEQUENCE {
+ bssIndex
+ INTEGER,
+ bssTitle
+ OCTET STRING,
+ bssCreateTimeStamp
+ TimeStamp,
+ bssAdministrationState
+ AdminStateChoices,
+ bssSNSType
+ INTEGER,
+ bssNseiOneEntries
+ INTEGER,
+ bssCreateEntryNseiOne
+ INTEGER,
+ bssRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.1.1.1
+ bssIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:BSS ID
+ Remark:Index number of the virtual connection to BSS."
+ ::= { bSSEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.1.1.2
+ bssTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Name that identifies this virtual connection to BSS."
+ ::= { bSSEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.1.1.3
+ bssCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Reserved"
+ ::= { bSSEntry 3 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.1.1.4
+ bssAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the BSS virtual connection entry."
+ ::= { bSSEntry 4 }
+
+
+-- Dialing Prefix Set ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.1.1.5
+ bssSNSType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ ip(0),
+ frameRelay(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SNS Type
+ Remark:Specify the protocol type of subnetwork service (SNS) sub-layer."
+ ::= { bSSEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.1.1.6
+ bssNseiOneEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..1)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NSE Entries
+ Remark:Each BSS entry can create one Network Service Entity (NSE). NSE provides communication service between iGRS and BSS."
+ ::= { bSSEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.1.1.7
+ bssCreateEntryNseiOne OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { bSSEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.1.1.8
+ bssRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { bSSEntry 8 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.2
+ nSEIOneTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF NSEIOneEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2 Name:NSEI"
+ ::= { bSS 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.2.1
+ nSEIOneEntry OBJECT-TYPE
+ SYNTAX NSEIOneEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2 Name:NSEI"
+ INDEX { niBSSIndex, niIndex }
+ ::= { nSEIOneTable 1 }
+
+
+ NSEIOneEntry ::=
+ SEQUENCE {
+ niBSSIndex
+ INTEGER,
+ niIndex
+ INTEGER,
+ niTitle
+ OCTET STRING,
+ niAdministrationState
+ AdminStateChoices,
+ niNSEIValue
+ INTEGER,
+ niNsvciOneEntries
+ INTEGER,
+ niCreateEntryNsvciOne
+ INTEGER,
+ niRowStatus
+ RowStatus
+ }
+
+-- Route Selection RZS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.2.1.1
+ niBSSIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:BSS ID
+ Remark:(Read Only) Index number of the BSS virtual connection."
+ ::= { nSEIOneEntry 1 }
+
+
+-- Route Selection Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.2.1.2
+ niIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NSE ID
+ Remark:NSE index number reserved as 0."
+ ::= { nSEIOneEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.2.1.3
+ niTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NSE Title
+ Remark:NSE name for identification purpose only."
+ ::= { nSEIOneEntry 3 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.2.1.4
+ niAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed NSE."
+ ::= { nSEIOneEntry 4 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.2.1.5
+ niNSEIValue OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NSEI
+ Remark:Specify network service entity identifier (NSEI) to identify the NSE."
+ ::= { nSEIOneEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.2.1.6
+ niNsvciOneEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..2)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NSVC Entries
+ Remark:Each NSE entry can create two Network Service Virtual Connections (NSVC). NSVC is end-to-end virtual connection between the iGRS and the BSS."
+ ::= { nSEIOneEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.2.1.7
+ niCreateEntryNsvciOne OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { nSEIOneEntry 7 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.2.1.8
+ niRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { nSEIOneEntry 8 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3
+ nSVCIOneTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF NSVCIOneEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:3 Name:NSVCI"
+ ::= { bSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1
+ nSVCIOneEntry OBJECT-TYPE
+ SYNTAX NSVCIOneEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:3 Name:NSVCI"
+ INDEX { nsNseiBSSIndex, nsNseiIndex, nsIndex }
+ ::= { nSVCIOneTable 1 }
+
+
+ NSVCIOneEntry ::=
+ SEQUENCE {
+ nsNseiBSSIndex
+ INTEGER,
+ nsNseiIndex
+ INTEGER,
+ nsIndex
+ INTEGER,
+ nsTitle
+ OCTET STRING,
+ nsCreateTimeStamp
+ TimeStamp,
+ nsAdministrationState
+ AdminStateChoices,
+ nsBlockingStatus
+ INTEGER,
+ nsAliveStatus
+ INTEGER,
+ nsNSVCIValue
+ INTEGER,
+ nsLocalIP
+ IpAddress,
+ nsLocalPort
+ INTEGER,
+ nsPeerIP
+ IpAddress,
+ nsPeerPort
+ INTEGER,
+ nsResetCommand
+ INTEGER,
+ nsRowStatus
+ RowStatus
+ }
+
+-- Route Selection RZS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.1
+ nsNseiBSSIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Name:BSS ID
+ Remark:(Read Only) Index number of the BSS virtual connection."
+ ::= { nSVCIOneEntry 1 }
+
+
+-- Route Selection Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.2
+ nsNseiIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:NSE ID
+ Remark:(Read Only) Index number of the host NSE."
+ ::= { nSVCIOneEntry 2 }
+
+
+-- Route Selection Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.3
+ nsIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NSVC ID
+ Remark:NSVC index number ranges from 0 to 1."
+ ::= { nSVCIOneEntry 3 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.4
+ nsTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NSVC Title
+ Remark:NSVC name for identification purpose only."
+ ::= { nSVCIOneEntry 4 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.5
+ nsCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Reserved"
+ ::= { nSVCIOneEntry 5 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.6
+ nsAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed NSVC."
+ ::= { nSVCIOneEntry 6 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.7
+ nsBlockingStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ block(0),
+ unblock(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Blocking Status
+ Remark:(Read Only) The blocking status of the NSVC."
+ ::= { nSVCIOneEntry 7 }
+
+
+-- Trunk Group
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.8
+ nsAliveStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ non-alive(0),
+ alive(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Alive Status
+ Remark:(Read Only) The running status of the NEVC."
+ ::= { nSVCIOneEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.9
+ nsNSVCIValue OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NSVCI
+ Remark:Specify network service virtual connection identifier (NSVCI) to identify the NSVC."
+ ::= { nSVCIOneEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.10
+ nsLocalIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Local IP
+ Remark:IP address of the iGRS."
+ ::= { nSVCIOneEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.11
+ nsLocalPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Local Port
+ Remark:iGRS transmission port for the virtual connection to BSS."
+ ::= { nSVCIOneEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.12
+ nsPeerIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Peer IP
+ Remark:IP address of the BSS."
+ ::= { nSVCIOneEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.13
+ nsPeerPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Peer Port
+ Remark:BSS transmission port for the virtual connection to iGRS."
+ ::= { nSVCIOneEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.14
+ nsResetCommand OBJECT-TYPE
+ SYNTAX INTEGER { reset(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { nSVCIOneEntry 14 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.2.3.1.15
+ nsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { nSVCIOneEntry 15 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3
+ sGSN OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.1
+ sGSNTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SGSNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sGSN 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.1.1
+ sGSNEntry OBJECT-TYPE
+ SYNTAX SGSNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { sgIndex }
+ ::= { sGSNTable 1 }
+
+
+ SGSNEntry ::=
+ SEQUENCE {
+ sgIndex
+ INTEGER,
+ sgTitle
+ OCTET STRING,
+ sgCreateTimeStamp
+ TimeStamp,
+ sgAdministrationState
+ AdminStateChoices,
+ sgSNSType
+ INTEGER,
+ sgMocnSgsnMcc
+ OCTET STRING,
+ sgMocnSgsnMnc
+ OCTET STRING,
+ sgMocnSgsnLac
+ INTEGER,
+ sgNseiTwoEntries
+ INTEGER,
+ sgCreateEntryNseiTwo
+ INTEGER,
+ sgRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.1.1.1
+ sgIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..7)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SGSN ID
+ Remark:Index number of the virtual connection to SGSN."
+ ::= { sGSNEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.1.1.2
+ sgTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Name that identifies this virtual connection to SGSN."
+ ::= { sGSNEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.1.1.3
+ sgCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Reserved"
+ ::= { sGSNEntry 3 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.1.1.4
+ sgAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the SGSN virtual connection entry."
+ ::= { sGSNEntry 4 }
+
+
+-- Dialing Prefix Set ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.1.1.5
+ sgSNSType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ ip(0),
+ frameRelay(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SNS Type
+ Remark:Specify the protocol type of subnetwork service (SNS) sub-layer."
+ ::= { sGSNEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.1.1.6
+ sgMocnSgsnMcc OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MOCN SGSN MCC
+ Remark:used for MOCN only. "
+ ::= { sGSNEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.1.1.7
+ sgMocnSgsnMnc OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (2..3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MOCN SGSN MNC
+ Remark:used for MOCN only. "
+ ::= { sGSNEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.1.1.8
+ sgMocnSgsnLac OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MOCN SGSN LAC
+ Remark:used for MOCN only. "
+ ::= { sGSNEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.1.1.18
+ sgNseiTwoEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NSE Entries
+ Remark:Each SGSN entry can create 256 Network Service Entities (NSE). NSE provides communication service between iGRS and SGSN."
+ ::= { sGSNEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.1.1.19
+ sgCreateEntryNseiTwo OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sGSNEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.1.1.20
+ sgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sGSNEntry 20 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.2
+ nSEITwoTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF NSEITwoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2 Name:NSEI"
+ ::= { sGSN 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.2.1
+ nSEITwoEntry OBJECT-TYPE
+ SYNTAX NSEITwoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2 Name:NSEI"
+ INDEX { ntSGSNIndex, ntIndex }
+ ::= { nSEITwoTable 1 }
+
+
+ NSEITwoEntry ::=
+ SEQUENCE {
+ ntSGSNIndex
+ INTEGER,
+ ntIndex
+ INTEGER,
+ ntTitle
+ OCTET STRING,
+ ntAdministrationState
+ AdminStateChoices,
+ ntNSEIValue
+ INTEGER,
+ ntNsvciTwoEntries
+ INTEGER,
+ ntCreateEntryNsvciTwo
+ INTEGER,
+ ntRowStatus
+ RowStatus
+ }
+
+-- Route Selection RZS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.2.1.1
+ ntSGSNIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:SGSN ID
+ Remark:(Read Only) Index number of the SGSN virtual connection."
+ ::= { nSEITwoEntry 1 }
+
+
+-- Route Selection Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.2.1.2
+ ntIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NSE ID
+ Remark:NSE index number ranges from 0 to 255."
+ ::= { nSEITwoEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.2.1.3
+ ntTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NSE Title
+ Remark:NSE name for identification purpose only."
+ ::= { nSEITwoEntry 3 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.2.1.4
+ ntAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed NSE."
+ ::= { nSEITwoEntry 4 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.2.1.5
+ ntNSEIValue OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NSEI
+ Remark:Specify network service entity identifier (NSEI) to identify the NSE."
+ ::= { nSEITwoEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.2.1.6
+ ntNsvciTwoEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..2)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NSVC Entries
+ Remark:Each NSE entry can create two Network Service Virtual Connections (NSVC). NSVC is end-to-end virtual connection between the iGRS and the SGSN."
+ ::= { nSEITwoEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.2.1.7
+ ntCreateEntryNsvciTwo OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { nSEITwoEntry 7 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.2.1.8
+ ntRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { nSEITwoEntry 8 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3
+ nSVCITwoTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF NSVCITwoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:3 Name:NSVCI"
+ ::= { sGSN 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1
+ nSVCITwoEntry OBJECT-TYPE
+ SYNTAX NSVCITwoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:3 Name:NSVCI"
+ INDEX { nsNseiBSSIndex, nsNseiIndex, nsIndex }
+ ::= { nSVCITwoTable 1 }
+
+
+ NSVCITwoEntry ::=
+ SEQUENCE {
+ nnNseiSGSNIndex
+ INTEGER,
+ nnNseiIndex
+ INTEGER,
+ nnIndex
+ INTEGER,
+ nnTitle
+ OCTET STRING,
+ nnCreateTimeStamp
+ TimeStamp,
+ nnAdministrationState
+ AdminStateChoices,
+ nnBlockingStatus
+ INTEGER,
+ nnAliveStatus
+ INTEGER,
+ nnNSVCIValue
+ INTEGER,
+ nnLocalIP
+ IpAddress,
+ nnLocalPort
+ INTEGER,
+ nnPeerIP
+ IpAddress,
+ nnPeerPort
+ INTEGER,
+ nnResetCommand
+ INTEGER,
+ nnRowStatus
+ RowStatus
+ }
+
+-- Route Selection RZS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.1
+ nnNseiSGSNIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:SGSN ID
+ Remark:(Read Only) Index number of the SGSN virtual connection."
+ ::= { nSVCITwoEntry 1 }
+
+
+-- Route Selection Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.2
+ nnNseiIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:BSS ID
+ Remark:(Read Only) Index number of the host NSE."
+ ::= { nSVCITwoEntry 2 }
+
+
+-- Route Selection Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.3
+ nnIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..2)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NSVC ID
+ Remark:NSVC index number ranges from 0 to 1."
+ ::= { nSVCITwoEntry 3 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.4
+ nnTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NSVC Title
+ Remark:NSVC name for identification purpose only."
+ ::= { nSVCITwoEntry 4 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.5
+ nnCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Reserved"
+ ::= { nSVCITwoEntry 5 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.6
+ nnAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed NSVC."
+ ::= { nSVCITwoEntry 6 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.7
+ nnBlockingStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ block(0),
+ unblock(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Blocking Status
+ Remark:(Read Only) The blocking status of the NSVC."
+ ::= { nSVCITwoEntry 7 }
+
+
+-- Trunk Group
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.8
+ nnAliveStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ non-alive(0),
+ alive(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Alive Status
+ Remark:(Read Only) The running status of the NEVC."
+ ::= { nSVCITwoEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.9
+ nnNSVCIValue OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NSVCI
+ Remark:Specify network service virtual connection identifier (NSVCI) to identify the NSVC."
+ ::= { nSVCITwoEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.10
+ nnLocalIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Local IP
+ Remark:IP address of the iGRS."
+ ::= { nSVCITwoEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.11
+ nnLocalPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Local Port
+ Remark:iGRS transmission port for the virtual connection to SGSN."
+ ::= { nSVCITwoEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.12
+ nnPeerIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Peer IP
+ Remark:IP address of the SGSN."
+ ::= { nSVCITwoEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.13
+ nnPeerPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Peer Port
+ Remark:SGSN transmission port for the virtual connection to iGRS."
+ ::= { nSVCITwoEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.14
+ nnResetCommand OBJECT-TYPE
+ SYNTAX INTEGER { reset(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { nSVCITwoEntry 14 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.3.3.1.15
+ nnRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { nSVCITwoEntry 15 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4
+ routeArea OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.1
+ routeAreaTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RouteAreaEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { routeArea 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.1.1
+ routeAreaEntry OBJECT-TYPE
+ SYNTAX RouteAreaEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { raIndex }
+ ::= { routeAreaTable 1 }
+
+
+ RouteAreaEntry ::=
+ SEQUENCE {
+ raIndex
+ INTEGER,
+ raTitle
+ OCTET STRING,
+ raMCC
+ OCTET STRING,
+ raMNC
+ OCTET STRING,
+ raLAC
+ OCTET STRING,
+ raRAC
+ OCTET STRING,
+ raAdministrationState
+ AdminStateChoices,
+ raRouteType
+ INTEGER,
+ raUserTypeEntries
+ INTEGER,
+ raBvciMappingEntries
+ INTEGER,
+ raCreateEntryBvciMapping
+ INTEGER,
+ raRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.1.1.1
+ raIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1023)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Routing area index number ranges from 0 to 1023."
+ ::= { routeAreaEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.1.1.2
+ raTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Routing area name for identification purpose only."
+ ::= { routeAreaEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.1.1.3
+ raMCC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..6))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MCC
+ Remark:Mobile Country Code"
+ ::= { routeAreaEntry 3 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.1.1.4
+ raMNC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..6))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MNC
+ Remark:Mobile Network Code"
+ ::= { routeAreaEntry 4 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.1.1.5
+ raLAC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..15))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:LAC
+ Remark:Location Area Code"
+ ::= { routeAreaEntry 5 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.1.1.6
+ raRAC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..6))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:RAC
+ Remark:The Routing Area Code identifies a routing area within the specific location area."
+ ::= { routeAreaEntry 6 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.1.1.7
+ raAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed routing area."
+ ::= { routeAreaEntry 7 }
+
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.1.1.8
+ raRouteType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ routeByUserType(0),
+ routeByIMSIPrefix(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Route Option
+ Remark:Route by User Type or IMSI Prefix."
+ ::= { routeAreaEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.1.1.9
+ raUserTypeEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..3)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Routing Table
+ Remark:Specify SGSN routing to three types of iPALIM users."
+ ::= { routeAreaEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.1.1.10
+ raBvciMappingEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:BVC Mapping Entries
+ Remark:Each BSS routing area entry can create 16 BSSGP Virtual Connections (BVC) to SGSN.
BVC is end-to-end virtual connection between the BSS and the SGSN at BSSGP layer."
+ ::= { routeAreaEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.1.1.11
+ raCreateEntryBvciMapping OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { routeAreaEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.1.1.12
+ raRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { routeAreaEntry 12 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.2
+ userTypeTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF UserTypeEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { routeArea 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.2.1
+ userTypeEntry OBJECT-TYPE
+ SYNTAX UserTypeEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { ntSGSNIndex, ntIndex }
+ ::= { userTypeTable 1 }
+
+
+ UserTypeEntry ::=
+ SEQUENCE {
+ utRoutingAreaIndex
+ INTEGER,
+ utIndex
+ INTEGER,
+ utUserTitle
+ OCTET STRING,
+ utAdministrationState
+ AdminStateChoices,
+ utSGSNID
+ INTEGER,
+ utSGSNID1
+ Integer32,
+ utAPNReplaceFlag
+ INTEGER,
+ utAPN
+ OCTET STRING
+ }
+
+-- Route Selection RZS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.2.1.1
+ utRoutingAreaIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Routing Area ID
+ Remark:(Read Only) Index number of the routing area."
+ ::= { userTypeEntry 1 }
+
+
+-- Route Selection Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.2.1.2
+ utIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:(Read Only) Index number for sorting."
+ ::= { userTypeEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.2.1.3
+ utUserTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:User Type
+ Remark:(Read Only) iPALIM user type."
+ ::= { userTypeEntry 3 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.2.1.4
+ utAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed entry."
+ ::= { userTypeEntry 4 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.2.1.5
+ utSGSNID OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SGSN ID
+ Remark:Specify ID of the serving SGSN virtual connection.
Range = 0 - 7"
+ ::= { userTypeEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.2.1.6
+ utSGSNID1 OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { userTypeEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.2.1.7
+ utAPNReplaceFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:APN Replace Flag
+ Remark:Enable or disable replace the current access point name."
+ ::= { userTypeEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.2.1.8
+ utAPN OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:APN
+ Remark:Specify the modified APN if the upper replace flag is enabled."
+ ::= { userTypeEntry 8 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.3
+ bVCIMappingTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF BVCIMappingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { routeArea 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.3.1
+ bVCIMappingEntry OBJECT-TYPE
+ SYNTAX BVCIMappingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { lrIndex, lrRoutingAreaIndex }
+ ::= { bVCIMappingTable 1 }
+
+
+ BVCIMappingEntry ::=
+ SEQUENCE {
+ lrRoutingAreaIndex
+ INTEGER,
+ lrIndex
+ INTEGER,
+ lrNSEIValue
+ INTEGER,
+ lrBVCIValue
+ INTEGER,
+ lrAdministrationState
+ AdminStateChoices,
+ lrRowStatus
+ RowStatus
+ }
+
+-- Route Selection RZS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.3.1.1
+ lrRoutingAreaIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Routing Area ID
+ Remark:(Read Only) Index number of the routing area."
+ ::= { bVCIMappingEntry 1 }
+
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.3.1.2
+ lrIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1023)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:BVC index number ranges from 0 to 15."
+ ::= { bVCIMappingEntry 2 }
+
+
+-- Dialing Prefix Set ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.3.1.3
+ lrNSEIValue OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NSEI
+ Remark:Specify network service entity identifier (NSEI) to identify the NSE."
+ ::= { bVCIMappingEntry 3 }
+
+
+-- Dialing Prefix Set ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.3.1.4
+ lrBVCIValue OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:BVCI
+ Remark:Specify BSSGP virtual connection identifier (BVCI) to identify the BVC."
+ ::= { bVCIMappingEntry 4 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.3.1.5
+ lrAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed BVC."
+ ::= { bVCIMappingEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.4.3.1.6
+ lrRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { bVCIMappingEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.5
+ mocnControl OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.5.1
+ mocnControlTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MocnControlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mocnControl 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.5.1.1
+ mocnControlEntry OBJECT-TYPE
+ SYNTAX MocnControlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { rbiIndex }
+ ::= { mocnControlTable 1 }
+
+
+ MocnControlEntry ::=
+ SEQUENCE {
+ rbiIndex
+ INTEGER,
+ rbiIMSIPrefix
+ OCTET STRING,
+ rbiSGSNID
+ Opaque,
+ rbiAdministrationState
+ AdminStateChoices,
+ rbiRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.5.1.1.1
+ rbiIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..511)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 0 to 511."
+ ::= { mocnControlEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.5.1.1.2
+ rbiIMSIPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..15))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:IMSI Prefix."
+ ::= { mocnControlEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.5.1.1.3
+ rbiSGSNID OBJECT-TYPE
+ SYNTAX Opaque (SIZE (1))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Name:SGSN ID
+ OPAQUE DECODE RULE:
+ [unit]SGSN-0[u]00.0-00.0[u]select
+ [v]0[opt]Blocked
+ [v]1[opt]Non Blocked
+ [unit]SGSN-1[u]00.1-00.1[u]select
+ [v]0[opt]Blocked
+ [v]1[opt]Non Blocked
+ [unit]SGSN-2[u]00.2-00.2[u]select
+ [v]0[opt]Blocked
+ [v]1[opt]Non Blocked
+ [unit]SGSN-3[u]00.3-00.3[u]select
+ [v]0[opt]Blocked
+ [v]1[opt]Non Blocked
+ [unit]SGSN-4[u]00.4-00.4[u]select
+ [v]0[opt]Blocked
+ [v]1[opt]Non Blocked
+ [unit]SGSN-5[u]00.5-00.5[u]select
+ [v]0[opt]Blocked
+ [v]1[opt]Non Blocked
+ [unit]SGSN-6[u]00.6-00.6[u]select
+ [v]0[opt]Blocked
+ [v]1[opt]Non Blocked
+ [unit]SGSN-7[u]00.7-00.7[u]select
+ [v]0[opt]Blocked
+ [v]1[opt]Non Blocked
+ [remark]
+ SGSN ID."
+ ::= { mocnControlEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.5.1.1.4
+ rbiAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed entry."
+ ::= { mocnControlEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.5.1.1.10
+ rbiRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mocnControlEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6
+ mocnCellMapping OBJECT IDENTIFIER ::= { parameter 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6.1
+ cellMappingTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF CellMappingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mocnCellMapping 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6.1.1
+ cellMappingEntry OBJECT-TYPE
+ SYNTAX CellMappingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { cellMappingIndex }
+ ::= { cellMappingTable 1 }
+
+
+ CellMappingEntry ::=
+ SEQUENCE {
+ cellMappingIndex
+ INTEGER,
+ cellMappingTitle
+ OCTET STRING,
+ cellMappingLacSGSN0
+ INTEGER,
+ cellMappingCellIdSGSN0
+ INTEGER,
+ cellMappingRacSGSN0
+ INTEGER,
+ cellMappingLacSGSN1
+ INTEGER,
+ cellMappingCellIdSGSN1
+ INTEGER,
+ cellMappingRacSGSN1
+ INTEGER,
+ cellMappingLacSGSN2
+ INTEGER,
+ cellMappingCellIdSGSN2
+ INTEGER,
+ cellMappingRacSGSN2
+ INTEGER,
+ cellMappingRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6.1.1.1
+ cellMappingIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:BSS ID
+ Remark:Index number of the virtual connection to BSS."
+ ::= { cellMappingEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6.1.1.2
+ cellMappingTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Name that identifies this virtual connection to BSS."
+ ::= { cellMappingEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6.1.1.3
+ cellMappingLacSGSN0 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SGSN 0 Lac"
+ ::= { cellMappingEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6.1.1.4
+ cellMappingCellIdSGSN0 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SGSN 0 Cell Id"
+ ::= { cellMappingEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6.1.1.5
+ cellMappingRacSGSN0 OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SGSN 0 Rac"
+ ::= { cellMappingEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6.1.1.6
+ cellMappingLacSGSN1 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SGSN 1 Lac"
+ ::= { cellMappingEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6.1.1.7
+ cellMappingCellIdSGSN1 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SGSN 1 Cell Id"
+ ::= { cellMappingEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6.1.1.8
+ cellMappingRacSGSN1 OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SGSN 1 Rac"
+ ::= { cellMappingEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6.1.1.9
+ cellMappingLacSGSN2 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SGSN 2 Lac"
+ ::= { cellMappingEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6.1.1.10
+ cellMappingCellIdSGSN2 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SGSN 2 Cell Id"
+ ::= { cellMappingEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6.1.1.11
+ cellMappingRacSGSN2 OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SGSN 2 Rac"
+ ::= { cellMappingEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.2.6.1.1.30
+ cellMappingRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cellMappingEntry 30 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.3
+ csta OBJECT IDENTIFIER ::= { grs 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.3.1
+ toBSSTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ToBSSEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.3.1.1
+ toBSSEntry OBJECT-TYPE
+ SYNTAX ToBSSEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { toBSSBSSID, toBSSTimeIndex }
+ ::= { toBSSTable 1 }
+
+
+ ToBSSEntry ::=
+ SEQUENCE {
+ toBSSBSSID
+ Integer32,
+ toBSSTimeIndex
+ Integer32,
+ toBSSData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.3.1.1.1
+ toBSSBSSID OBJECT-TYPE
+ SYNTAX Integer32 (0..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { toBSSEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.3.1.1.2
+ toBSSTimeIndex OBJECT-TYPE
+ SYNTAX Integer32 (0..95)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { toBSSEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.3.1.1.3
+ toBSSData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { toBSSEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.3.2
+ toSGSNTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ToSGSNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.3.2.1
+ toSGSNEntry OBJECT-TYPE
+ SYNTAX ToSGSNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { toSGSNSGSNID, toSGSNTimeIndex }
+ ::= { toSGSNTable 1 }
+
+
+ ToSGSNEntry ::=
+ SEQUENCE {
+ toSGSNSGSNID
+ Integer32,
+ toSGSNTimeIndex
+ Integer32,
+ toSGSNData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.3.2.1.1
+ toSGSNSGSNID OBJECT-TYPE
+ SYNTAX Integer32 (0..7)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { toSGSNEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.3.2.1.2
+ toSGSNTimeIndex OBJECT-TYPE
+ SYNTAX Integer32 (0..95)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { toSGSNEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.16.3.2.1.3
+ toSGSNData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { toSGSNEntry 3 }
+
+
+
+ END
+
+--
+-- LGC-SS-GRS-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-GbC-MIB.my b/omc/bin/mib/LGC-SS-GbC-MIB.my
new file mode 100644
index 0000000..c32415d
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-GbC-MIB.my
@@ -0,0 +1,287 @@
+--
+-- LGC-SS-GbC-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Monday, September 13, 2010 at 16:05:01
+--
+
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Friday, March 12, 2010 at 14:15:06
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, March 11, 2010 at 10:05:09
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, March 11, 2010 at 10:04:10
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Wednesday, March 10, 2010 at 14:44:19
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Wednesday, March 10, 2010 at 11:35:26
+--
+
+ LGC-SS-GbC-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString
+ FROM LGC-MIB
+ IpAddress, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.19
+ gbc MODULE-IDENTITY
+ LAST-UPDATED "201003101054Z" -- March 10, 2010 at 10:54 GMT
+ ORGANIZATION
+ "altobridge"
+ CONTACT-INFO
+ "Contact-info."
+ DESCRIPTION
+ "Description."
+ REVISION "201003101055Z" -- March 10, 2010 at 10:55 GMT
+ DESCRIPTION
+ "1st Version"
+ ::= { application 19 }
+
+
+
+
+--
+-- Node definitions
+--
+
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+ -- 1.3.6.1.4.1.1373.2.3.3.19.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gbc 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+ -- 1.3.6.1.4.1.1373.2.3.3.19.2
+ parameter OBJECT IDENTIFIER ::= { gbc 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.19.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.19.2.1.1
+ localIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Local IP
+ Remark:Specify the IP address of the target Gb converter."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.19.2.1.2
+ netMask OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Netmask
+ Remark:A netmask is a 32-bit mask used to divide an IP address into subnets and specify the networks available hosts."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.19.2.1.3
+ gateway OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Gateway
+ Remark:Specify the IP address of the gateway used to pass traffic from Gb converter to other subnets."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.19.2.1.4
+ systemID OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:System ID
+ Remark:Specify the system ID of the target Gb converter."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.19.2.1.5
+ subSystemID OBJECT-TYPE
+ SYNTAX INTEGER (0..7)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Sub-System ID
+ Remark:Specify the subsystem ID of the target Gb converter."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.19.2.1.6
+ peerIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Peer IP
+ Remark:Specify the IP address of the connecting SGSN."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.19.2.1.7
+ peerPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Peer Port
+ Remark:Specify the transmission port of the connecting SGSN."
+ ::= { system 7 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.19.2.1.8
+ receiveChannelSelect OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Rx Channel Selection
+ Remark:Select up to 31 channels for receiving packets.
The four dotted decimal numbers can be transferred into 32-digit binary numbers, each of the right-to-left 31 bits represents a physical channel.
- 0 = Disable
- 1 = Enable"
+ ::= { system 8 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.19.2.1.9
+ transmitChannelSelect OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Tx Channel Selection
+ Remark:Select up to 31 channels for transmitting packets.
The four dotted decimal numbers can be transferred into 32-digit binary numbers, each of the right-to-left 31 bits represents a physical channel.
- 0 = Disable
- 1 = Enable"
+ ::= { system 9 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.19.2.1.10
+ portType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ t1(0),
+ e1(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Port Type
+ Remark:Specify the type of the Gb converter physical interface."
+ ::= { system 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.19.2.1.11
+ crc4Switch OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ closed(0),
+ open(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CRC4 Flag
+ Remark:Enable or disable Cyclic Redundancy Check on the Gb converter physical interface."
+ ::= { system 11 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.19.2.1.12
+ rebootCommand OBJECT-TYPE
+ SYNTAX INTEGER { reboot(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 12 }
+
+
+
+ END
+
+--
+-- LGC-SS-GbC-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-HLR-MIB.my b/omc/bin/mib/LGC-SS-HLR-MIB.my
new file mode 100644
index 0000000..30cdd7f
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-HLR-MIB.my
@@ -0,0 +1,7454 @@
+--
+-- LGC-SS-HLR-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Monday, September 13, 2010 at 17:22:53
+--
+
+ LGC-SS-HLR-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, RowStatus
+ FROM LGC-MIB
+ Opaque, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3
+ hlr MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 3 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2
+ parameter OBJECT IDENTIFIER ::= { hlr 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.1
+ cC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CC
+ Remark:Country Code"
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.2
+ nDC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..6))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NDC
+ Remark:National Destination Code"
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.3
+ startSN OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..12))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SN Start
+ Remark:The beginning of the VLR SN range."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.4
+ endSN OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..12))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SN End
+ Remark:The end of the VLR SN range."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.5
+ maxLicenses OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Max License
+ Remark:(Read Only) The maximum subscriber capacity of HLR determined by License Control."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.6
+ usedLicenses OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Used License
+ Remark:(Read Only) The number of registered HLR subscribers."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.7
+ provisionedSubs OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Provisioned Users
+ Remark:(Read Only) The number of service enabled HLR subscribers."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.8
+ registeredSubs OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Registered Users
+ Remark:(Read Only) The number of registered (both service enabled and disabled) HLR subscribers."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.9
+ roamingSubs OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Roaming Users
+ Remark:(Read Only) The number of provisioned HLR subscribers currently roaming to VPLMNs."
+ ::= { system 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.10
+ softwareVersion OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Software Version
+ Remark:(Read Only) Version of HLR software."
+ ::= { system 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.11
+ dataVersion OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Data Version
+ Remark:(Read Only) Version of HLR subscriber data structure."
+ ::= { system 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.12
+ cDRFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CDR Flag
+ Remark:Enable or disable CDR generation of HLR."
+ ::= { system 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.13
+ reloadState OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ idle(0),
+ reload(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Reload State
+ Remark:Select reload to load backup HLR subscriber data from HLR server hard disk."
+ ::= { system 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.14
+ saveParamCommand OBJECT-TYPE
+ SYNTAX INTEGER { saveParameter(1) }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Save the HLR parameters residing in memory to harddisk."
+ ::= { system 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.15
+ saveDataCommand OBJECT-TYPE
+ SYNTAX INTEGER { saveData(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Save the HLR subscriber data to both HLR
harddisk and EMS database."
+ ::= { system 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.16
+ saveUSSDParamCommand OBJECT-TYPE
+ SYNTAX INTEGER { saveUSSDParam(1) }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Save the USSD parameters residing
in memory to harddisk."
+ ::= { system 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.17
+ resetUSSDParamCommand OBJECT-TYPE
+ SYNTAX INTEGER { resetUSSDParam(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Reload and activate all USSD
parameters to default values."
+ ::= { system 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.1.18
+ importSubs OBJECT-TYPE
+ SYNTAX Opaque (SIZE (7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes
+ OPAQUE DECODE RULE:
+ [unit]Command[u]00.0-00.7[u]select
+ [v]0[opt]Idle
+ [v]1[opt]Sending Command
+ [v]2[opt]In Processing
+ [v]3[opt]Succeeded
+ [v]4[opt]Failed
+ [unit]Total Numbers[u]01.0-03.7[u]input
+ [v]toDec-high-0
+ [unit]Success Numbers[u]04.0-06.7[u]input
+ [v]toDec-high-0"
+ ::= { system 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.2
+ vPLMN OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.2.1
+ vPLMNTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF VPLMNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { vPLMN 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.2.1.1
+ vPLMNEntry OBJECT-TYPE
+ SYNTAX VPLMNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { vplmnIndex }
+ ::= { vPLMNTable 1 }
+
+
+ VPLMNEntry ::=
+ SEQUENCE {
+ vplmnIndex
+ INTEGER,
+ vplmnCC
+ OCTET STRING,
+ vplmnNDC
+ OCTET STRING,
+ vplmnStartSN
+ OCTET STRING,
+ vplmnEndSN
+ OCTET STRING,
+ vplmnRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.2.1.1.1
+ vplmnIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:VPLMN index number ranges from 0 to 255."
+ ::= { vPLMNEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.2.1.1.2
+ vplmnCC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CC
+ Remark:The Country Code of the VPLMN."
+ ::= { vPLMNEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.2.1.1.3
+ vplmnNDC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..6))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NDC
+ Remark:The National Destination Code of the VPLMN."
+ ::= { vPLMNEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.2.1.1.4
+ vplmnStartSN OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..12))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SN Start
+ Remark:The beginning of the VLR range in the VPLMN."
+ ::= { vPLMNEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.2.1.1.5
+ vplmnEndSN OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..12))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SN End
+ Remark:The end of the VLR range in the VPLMN."
+ ::= { vPLMNEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.2.1.1.6
+ vplmnRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { vPLMNEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.3
+ cSRRList OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.3.1
+ cSRR0 OBJECT-TYPE
+ SYNTAX Opaque (SIZE (32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]VPLMN0[u]00.0-00.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN1[u]00.1-00.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN2[u]00.2-00.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN3[u]00.3-00.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN4[u]00.4-00.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN5[u]00.5-00.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN6[u]00.6-00.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN7[u]00.7-00.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN8[u]01.0-01.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN9[u]01.1-01.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN10[u]01.2-01.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN11[u]01.3-01.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN12[u]01.4-01.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN13[u]01.5-01.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN14[u]01.6-01.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN15[u]01.7-01.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN16[u]02.0-02.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN17[u]02.1-02.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN18[u]02.2-02.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN19[u]02.3-02.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN20[u]02.4-02.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN21[u]02.5-02.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN22[u]02.6-02.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN23[u]02.7-02.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN24[u]03.0-03.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN25[u]03.1-03.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN26[u]03.2-03.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN27[u]03.3-03.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN28[u]03.4-03.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN29[u]03.5-03.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN30[u]03.6-03.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN31[u]03.7-03.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN32[u]04.0-04.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN33[u]04.1-04.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN34[u]04.2-04.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN35[u]04.3-04.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN36[u]04.4-04.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN37[u]04.5-04.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN38[u]04.6-04.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN39[u]04.7-04.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN40[u]05.0-05.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN41[u]05.1-05.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN42[u]05.2-05.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN43[u]05.3-05.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN44[u]05.4-05.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN45[u]05.5-05.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN46[u]05.6-05.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN47[u]05.7-05.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN48[u]06.0-06.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN49[u]06.1-06.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN50[u]06.2-06.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN51[u]06.3-06.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN52[u]06.4-06.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN53[u]06.5-06.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN54[u]06.6-06.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN55[u]06.7-06.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN56[u]07.0-07.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN57[u]07.1-07.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN58[u]07.2-07.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN59[u]07.3-07.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN60[u]07.4-07.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN61[u]07.5-07.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN62[u]07.6-07.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN63[u]07.7-07.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN64[u]08.0-08.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN65[u]08.1-08.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN66[u]08.2-08.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN67[u]08.3-08.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN68[u]08.4-08.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN69[u]08.5-08.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN70[u]08.6-08.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN71[u]08.7-08.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN72[u]09.0-09.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN73[u]09.1-09.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN74[u]09.2-09.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN75[u]09.3-09.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN76[u]09.4-09.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN77[u]09.5-09.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN78[u]09.6-09.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN79[u]09.7-09.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN80[u]10.0-10.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN81[u]10.1-10.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN82[u]10.2-10.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN83[u]10.3-10.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN84[u]10.4-10.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN85[u]10.5-10.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN86[u]10.6-10.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN87[u]10.7-10.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN88[u]11.0-11.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN89[u]11.1-11.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN90[u]11.2-11.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN91[u]11.3-11.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN92[u]11.4-11.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN93[u]11.5-11.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN94[u]11.6-11.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN95[u]11.7-11.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN96[u]12.0-12.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN97[u]12.1-12.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN98[u]12.2-12.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN99[u]12.3-12.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN100[u]12.4-12.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN101[u]12.5-12.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN102[u]12.6-12.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN103[u]12.7-12.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN104[u]13.0-13.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN105[u]13.1-13.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN106[u]13.2-13.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN107[u]13.3-13.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN108[u]13.4-13.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN109[u]13.5-13.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN110[u]13.6-13.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN111[u]13.7-13.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN112[u]14.0-14.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN113[u]14.1-14.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN114[u]14.2-14.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN115[u]14.3-14.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN116[u]14.4-14.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN117[u]14.5-14.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN118[u]14.6-14.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN119[u]14.7-14.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN120[u]15.0-15.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN121[u]15.1-15.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN122[u]15.2-15.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN123[u]15.3-15.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN124[u]15.4-15.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN125[u]15.5-15.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN126[u]15.6-15.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN127[u]15.7-15.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN128[u]16.0-16.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN129[u]16.1-16.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN130[u]16.2-16.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN131[u]16.3-16.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN132[u]16.4-16.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN133[u]16.5-16.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN134[u]16.6-16.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN135[u]16.7-16.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN136[u]17.0-17.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN137[u]17.1-17.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN138[u]17.2-17.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN139[u]17.3-17.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN140[u]17.4-17.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN141[u]17.5-17.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN142[u]17.6-17.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN143[u]17.7-17.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN144[u]18.0-18.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN145[u]18.1-18.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN146[u]18.2-18.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN147[u]18.3-18.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN148[u]18.4-18.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN149[u]18.5-18.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN150[u]18.6-18.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN151[u]18.7-18.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN152[u]19.0-19.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN153[u]19.1-19.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN154[u]19.2-19.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN155[u]19.3-19.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN156[u]19.4-19.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN157[u]19.5-19.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN158[u]19.6-19.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN159[u]19.7-19.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN160[u]20.0-20.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN161[u]20.1-20.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN162[u]20.2-20.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN163[u]20.3-20.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN164[u]20.4-20.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN165[u]20.5-20.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN166[u]20.6-20.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN167[u]20.7-20.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN168[u]21.0-21.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN169[u]21.1-21.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN170[u]21.2-21.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN171[u]21.3-21.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN172[u]21.4-21.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN173[u]21.5-21.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN174[u]21.6-21.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN175[u]21.7-21.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN176[u]22.0-22.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN177[u]22.1-22.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN178[u]22.2-22.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN179[u]22.3-22.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN180[u]22.4-22.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN181[u]22.5-22.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN182[u]22.6-22.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN183[u]22.7-22.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN184[u]23.0-23.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN185[u]23.1-23.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN186[u]23.2-23.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN187[u]23.3-23.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN188[u]23.4-23.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN189[u]23.5-23.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN190[u]23.6-23.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN191[u]23.7-23.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN192[u]24.0-24.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN193[u]24.1-24.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN194[u]24.2-24.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN195[u]24.3-24.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN196[u]24.4-24.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN197[u]24.5-24.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN198[u]24.6-24.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN199[u]24.7-24.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN200[u]25.0-25.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN201[u]25.1-25.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN202[u]25.2-25.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN203[u]25.3-25.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN204[u]25.4-25.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN205[u]25.5-25.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN206[u]25.6-25.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN207[u]25.7-25.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN208[u]26.0-26.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN209[u]26.1-26.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN210[u]26.2-26.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN211[u]26.3-26.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN212[u]26.4-26.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN213[u]26.5-26.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN214[u]26.6-26.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN215[u]26.7-26.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN216[u]27.0-27.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN217[u]27.1-27.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN218[u]27.2-27.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN219[u]27.3-27.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN220[u]27.4-27.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN221[u]27.5-27.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN222[u]27.6-27.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN223[u]27.7-27.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN224[u]28.0-28.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN225[u]28.1-28.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN226[u]28.2-28.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN227[u]28.3-28.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN228[u]28.4-28.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN229[u]28.5-28.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN230[u]28.6-28.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN231[u]28.7-28.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN232[u]29.0-29.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN233[u]29.1-29.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN234[u]29.2-29.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN235[u]29.3-29.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN236[u]29.4-29.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN237[u]29.5-29.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN238[u]29.6-29.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN239[u]29.7-29.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN240[u]30.0-30.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN241[u]30.1-30.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN242[u]30.2-30.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN243[u]30.3-30.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN244[u]30.4-30.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN245[u]30.5-30.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN246[u]30.6-30.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN247[u]30.7-30.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN248[u]31.0-31.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN249[u]31.1-31.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN250[u]31.2-31.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN251[u]31.3-31.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN252[u]31.4-31.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN253[u]31.5-31.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN254[u]31.6-31.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN255[u]31.7-31.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [remark]
Define CSRR 0(country specific roaming restriction) lists to confine the roaming range of a subscriber.
The CSRR list defines the roaming restriction for 256 VPLMN ranges.
"
+ ::= { cSRRList 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.3.2
+ cSRR1 OBJECT-TYPE
+ SYNTAX Opaque (SIZE (32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]VPLMN0[u]00.0-00.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN1[u]00.1-00.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN2[u]00.2-00.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN3[u]00.3-00.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN4[u]00.4-00.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN5[u]00.5-00.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN6[u]00.6-00.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN7[u]00.7-00.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN8[u]01.0-01.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN9[u]01.1-01.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN10[u]01.2-01.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN11[u]01.3-01.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN12[u]01.4-01.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN13[u]01.5-01.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN14[u]01.6-01.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN15[u]01.7-01.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN16[u]02.0-02.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN17[u]02.1-02.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN18[u]02.2-02.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN19[u]02.3-02.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN20[u]02.4-02.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN21[u]02.5-02.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN22[u]02.6-02.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN23[u]02.7-02.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN24[u]03.0-03.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN25[u]03.1-03.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN26[u]03.2-03.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN27[u]03.3-03.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN28[u]03.4-03.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN29[u]03.5-03.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN30[u]03.6-03.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN31[u]03.7-03.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN32[u]04.0-04.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN33[u]04.1-04.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN34[u]04.2-04.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN35[u]04.3-04.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN36[u]04.4-04.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN37[u]04.5-04.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN38[u]04.6-04.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN39[u]04.7-04.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN40[u]05.0-05.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN41[u]05.1-05.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN42[u]05.2-05.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN43[u]05.3-05.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN44[u]05.4-05.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN45[u]05.5-05.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN46[u]05.6-05.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN47[u]05.7-05.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN48[u]06.0-06.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN49[u]06.1-06.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN50[u]06.2-06.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN51[u]06.3-06.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN52[u]06.4-06.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN53[u]06.5-06.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN54[u]06.6-06.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN55[u]06.7-06.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN56[u]07.0-07.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN57[u]07.1-07.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN58[u]07.2-07.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN59[u]07.3-07.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN60[u]07.4-07.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN61[u]07.5-07.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN62[u]07.6-07.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN63[u]07.7-07.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN64[u]08.0-08.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN65[u]08.1-08.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN66[u]08.2-08.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN67[u]08.3-08.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN68[u]08.4-08.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN69[u]08.5-08.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN70[u]08.6-08.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN71[u]08.7-08.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN72[u]09.0-09.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN73[u]09.1-09.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN74[u]09.2-09.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN75[u]09.3-09.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN76[u]09.4-09.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN77[u]09.5-09.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN78[u]09.6-09.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN79[u]09.7-09.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN80[u]10.0-10.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN81[u]10.1-10.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN82[u]10.2-10.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN83[u]10.3-10.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN84[u]10.4-10.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN85[u]10.5-10.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN86[u]10.6-10.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN87[u]10.7-10.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN88[u]11.0-11.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN89[u]11.1-11.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN90[u]11.2-11.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN91[u]11.3-11.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN92[u]11.4-11.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN93[u]11.5-11.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN94[u]11.6-11.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN95[u]11.7-11.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN96[u]12.0-12.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN97[u]12.1-12.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN98[u]12.2-12.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN99[u]12.3-12.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN100[u]12.4-12.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN101[u]12.5-12.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN102[u]12.6-12.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN103[u]12.7-12.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN104[u]13.0-13.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN105[u]13.1-13.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN106[u]13.2-13.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN107[u]13.3-13.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN108[u]13.4-13.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN109[u]13.5-13.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN110[u]13.6-13.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN111[u]13.7-13.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN112[u]14.0-14.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN113[u]14.1-14.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN114[u]14.2-14.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN115[u]14.3-14.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN116[u]14.4-14.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN117[u]14.5-14.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN118[u]14.6-14.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN119[u]14.7-14.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN120[u]15.0-15.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN121[u]15.1-15.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN122[u]15.2-15.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN123[u]15.3-15.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN124[u]15.4-15.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN125[u]15.5-15.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN126[u]15.6-15.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN127[u]15.7-15.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN128[u]16.0-16.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN129[u]16.1-16.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN130[u]16.2-16.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN131[u]16.3-16.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN132[u]16.4-16.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN133[u]16.5-16.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN134[u]16.6-16.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN135[u]16.7-16.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN136[u]17.0-17.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN137[u]17.1-17.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN138[u]17.2-17.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN139[u]17.3-17.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN140[u]17.4-17.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN141[u]17.5-17.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN142[u]17.6-17.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN143[u]17.7-17.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN144[u]18.0-18.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN145[u]18.1-18.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN146[u]18.2-18.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN147[u]18.3-18.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN148[u]18.4-18.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN149[u]18.5-18.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN150[u]18.6-18.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN151[u]18.7-18.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN152[u]19.0-19.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN153[u]19.1-19.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN154[u]19.2-19.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN155[u]19.3-19.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN156[u]19.4-19.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN157[u]19.5-19.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN158[u]19.6-19.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN159[u]19.7-19.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN160[u]20.0-20.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN161[u]20.1-20.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN162[u]20.2-20.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN163[u]20.3-20.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN164[u]20.4-20.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN165[u]20.5-20.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN166[u]20.6-20.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN167[u]20.7-20.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN168[u]21.0-21.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN169[u]21.1-21.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN170[u]21.2-21.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN171[u]21.3-21.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN172[u]21.4-21.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN173[u]21.5-21.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN174[u]21.6-21.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN175[u]21.7-21.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN176[u]22.0-22.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN177[u]22.1-22.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN178[u]22.2-22.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN179[u]22.3-22.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN180[u]22.4-22.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN181[u]22.5-22.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN182[u]22.6-22.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN183[u]22.7-22.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN184[u]23.0-23.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN185[u]23.1-23.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN186[u]23.2-23.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN187[u]23.3-23.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN188[u]23.4-23.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN189[u]23.5-23.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN190[u]23.6-23.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN191[u]23.7-23.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN192[u]24.0-24.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN193[u]24.1-24.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN194[u]24.2-24.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN195[u]24.3-24.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN196[u]24.4-24.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN197[u]24.5-24.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN198[u]24.6-24.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN199[u]24.7-24.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN200[u]25.0-25.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN201[u]25.1-25.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN202[u]25.2-25.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN203[u]25.3-25.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN204[u]25.4-25.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN205[u]25.5-25.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN206[u]25.6-25.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN207[u]25.7-25.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN208[u]26.0-26.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN209[u]26.1-26.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN210[u]26.2-26.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN211[u]26.3-26.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN212[u]26.4-26.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN213[u]26.5-26.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN214[u]26.6-26.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN215[u]26.7-26.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN216[u]27.0-27.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN217[u]27.1-27.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN218[u]27.2-27.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN219[u]27.3-27.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN220[u]27.4-27.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN221[u]27.5-27.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN222[u]27.6-27.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN223[u]27.7-27.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN224[u]28.0-28.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN225[u]28.1-28.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN226[u]28.2-28.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN227[u]28.3-28.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN228[u]28.4-28.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN229[u]28.5-28.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN230[u]28.6-28.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN231[u]28.7-28.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN232[u]29.0-29.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN233[u]29.1-29.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN234[u]29.2-29.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN235[u]29.3-29.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN236[u]29.4-29.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN237[u]29.5-29.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN238[u]29.6-29.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN239[u]29.7-29.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN240[u]30.0-30.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN241[u]30.1-30.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN242[u]30.2-30.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN243[u]30.3-30.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN244[u]30.4-30.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN245[u]30.5-30.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN246[u]30.6-30.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN247[u]30.7-30.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN248[u]31.0-31.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN249[u]31.1-31.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN250[u]31.2-31.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN251[u]31.3-31.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN252[u]31.4-31.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN253[u]31.5-31.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN254[u]31.6-31.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN255[u]31.7-31.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [remark]
Define CSRR 1(country specific roaming restriction) lists to confine the roaming range of a subscriber.
The CSRR list defines the roaming restriction for 256 VPLMN ranges.
"
+ ::= { cSRRList 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.3.3
+ cSRR2 OBJECT-TYPE
+ SYNTAX Opaque (SIZE (32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]VPLMN0[u]00.0-00.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN1[u]00.1-00.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN2[u]00.2-00.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN3[u]00.3-00.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN4[u]00.4-00.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN5[u]00.5-00.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN6[u]00.6-00.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN7[u]00.7-00.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN8[u]01.0-01.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN9[u]01.1-01.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN10[u]01.2-01.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN11[u]01.3-01.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN12[u]01.4-01.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN13[u]01.5-01.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN14[u]01.6-01.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN15[u]01.7-01.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN16[u]02.0-02.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN17[u]02.1-02.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN18[u]02.2-02.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN19[u]02.3-02.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN20[u]02.4-02.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN21[u]02.5-02.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN22[u]02.6-02.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN23[u]02.7-02.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN24[u]03.0-03.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN25[u]03.1-03.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN26[u]03.2-03.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN27[u]03.3-03.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN28[u]03.4-03.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN29[u]03.5-03.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN30[u]03.6-03.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN31[u]03.7-03.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN32[u]04.0-04.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN33[u]04.1-04.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN34[u]04.2-04.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN35[u]04.3-04.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN36[u]04.4-04.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN37[u]04.5-04.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN38[u]04.6-04.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN39[u]04.7-04.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN40[u]05.0-05.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN41[u]05.1-05.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN42[u]05.2-05.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN43[u]05.3-05.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN44[u]05.4-05.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN45[u]05.5-05.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN46[u]05.6-05.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN47[u]05.7-05.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN48[u]06.0-06.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN49[u]06.1-06.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN50[u]06.2-06.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN51[u]06.3-06.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN52[u]06.4-06.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN53[u]06.5-06.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN54[u]06.6-06.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN55[u]06.7-06.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN56[u]07.0-07.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN57[u]07.1-07.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN58[u]07.2-07.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN59[u]07.3-07.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN60[u]07.4-07.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN61[u]07.5-07.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN62[u]07.6-07.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN63[u]07.7-07.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN64[u]08.0-08.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN65[u]08.1-08.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN66[u]08.2-08.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN67[u]08.3-08.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN68[u]08.4-08.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN69[u]08.5-08.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN70[u]08.6-08.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN71[u]08.7-08.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN72[u]09.0-09.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN73[u]09.1-09.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN74[u]09.2-09.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN75[u]09.3-09.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN76[u]09.4-09.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN77[u]09.5-09.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN78[u]09.6-09.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN79[u]09.7-09.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN80[u]10.0-10.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN81[u]10.1-10.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN82[u]10.2-10.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN83[u]10.3-10.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN84[u]10.4-10.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN85[u]10.5-10.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN86[u]10.6-10.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN87[u]10.7-10.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN88[u]11.0-11.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN89[u]11.1-11.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN90[u]11.2-11.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN91[u]11.3-11.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN92[u]11.4-11.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN93[u]11.5-11.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN94[u]11.6-11.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN95[u]11.7-11.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN96[u]12.0-12.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN97[u]12.1-12.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN98[u]12.2-12.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN99[u]12.3-12.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN100[u]12.4-12.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN101[u]12.5-12.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN102[u]12.6-12.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN103[u]12.7-12.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN104[u]13.0-13.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN105[u]13.1-13.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN106[u]13.2-13.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN107[u]13.3-13.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN108[u]13.4-13.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN109[u]13.5-13.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN110[u]13.6-13.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN111[u]13.7-13.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN112[u]14.0-14.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN113[u]14.1-14.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN114[u]14.2-14.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN115[u]14.3-14.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN116[u]14.4-14.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN117[u]14.5-14.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN118[u]14.6-14.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN119[u]14.7-14.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN120[u]15.0-15.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN121[u]15.1-15.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN122[u]15.2-15.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN123[u]15.3-15.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN124[u]15.4-15.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN125[u]15.5-15.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN126[u]15.6-15.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN127[u]15.7-15.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN128[u]16.0-16.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN129[u]16.1-16.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN130[u]16.2-16.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN131[u]16.3-16.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN132[u]16.4-16.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN133[u]16.5-16.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN134[u]16.6-16.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN135[u]16.7-16.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN136[u]17.0-17.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN137[u]17.1-17.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN138[u]17.2-17.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN139[u]17.3-17.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN140[u]17.4-17.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN141[u]17.5-17.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN142[u]17.6-17.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN143[u]17.7-17.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN144[u]18.0-18.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN145[u]18.1-18.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN146[u]18.2-18.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN147[u]18.3-18.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN148[u]18.4-18.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN149[u]18.5-18.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN150[u]18.6-18.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN151[u]18.7-18.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN152[u]19.0-19.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN153[u]19.1-19.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN154[u]19.2-19.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN155[u]19.3-19.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN156[u]19.4-19.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN157[u]19.5-19.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN158[u]19.6-19.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN159[u]19.7-19.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN160[u]20.0-20.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN161[u]20.1-20.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN162[u]20.2-20.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN163[u]20.3-20.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN164[u]20.4-20.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN165[u]20.5-20.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN166[u]20.6-20.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN167[u]20.7-20.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN168[u]21.0-21.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN169[u]21.1-21.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN170[u]21.2-21.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN171[u]21.3-21.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN172[u]21.4-21.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN173[u]21.5-21.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN174[u]21.6-21.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN175[u]21.7-21.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN176[u]22.0-22.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN177[u]22.1-22.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN178[u]22.2-22.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN179[u]22.3-22.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN180[u]22.4-22.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN181[u]22.5-22.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN182[u]22.6-22.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN183[u]22.7-22.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN184[u]23.0-23.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN185[u]23.1-23.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN186[u]23.2-23.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN187[u]23.3-23.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN188[u]23.4-23.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN189[u]23.5-23.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN190[u]23.6-23.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN191[u]23.7-23.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN192[u]24.0-24.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN193[u]24.1-24.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN194[u]24.2-24.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN195[u]24.3-24.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN196[u]24.4-24.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN197[u]24.5-24.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN198[u]24.6-24.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN199[u]24.7-24.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN200[u]25.0-25.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN201[u]25.1-25.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN202[u]25.2-25.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN203[u]25.3-25.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN204[u]25.4-25.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN205[u]25.5-25.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN206[u]25.6-25.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN207[u]25.7-25.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN208[u]26.0-26.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN209[u]26.1-26.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN210[u]26.2-26.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN211[u]26.3-26.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN212[u]26.4-26.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN213[u]26.5-26.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN214[u]26.6-26.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN215[u]26.7-26.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN216[u]27.0-27.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN217[u]27.1-27.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN218[u]27.2-27.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN219[u]27.3-27.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN220[u]27.4-27.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN221[u]27.5-27.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN222[u]27.6-27.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN223[u]27.7-27.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN224[u]28.0-28.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN225[u]28.1-28.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN226[u]28.2-28.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN227[u]28.3-28.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN228[u]28.4-28.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN229[u]28.5-28.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN230[u]28.6-28.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN231[u]28.7-28.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN232[u]29.0-29.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN233[u]29.1-29.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN234[u]29.2-29.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN235[u]29.3-29.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN236[u]29.4-29.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN237[u]29.5-29.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN238[u]29.6-29.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN239[u]29.7-29.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN240[u]30.0-30.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN241[u]30.1-30.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN242[u]30.2-30.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN243[u]30.3-30.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN244[u]30.4-30.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN245[u]30.5-30.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN246[u]30.6-30.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN247[u]30.7-30.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN248[u]31.0-31.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN249[u]31.1-31.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN250[u]31.2-31.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN251[u]31.3-31.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN252[u]31.4-31.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN253[u]31.5-31.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN254[u]31.6-31.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN255[u]31.7-31.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [remark]
Define CSRR 2(country specific roaming restriction) lists to confine the roaming range of a subscriber.
The CSRR list defines the roaming restriction for 256 VPLMN ranges.
"
+ ::= { cSRRList 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.3.4
+ cSRR3 OBJECT-TYPE
+ SYNTAX Opaque (SIZE (32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]VPLMN0[u]00.0-00.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN1[u]00.1-00.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN2[u]00.2-00.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN3[u]00.3-00.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN4[u]00.4-00.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN5[u]00.5-00.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN6[u]00.6-00.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN7[u]00.7-00.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN8[u]01.0-01.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN9[u]01.1-01.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN10[u]01.2-01.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN11[u]01.3-01.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN12[u]01.4-01.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN13[u]01.5-01.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN14[u]01.6-01.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN15[u]01.7-01.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN16[u]02.0-02.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN17[u]02.1-02.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN18[u]02.2-02.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN19[u]02.3-02.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN20[u]02.4-02.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN21[u]02.5-02.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN22[u]02.6-02.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN23[u]02.7-02.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN24[u]03.0-03.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN25[u]03.1-03.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN26[u]03.2-03.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN27[u]03.3-03.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN28[u]03.4-03.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN29[u]03.5-03.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN30[u]03.6-03.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN31[u]03.7-03.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN32[u]04.0-04.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN33[u]04.1-04.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN34[u]04.2-04.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN35[u]04.3-04.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN36[u]04.4-04.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN37[u]04.5-04.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN38[u]04.6-04.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN39[u]04.7-04.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN40[u]05.0-05.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN41[u]05.1-05.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN42[u]05.2-05.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN43[u]05.3-05.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN44[u]05.4-05.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN45[u]05.5-05.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN46[u]05.6-05.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN47[u]05.7-05.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN48[u]06.0-06.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN49[u]06.1-06.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN50[u]06.2-06.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN51[u]06.3-06.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN52[u]06.4-06.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN53[u]06.5-06.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN54[u]06.6-06.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN55[u]06.7-06.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN56[u]07.0-07.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN57[u]07.1-07.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN58[u]07.2-07.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN59[u]07.3-07.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN60[u]07.4-07.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN61[u]07.5-07.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN62[u]07.6-07.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN63[u]07.7-07.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN64[u]08.0-08.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN65[u]08.1-08.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN66[u]08.2-08.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN67[u]08.3-08.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN68[u]08.4-08.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN69[u]08.5-08.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN70[u]08.6-08.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN71[u]08.7-08.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN72[u]09.0-09.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN73[u]09.1-09.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN74[u]09.2-09.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN75[u]09.3-09.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN76[u]09.4-09.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN77[u]09.5-09.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN78[u]09.6-09.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN79[u]09.7-09.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN80[u]10.0-10.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN81[u]10.1-10.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN82[u]10.2-10.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN83[u]10.3-10.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN84[u]10.4-10.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN85[u]10.5-10.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN86[u]10.6-10.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN87[u]10.7-10.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN88[u]11.0-11.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN89[u]11.1-11.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN90[u]11.2-11.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN91[u]11.3-11.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN92[u]11.4-11.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN93[u]11.5-11.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN94[u]11.6-11.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN95[u]11.7-11.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN96[u]12.0-12.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN97[u]12.1-12.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN98[u]12.2-12.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN99[u]12.3-12.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN100[u]12.4-12.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN101[u]12.5-12.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN102[u]12.6-12.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN103[u]12.7-12.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN104[u]13.0-13.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN105[u]13.1-13.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN106[u]13.2-13.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN107[u]13.3-13.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN108[u]13.4-13.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN109[u]13.5-13.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN110[u]13.6-13.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN111[u]13.7-13.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN112[u]14.0-14.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN113[u]14.1-14.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN114[u]14.2-14.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN115[u]14.3-14.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN116[u]14.4-14.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN117[u]14.5-14.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN118[u]14.6-14.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN119[u]14.7-14.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN120[u]15.0-15.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN121[u]15.1-15.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN122[u]15.2-15.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN123[u]15.3-15.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN124[u]15.4-15.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN125[u]15.5-15.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN126[u]15.6-15.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN127[u]15.7-15.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN128[u]16.0-16.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN129[u]16.1-16.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN130[u]16.2-16.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN131[u]16.3-16.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN132[u]16.4-16.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN133[u]16.5-16.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN134[u]16.6-16.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN135[u]16.7-16.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN136[u]17.0-17.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN137[u]17.1-17.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN138[u]17.2-17.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN139[u]17.3-17.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN140[u]17.4-17.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN141[u]17.5-17.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN142[u]17.6-17.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN143[u]17.7-17.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN144[u]18.0-18.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN145[u]18.1-18.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN146[u]18.2-18.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN147[u]18.3-18.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN148[u]18.4-18.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN149[u]18.5-18.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN150[u]18.6-18.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN151[u]18.7-18.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN152[u]19.0-19.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN153[u]19.1-19.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN154[u]19.2-19.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN155[u]19.3-19.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN156[u]19.4-19.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN157[u]19.5-19.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN158[u]19.6-19.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN159[u]19.7-19.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN160[u]20.0-20.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN161[u]20.1-20.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN162[u]20.2-20.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN163[u]20.3-20.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN164[u]20.4-20.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN165[u]20.5-20.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN166[u]20.6-20.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN167[u]20.7-20.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN168[u]21.0-21.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN169[u]21.1-21.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN170[u]21.2-21.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN171[u]21.3-21.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN172[u]21.4-21.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN173[u]21.5-21.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN174[u]21.6-21.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN175[u]21.7-21.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN176[u]22.0-22.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN177[u]22.1-22.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN178[u]22.2-22.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN179[u]22.3-22.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN180[u]22.4-22.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN181[u]22.5-22.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN182[u]22.6-22.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN183[u]22.7-22.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN184[u]23.0-23.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN185[u]23.1-23.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN186[u]23.2-23.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN187[u]23.3-23.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN188[u]23.4-23.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN189[u]23.5-23.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN190[u]23.6-23.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN191[u]23.7-23.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN192[u]24.0-24.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN193[u]24.1-24.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN194[u]24.2-24.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN195[u]24.3-24.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN196[u]24.4-24.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN197[u]24.5-24.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN198[u]24.6-24.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN199[u]24.7-24.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN200[u]25.0-25.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN201[u]25.1-25.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN202[u]25.2-25.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN203[u]25.3-25.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN204[u]25.4-25.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN205[u]25.5-25.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN206[u]25.6-25.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN207[u]25.7-25.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN208[u]26.0-26.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN209[u]26.1-26.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN210[u]26.2-26.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN211[u]26.3-26.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN212[u]26.4-26.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN213[u]26.5-26.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN214[u]26.6-26.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN215[u]26.7-26.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN216[u]27.0-27.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN217[u]27.1-27.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN218[u]27.2-27.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN219[u]27.3-27.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN220[u]27.4-27.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN221[u]27.5-27.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN222[u]27.6-27.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN223[u]27.7-27.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN224[u]28.0-28.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN225[u]28.1-28.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN226[u]28.2-28.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN227[u]28.3-28.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN228[u]28.4-28.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN229[u]28.5-28.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN230[u]28.6-28.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN231[u]28.7-28.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN232[u]29.0-29.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN233[u]29.1-29.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN234[u]29.2-29.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN235[u]29.3-29.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN236[u]29.4-29.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN237[u]29.5-29.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN238[u]29.6-29.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN239[u]29.7-29.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN240[u]30.0-30.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN241[u]30.1-30.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN242[u]30.2-30.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN243[u]30.3-30.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN244[u]30.4-30.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN245[u]30.5-30.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN246[u]30.6-30.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN247[u]30.7-30.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN248[u]31.0-31.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN249[u]31.1-31.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN250[u]31.2-31.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN251[u]31.3-31.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN252[u]31.4-31.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN253[u]31.5-31.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN254[u]31.6-31.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN255[u]31.7-31.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [remark]
Define CSRR 3(country specific roaming restriction) lists to confine the roaming range of a subscriber.
The CSRR list defines the roaming restriction for 256 VPLMN ranges.
"
+ ::= { cSRRList 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.3.5
+ cSRR4 OBJECT-TYPE
+ SYNTAX Opaque (SIZE (32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]VPLMN0[u]00.0-00.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN1[u]00.1-00.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN2[u]00.2-00.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN3[u]00.3-00.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN4[u]00.4-00.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN5[u]00.5-00.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN6[u]00.6-00.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN7[u]00.7-00.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN8[u]01.0-01.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN9[u]01.1-01.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN10[u]01.2-01.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN11[u]01.3-01.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN12[u]01.4-01.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN13[u]01.5-01.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN14[u]01.6-01.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN15[u]01.7-01.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN16[u]02.0-02.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN17[u]02.1-02.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN18[u]02.2-02.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN19[u]02.3-02.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN20[u]02.4-02.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN21[u]02.5-02.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN22[u]02.6-02.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN23[u]02.7-02.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN24[u]03.0-03.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN25[u]03.1-03.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN26[u]03.2-03.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN27[u]03.3-03.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN28[u]03.4-03.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN29[u]03.5-03.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN30[u]03.6-03.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN31[u]03.7-03.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN32[u]04.0-04.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN33[u]04.1-04.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN34[u]04.2-04.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN35[u]04.3-04.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN36[u]04.4-04.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN37[u]04.5-04.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN38[u]04.6-04.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN39[u]04.7-04.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN40[u]05.0-05.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN41[u]05.1-05.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN42[u]05.2-05.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN43[u]05.3-05.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN44[u]05.4-05.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN45[u]05.5-05.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN46[u]05.6-05.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN47[u]05.7-05.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN48[u]06.0-06.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN49[u]06.1-06.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN50[u]06.2-06.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN51[u]06.3-06.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN52[u]06.4-06.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN53[u]06.5-06.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN54[u]06.6-06.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN55[u]06.7-06.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN56[u]07.0-07.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN57[u]07.1-07.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN58[u]07.2-07.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN59[u]07.3-07.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN60[u]07.4-07.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN61[u]07.5-07.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN62[u]07.6-07.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN63[u]07.7-07.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN64[u]08.0-08.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN65[u]08.1-08.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN66[u]08.2-08.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN67[u]08.3-08.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN68[u]08.4-08.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN69[u]08.5-08.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN70[u]08.6-08.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN71[u]08.7-08.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN72[u]09.0-09.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN73[u]09.1-09.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN74[u]09.2-09.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN75[u]09.3-09.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN76[u]09.4-09.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN77[u]09.5-09.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN78[u]09.6-09.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN79[u]09.7-09.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN80[u]10.0-10.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN81[u]10.1-10.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN82[u]10.2-10.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN83[u]10.3-10.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN84[u]10.4-10.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN85[u]10.5-10.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN86[u]10.6-10.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN87[u]10.7-10.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN88[u]11.0-11.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN89[u]11.1-11.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN90[u]11.2-11.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN91[u]11.3-11.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN92[u]11.4-11.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN93[u]11.5-11.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN94[u]11.6-11.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN95[u]11.7-11.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN96[u]12.0-12.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN97[u]12.1-12.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN98[u]12.2-12.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN99[u]12.3-12.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN100[u]12.4-12.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN101[u]12.5-12.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN102[u]12.6-12.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN103[u]12.7-12.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN104[u]13.0-13.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN105[u]13.1-13.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN106[u]13.2-13.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN107[u]13.3-13.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN108[u]13.4-13.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN109[u]13.5-13.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN110[u]13.6-13.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN111[u]13.7-13.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN112[u]14.0-14.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN113[u]14.1-14.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN114[u]14.2-14.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN115[u]14.3-14.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN116[u]14.4-14.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN117[u]14.5-14.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN118[u]14.6-14.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN119[u]14.7-14.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN120[u]15.0-15.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN121[u]15.1-15.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN122[u]15.2-15.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN123[u]15.3-15.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN124[u]15.4-15.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN125[u]15.5-15.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN126[u]15.6-15.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN127[u]15.7-15.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN128[u]16.0-16.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN129[u]16.1-16.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN130[u]16.2-16.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN131[u]16.3-16.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN132[u]16.4-16.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN133[u]16.5-16.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN134[u]16.6-16.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN135[u]16.7-16.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN136[u]17.0-17.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN137[u]17.1-17.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN138[u]17.2-17.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN139[u]17.3-17.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN140[u]17.4-17.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN141[u]17.5-17.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN142[u]17.6-17.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN143[u]17.7-17.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN144[u]18.0-18.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN145[u]18.1-18.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN146[u]18.2-18.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN147[u]18.3-18.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN148[u]18.4-18.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN149[u]18.5-18.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN150[u]18.6-18.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN151[u]18.7-18.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN152[u]19.0-19.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN153[u]19.1-19.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN154[u]19.2-19.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN155[u]19.3-19.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN156[u]19.4-19.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN157[u]19.5-19.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN158[u]19.6-19.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN159[u]19.7-19.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN160[u]20.0-20.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN161[u]20.1-20.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN162[u]20.2-20.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN163[u]20.3-20.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN164[u]20.4-20.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN165[u]20.5-20.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN166[u]20.6-20.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN167[u]20.7-20.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN168[u]21.0-21.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN169[u]21.1-21.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN170[u]21.2-21.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN171[u]21.3-21.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN172[u]21.4-21.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN173[u]21.5-21.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN174[u]21.6-21.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN175[u]21.7-21.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN176[u]22.0-22.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN177[u]22.1-22.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN178[u]22.2-22.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN179[u]22.3-22.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN180[u]22.4-22.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN181[u]22.5-22.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN182[u]22.6-22.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN183[u]22.7-22.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN184[u]23.0-23.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN185[u]23.1-23.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN186[u]23.2-23.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN187[u]23.3-23.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN188[u]23.4-23.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN189[u]23.5-23.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN190[u]23.6-23.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN191[u]23.7-23.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN192[u]24.0-24.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN193[u]24.1-24.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN194[u]24.2-24.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN195[u]24.3-24.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN196[u]24.4-24.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN197[u]24.5-24.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN198[u]24.6-24.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN199[u]24.7-24.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN200[u]25.0-25.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN201[u]25.1-25.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN202[u]25.2-25.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN203[u]25.3-25.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN204[u]25.4-25.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN205[u]25.5-25.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN206[u]25.6-25.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN207[u]25.7-25.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN208[u]26.0-26.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN209[u]26.1-26.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN210[u]26.2-26.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN211[u]26.3-26.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN212[u]26.4-26.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN213[u]26.5-26.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN214[u]26.6-26.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN215[u]26.7-26.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN216[u]27.0-27.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN217[u]27.1-27.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN218[u]27.2-27.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN219[u]27.3-27.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN220[u]27.4-27.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN221[u]27.5-27.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN222[u]27.6-27.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN223[u]27.7-27.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN224[u]28.0-28.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN225[u]28.1-28.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN226[u]28.2-28.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN227[u]28.3-28.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN228[u]28.4-28.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN229[u]28.5-28.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN230[u]28.6-28.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN231[u]28.7-28.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN232[u]29.0-29.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN233[u]29.1-29.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN234[u]29.2-29.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN235[u]29.3-29.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN236[u]29.4-29.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN237[u]29.5-29.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN238[u]29.6-29.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN239[u]29.7-29.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN240[u]30.0-30.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN241[u]30.1-30.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN242[u]30.2-30.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN243[u]30.3-30.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN244[u]30.4-30.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN245[u]30.5-30.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN246[u]30.6-30.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN247[u]30.7-30.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN248[u]31.0-31.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN249[u]31.1-31.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN250[u]31.2-31.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN251[u]31.3-31.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN252[u]31.4-31.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN253[u]31.5-31.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN254[u]31.6-31.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN255[u]31.7-31.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [remark]
Define CSRR 4(country specific roaming restriction) lists to confine the roaming range of a subscriber.
The CSRR list defines the roaming restriction for 256 VPLMN ranges.
"
+ ::= { cSRRList 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.3.6
+ cSRR5 OBJECT-TYPE
+ SYNTAX Opaque (SIZE (32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]VPLMN0[u]00.0-00.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN1[u]00.1-00.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN2[u]00.2-00.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN3[u]00.3-00.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN4[u]00.4-00.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN5[u]00.5-00.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN6[u]00.6-00.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN7[u]00.7-00.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN8[u]01.0-01.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN9[u]01.1-01.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN10[u]01.2-01.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN11[u]01.3-01.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN12[u]01.4-01.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN13[u]01.5-01.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN14[u]01.6-01.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN15[u]01.7-01.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN16[u]02.0-02.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN17[u]02.1-02.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN18[u]02.2-02.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN19[u]02.3-02.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN20[u]02.4-02.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN21[u]02.5-02.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN22[u]02.6-02.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN23[u]02.7-02.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN24[u]03.0-03.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN25[u]03.1-03.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN26[u]03.2-03.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN27[u]03.3-03.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN28[u]03.4-03.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN29[u]03.5-03.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN30[u]03.6-03.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN31[u]03.7-03.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN32[u]04.0-04.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN33[u]04.1-04.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN34[u]04.2-04.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN35[u]04.3-04.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN36[u]04.4-04.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN37[u]04.5-04.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN38[u]04.6-04.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN39[u]04.7-04.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN40[u]05.0-05.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN41[u]05.1-05.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN42[u]05.2-05.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN43[u]05.3-05.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN44[u]05.4-05.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN45[u]05.5-05.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN46[u]05.6-05.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN47[u]05.7-05.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN48[u]06.0-06.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN49[u]06.1-06.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN50[u]06.2-06.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN51[u]06.3-06.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN52[u]06.4-06.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN53[u]06.5-06.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN54[u]06.6-06.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN55[u]06.7-06.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN56[u]07.0-07.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN57[u]07.1-07.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN58[u]07.2-07.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN59[u]07.3-07.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN60[u]07.4-07.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN61[u]07.5-07.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN62[u]07.6-07.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN63[u]07.7-07.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN64[u]08.0-08.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN65[u]08.1-08.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN66[u]08.2-08.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN67[u]08.3-08.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN68[u]08.4-08.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN69[u]08.5-08.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN70[u]08.6-08.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN71[u]08.7-08.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN72[u]09.0-09.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN73[u]09.1-09.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN74[u]09.2-09.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN75[u]09.3-09.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN76[u]09.4-09.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN77[u]09.5-09.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN78[u]09.6-09.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN79[u]09.7-09.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN80[u]10.0-10.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN81[u]10.1-10.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN82[u]10.2-10.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN83[u]10.3-10.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN84[u]10.4-10.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN85[u]10.5-10.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN86[u]10.6-10.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN87[u]10.7-10.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN88[u]11.0-11.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN89[u]11.1-11.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN90[u]11.2-11.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN91[u]11.3-11.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN92[u]11.4-11.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN93[u]11.5-11.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN94[u]11.6-11.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN95[u]11.7-11.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN96[u]12.0-12.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN97[u]12.1-12.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN98[u]12.2-12.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN99[u]12.3-12.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN100[u]12.4-12.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN101[u]12.5-12.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN102[u]12.6-12.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN103[u]12.7-12.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN104[u]13.0-13.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN105[u]13.1-13.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN106[u]13.2-13.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN107[u]13.3-13.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN108[u]13.4-13.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN109[u]13.5-13.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN110[u]13.6-13.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN111[u]13.7-13.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN112[u]14.0-14.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN113[u]14.1-14.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN114[u]14.2-14.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN115[u]14.3-14.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN116[u]14.4-14.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN117[u]14.5-14.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN118[u]14.6-14.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN119[u]14.7-14.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN120[u]15.0-15.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN121[u]15.1-15.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN122[u]15.2-15.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN123[u]15.3-15.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN124[u]15.4-15.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN125[u]15.5-15.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN126[u]15.6-15.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN127[u]15.7-15.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN128[u]16.0-16.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN129[u]16.1-16.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN130[u]16.2-16.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN131[u]16.3-16.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN132[u]16.4-16.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN133[u]16.5-16.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN134[u]16.6-16.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN135[u]16.7-16.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN136[u]17.0-17.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN137[u]17.1-17.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN138[u]17.2-17.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN139[u]17.3-17.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN140[u]17.4-17.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN141[u]17.5-17.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN142[u]17.6-17.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN143[u]17.7-17.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN144[u]18.0-18.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN145[u]18.1-18.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN146[u]18.2-18.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN147[u]18.3-18.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN148[u]18.4-18.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN149[u]18.5-18.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN150[u]18.6-18.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN151[u]18.7-18.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN152[u]19.0-19.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN153[u]19.1-19.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN154[u]19.2-19.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN155[u]19.3-19.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN156[u]19.4-19.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN157[u]19.5-19.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN158[u]19.6-19.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN159[u]19.7-19.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN160[u]20.0-20.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN161[u]20.1-20.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN162[u]20.2-20.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN163[u]20.3-20.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN164[u]20.4-20.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN165[u]20.5-20.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN166[u]20.6-20.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN167[u]20.7-20.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN168[u]21.0-21.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN169[u]21.1-21.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN170[u]21.2-21.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN171[u]21.3-21.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN172[u]21.4-21.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN173[u]21.5-21.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN174[u]21.6-21.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN175[u]21.7-21.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN176[u]22.0-22.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN177[u]22.1-22.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN178[u]22.2-22.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN179[u]22.3-22.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN180[u]22.4-22.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN181[u]22.5-22.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN182[u]22.6-22.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN183[u]22.7-22.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN184[u]23.0-23.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN185[u]23.1-23.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN186[u]23.2-23.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN187[u]23.3-23.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN188[u]23.4-23.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN189[u]23.5-23.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN190[u]23.6-23.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN191[u]23.7-23.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN192[u]24.0-24.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN193[u]24.1-24.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN194[u]24.2-24.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN195[u]24.3-24.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN196[u]24.4-24.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN197[u]24.5-24.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN198[u]24.6-24.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN199[u]24.7-24.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN200[u]25.0-25.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN201[u]25.1-25.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN202[u]25.2-25.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN203[u]25.3-25.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN204[u]25.4-25.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN205[u]25.5-25.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN206[u]25.6-25.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN207[u]25.7-25.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN208[u]26.0-26.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN209[u]26.1-26.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN210[u]26.2-26.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN211[u]26.3-26.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN212[u]26.4-26.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN213[u]26.5-26.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN214[u]26.6-26.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN215[u]26.7-26.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN216[u]27.0-27.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN217[u]27.1-27.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN218[u]27.2-27.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN219[u]27.3-27.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN220[u]27.4-27.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN221[u]27.5-27.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN222[u]27.6-27.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN223[u]27.7-27.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN224[u]28.0-28.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN225[u]28.1-28.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN226[u]28.2-28.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN227[u]28.3-28.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN228[u]28.4-28.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN229[u]28.5-28.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN230[u]28.6-28.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN231[u]28.7-28.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN232[u]29.0-29.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN233[u]29.1-29.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN234[u]29.2-29.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN235[u]29.3-29.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN236[u]29.4-29.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN237[u]29.5-29.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN238[u]29.6-29.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN239[u]29.7-29.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN240[u]30.0-30.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN241[u]30.1-30.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN242[u]30.2-30.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN243[u]30.3-30.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN244[u]30.4-30.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN245[u]30.5-30.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN246[u]30.6-30.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN247[u]30.7-30.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN248[u]31.0-31.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN249[u]31.1-31.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN250[u]31.2-31.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN251[u]31.3-31.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN252[u]31.4-31.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN253[u]31.5-31.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN254[u]31.6-31.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN255[u]31.7-31.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [remark]
Define CSRR 5(country specific roaming restriction) lists to confine the roaming range of a subscriber.
The CSRR list defines the roaming restriction for 256 VPLMN ranges.
"
+ ::= { cSRRList 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.3.7
+ cSRR6 OBJECT-TYPE
+ SYNTAX Opaque (SIZE (32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]VPLMN0[u]00.0-00.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN1[u]00.1-00.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN2[u]00.2-00.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN3[u]00.3-00.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN4[u]00.4-00.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN5[u]00.5-00.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN6[u]00.6-00.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN7[u]00.7-00.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN8[u]01.0-01.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN9[u]01.1-01.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN10[u]01.2-01.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN11[u]01.3-01.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN12[u]01.4-01.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN13[u]01.5-01.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN14[u]01.6-01.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN15[u]01.7-01.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN16[u]02.0-02.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN17[u]02.1-02.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN18[u]02.2-02.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN19[u]02.3-02.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN20[u]02.4-02.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN21[u]02.5-02.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN22[u]02.6-02.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN23[u]02.7-02.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN24[u]03.0-03.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN25[u]03.1-03.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN26[u]03.2-03.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN27[u]03.3-03.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN28[u]03.4-03.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN29[u]03.5-03.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN30[u]03.6-03.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN31[u]03.7-03.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN32[u]04.0-04.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN33[u]04.1-04.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN34[u]04.2-04.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN35[u]04.3-04.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN36[u]04.4-04.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN37[u]04.5-04.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN38[u]04.6-04.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN39[u]04.7-04.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN40[u]05.0-05.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN41[u]05.1-05.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN42[u]05.2-05.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN43[u]05.3-05.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN44[u]05.4-05.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN45[u]05.5-05.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN46[u]05.6-05.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN47[u]05.7-05.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN48[u]06.0-06.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN49[u]06.1-06.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN50[u]06.2-06.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN51[u]06.3-06.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN52[u]06.4-06.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN53[u]06.5-06.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN54[u]06.6-06.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN55[u]06.7-06.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN56[u]07.0-07.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN57[u]07.1-07.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN58[u]07.2-07.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN59[u]07.3-07.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN60[u]07.4-07.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN61[u]07.5-07.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN62[u]07.6-07.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN63[u]07.7-07.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN64[u]08.0-08.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN65[u]08.1-08.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN66[u]08.2-08.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN67[u]08.3-08.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN68[u]08.4-08.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN69[u]08.5-08.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN70[u]08.6-08.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN71[u]08.7-08.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN72[u]09.0-09.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN73[u]09.1-09.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN74[u]09.2-09.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN75[u]09.3-09.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN76[u]09.4-09.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN77[u]09.5-09.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN78[u]09.6-09.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN79[u]09.7-09.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN80[u]10.0-10.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN81[u]10.1-10.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN82[u]10.2-10.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN83[u]10.3-10.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN84[u]10.4-10.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN85[u]10.5-10.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN86[u]10.6-10.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN87[u]10.7-10.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN88[u]11.0-11.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN89[u]11.1-11.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN90[u]11.2-11.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN91[u]11.3-11.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN92[u]11.4-11.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN93[u]11.5-11.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN94[u]11.6-11.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN95[u]11.7-11.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN96[u]12.0-12.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN97[u]12.1-12.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN98[u]12.2-12.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN99[u]12.3-12.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN100[u]12.4-12.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN101[u]12.5-12.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN102[u]12.6-12.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN103[u]12.7-12.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN104[u]13.0-13.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN105[u]13.1-13.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN106[u]13.2-13.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN107[u]13.3-13.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN108[u]13.4-13.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN109[u]13.5-13.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN110[u]13.6-13.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN111[u]13.7-13.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN112[u]14.0-14.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN113[u]14.1-14.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN114[u]14.2-14.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN115[u]14.3-14.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN116[u]14.4-14.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN117[u]14.5-14.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN118[u]14.6-14.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN119[u]14.7-14.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN120[u]15.0-15.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN121[u]15.1-15.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN122[u]15.2-15.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN123[u]15.3-15.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN124[u]15.4-15.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN125[u]15.5-15.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN126[u]15.6-15.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN127[u]15.7-15.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN128[u]16.0-16.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN129[u]16.1-16.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN130[u]16.2-16.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN131[u]16.3-16.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN132[u]16.4-16.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN133[u]16.5-16.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN134[u]16.6-16.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN135[u]16.7-16.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN136[u]17.0-17.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN137[u]17.1-17.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN138[u]17.2-17.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN139[u]17.3-17.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN140[u]17.4-17.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN141[u]17.5-17.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN142[u]17.6-17.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN143[u]17.7-17.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN144[u]18.0-18.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN145[u]18.1-18.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN146[u]18.2-18.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN147[u]18.3-18.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN148[u]18.4-18.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN149[u]18.5-18.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN150[u]18.6-18.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN151[u]18.7-18.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN152[u]19.0-19.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN153[u]19.1-19.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN154[u]19.2-19.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN155[u]19.3-19.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN156[u]19.4-19.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN157[u]19.5-19.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN158[u]19.6-19.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN159[u]19.7-19.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN160[u]20.0-20.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN161[u]20.1-20.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN162[u]20.2-20.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN163[u]20.3-20.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN164[u]20.4-20.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN165[u]20.5-20.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN166[u]20.6-20.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN167[u]20.7-20.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN168[u]21.0-21.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN169[u]21.1-21.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN170[u]21.2-21.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN171[u]21.3-21.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN172[u]21.4-21.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN173[u]21.5-21.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN174[u]21.6-21.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN175[u]21.7-21.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN176[u]22.0-22.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN177[u]22.1-22.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN178[u]22.2-22.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN179[u]22.3-22.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN180[u]22.4-22.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN181[u]22.5-22.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN182[u]22.6-22.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN183[u]22.7-22.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN184[u]23.0-23.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN185[u]23.1-23.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN186[u]23.2-23.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN187[u]23.3-23.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN188[u]23.4-23.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN189[u]23.5-23.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN190[u]23.6-23.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN191[u]23.7-23.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN192[u]24.0-24.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN193[u]24.1-24.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN194[u]24.2-24.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN195[u]24.3-24.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN196[u]24.4-24.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN197[u]24.5-24.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN198[u]24.6-24.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN199[u]24.7-24.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN200[u]25.0-25.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN201[u]25.1-25.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN202[u]25.2-25.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN203[u]25.3-25.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN204[u]25.4-25.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN205[u]25.5-25.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN206[u]25.6-25.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN207[u]25.7-25.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN208[u]26.0-26.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN209[u]26.1-26.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN210[u]26.2-26.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN211[u]26.3-26.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN212[u]26.4-26.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN213[u]26.5-26.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN214[u]26.6-26.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN215[u]26.7-26.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN216[u]27.0-27.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN217[u]27.1-27.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN218[u]27.2-27.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN219[u]27.3-27.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN220[u]27.4-27.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN221[u]27.5-27.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN222[u]27.6-27.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN223[u]27.7-27.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN224[u]28.0-28.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN225[u]28.1-28.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN226[u]28.2-28.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN227[u]28.3-28.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN228[u]28.4-28.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN229[u]28.5-28.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN230[u]28.6-28.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN231[u]28.7-28.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN232[u]29.0-29.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN233[u]29.1-29.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN234[u]29.2-29.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN235[u]29.3-29.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN236[u]29.4-29.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN237[u]29.5-29.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN238[u]29.6-29.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN239[u]29.7-29.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN240[u]30.0-30.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN241[u]30.1-30.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN242[u]30.2-30.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN243[u]30.3-30.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN244[u]30.4-30.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN245[u]30.5-30.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN246[u]30.6-30.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN247[u]30.7-30.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN248[u]31.0-31.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN249[u]31.1-31.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN250[u]31.2-31.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN251[u]31.3-31.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN252[u]31.4-31.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN253[u]31.5-31.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN254[u]31.6-31.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN255[u]31.7-31.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [remark]
Define CSRR 6(country specific roaming restriction) lists to confine the roaming range of a subscriber.
The CSRR list defines the roaming restriction for 256 VPLMN ranges.
"
+ ::= { cSRRList 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.3.8
+ cSRR7 OBJECT-TYPE
+ SYNTAX Opaque (SIZE (32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]VPLMN0[u]00.0-00.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN1[u]00.1-00.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN2[u]00.2-00.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN3[u]00.3-00.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN4[u]00.4-00.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN5[u]00.5-00.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN6[u]00.6-00.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN7[u]00.7-00.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN8[u]01.0-01.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN9[u]01.1-01.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN10[u]01.2-01.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN11[u]01.3-01.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN12[u]01.4-01.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN13[u]01.5-01.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN14[u]01.6-01.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN15[u]01.7-01.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN16[u]02.0-02.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN17[u]02.1-02.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN18[u]02.2-02.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN19[u]02.3-02.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN20[u]02.4-02.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN21[u]02.5-02.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN22[u]02.6-02.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN23[u]02.7-02.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN24[u]03.0-03.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN25[u]03.1-03.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN26[u]03.2-03.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN27[u]03.3-03.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN28[u]03.4-03.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN29[u]03.5-03.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN30[u]03.6-03.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN31[u]03.7-03.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN32[u]04.0-04.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN33[u]04.1-04.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN34[u]04.2-04.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN35[u]04.3-04.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN36[u]04.4-04.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN37[u]04.5-04.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN38[u]04.6-04.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN39[u]04.7-04.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN40[u]05.0-05.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN41[u]05.1-05.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN42[u]05.2-05.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN43[u]05.3-05.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN44[u]05.4-05.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN45[u]05.5-05.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN46[u]05.6-05.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN47[u]05.7-05.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN48[u]06.0-06.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN49[u]06.1-06.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN50[u]06.2-06.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN51[u]06.3-06.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN52[u]06.4-06.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN53[u]06.5-06.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN54[u]06.6-06.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN55[u]06.7-06.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN56[u]07.0-07.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN57[u]07.1-07.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN58[u]07.2-07.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN59[u]07.3-07.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN60[u]07.4-07.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN61[u]07.5-07.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN62[u]07.6-07.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN63[u]07.7-07.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN64[u]08.0-08.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN65[u]08.1-08.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN66[u]08.2-08.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN67[u]08.3-08.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN68[u]08.4-08.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN69[u]08.5-08.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN70[u]08.6-08.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN71[u]08.7-08.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN72[u]09.0-09.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN73[u]09.1-09.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN74[u]09.2-09.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN75[u]09.3-09.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN76[u]09.4-09.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN77[u]09.5-09.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN78[u]09.6-09.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN79[u]09.7-09.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN80[u]10.0-10.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN81[u]10.1-10.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN82[u]10.2-10.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN83[u]10.3-10.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN84[u]10.4-10.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN85[u]10.5-10.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN86[u]10.6-10.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN87[u]10.7-10.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN88[u]11.0-11.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN89[u]11.1-11.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN90[u]11.2-11.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN91[u]11.3-11.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN92[u]11.4-11.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN93[u]11.5-11.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN94[u]11.6-11.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN95[u]11.7-11.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN96[u]12.0-12.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN97[u]12.1-12.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN98[u]12.2-12.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN99[u]12.3-12.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN100[u]12.4-12.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN101[u]12.5-12.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN102[u]12.6-12.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN103[u]12.7-12.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN104[u]13.0-13.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN105[u]13.1-13.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN106[u]13.2-13.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN107[u]13.3-13.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN108[u]13.4-13.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN109[u]13.5-13.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN110[u]13.6-13.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN111[u]13.7-13.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN112[u]14.0-14.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN113[u]14.1-14.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN114[u]14.2-14.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN115[u]14.3-14.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN116[u]14.4-14.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN117[u]14.5-14.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN118[u]14.6-14.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN119[u]14.7-14.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN120[u]15.0-15.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN121[u]15.1-15.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN122[u]15.2-15.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN123[u]15.3-15.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN124[u]15.4-15.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN125[u]15.5-15.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN126[u]15.6-15.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN127[u]15.7-15.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN128[u]16.0-16.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN129[u]16.1-16.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN130[u]16.2-16.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN131[u]16.3-16.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN132[u]16.4-16.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN133[u]16.5-16.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN134[u]16.6-16.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN135[u]16.7-16.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN136[u]17.0-17.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN137[u]17.1-17.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN138[u]17.2-17.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN139[u]17.3-17.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN140[u]17.4-17.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN141[u]17.5-17.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN142[u]17.6-17.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN143[u]17.7-17.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN144[u]18.0-18.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN145[u]18.1-18.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN146[u]18.2-18.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN147[u]18.3-18.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN148[u]18.4-18.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN149[u]18.5-18.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN150[u]18.6-18.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN151[u]18.7-18.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN152[u]19.0-19.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN153[u]19.1-19.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN154[u]19.2-19.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN155[u]19.3-19.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN156[u]19.4-19.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN157[u]19.5-19.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN158[u]19.6-19.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN159[u]19.7-19.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN160[u]20.0-20.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN161[u]20.1-20.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN162[u]20.2-20.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN163[u]20.3-20.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN164[u]20.4-20.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN165[u]20.5-20.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN166[u]20.6-20.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN167[u]20.7-20.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN168[u]21.0-21.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN169[u]21.1-21.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN170[u]21.2-21.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN171[u]21.3-21.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN172[u]21.4-21.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN173[u]21.5-21.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN174[u]21.6-21.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN175[u]21.7-21.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN176[u]22.0-22.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN177[u]22.1-22.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN178[u]22.2-22.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN179[u]22.3-22.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN180[u]22.4-22.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN181[u]22.5-22.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN182[u]22.6-22.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN183[u]22.7-22.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN184[u]23.0-23.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN185[u]23.1-23.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN186[u]23.2-23.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN187[u]23.3-23.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN188[u]23.4-23.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN189[u]23.5-23.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN190[u]23.6-23.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN191[u]23.7-23.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN192[u]24.0-24.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN193[u]24.1-24.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN194[u]24.2-24.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN195[u]24.3-24.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN196[u]24.4-24.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN197[u]24.5-24.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN198[u]24.6-24.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN199[u]24.7-24.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN200[u]25.0-25.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN201[u]25.1-25.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN202[u]25.2-25.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN203[u]25.3-25.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN204[u]25.4-25.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN205[u]25.5-25.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN206[u]25.6-25.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN207[u]25.7-25.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN208[u]26.0-26.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN209[u]26.1-26.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN210[u]26.2-26.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN211[u]26.3-26.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN212[u]26.4-26.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN213[u]26.5-26.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN214[u]26.6-26.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN215[u]26.7-26.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN216[u]27.0-27.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN217[u]27.1-27.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN218[u]27.2-27.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN219[u]27.3-27.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN220[u]27.4-27.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN221[u]27.5-27.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN222[u]27.6-27.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN223[u]27.7-27.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN224[u]28.0-28.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN225[u]28.1-28.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN226[u]28.2-28.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN227[u]28.3-28.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN228[u]28.4-28.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN229[u]28.5-28.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN230[u]28.6-28.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN231[u]28.7-28.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN232[u]29.0-29.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN233[u]29.1-29.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN234[u]29.2-29.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN235[u]29.3-29.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN236[u]29.4-29.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN237[u]29.5-29.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN238[u]29.6-29.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN239[u]29.7-29.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN240[u]30.0-30.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN241[u]30.1-30.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN242[u]30.2-30.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN243[u]30.3-30.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN244[u]30.4-30.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN245[u]30.5-30.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN246[u]30.6-30.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN247[u]30.7-30.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN248[u]31.0-31.0[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN249[u]31.1-31.1[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN250[u]31.2-31.2[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN251[u]31.3-31.3[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN252[u]31.4-31.4[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN253[u]31.5-31.5[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN254[u]31.6-31.6[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [unit]VPLMN255[u]31.7-31.7[u]select
+ [v]0[opt]N
+ [v]1[opt]Y
+ [remark]
Define CSRR 7(country specific roaming restriction) lists to confine the roaming range of a subscriber.
The CSRR list defines the roaming restriction for 256 VPLMN ranges.
"
+ ::= { cSRRList 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.4
+ rSZIList OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.4.1
+ rSZITable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RSZIEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { rSZIList 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.4.1.1
+ rSZIEntry OBJECT-TYPE
+ SYNTAX RSZIEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { rsziIndex }
+ ::= { rSZITable 1 }
+
+
+ RSZIEntry ::=
+ SEQUENCE {
+ rsziIndex
+ INTEGER,
+ rsziCC
+ OCTET STRING,
+ rsziNDC
+ OCTET STRING,
+ rsziZoneCode
+ INTEGER,
+ rsziRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.4.1.1.1
+ rsziIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:RSZI (Regional Subscription Zone Identity) index number ranges from 0 to 255."
+ ::= { rSZIEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.4.1.1.2
+ rsziCC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CC
+ Remark:The Country Code of the regional subscription zone."
+ ::= { rSZIEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.4.1.1.3
+ rsziNDC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..6))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NDC
+ Remark:The National Destination Code of the regional subscription zone."
+ ::= { rSZIEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.4.1.1.4
+ rsziZoneCode OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Zone Code
+ Remark:The regional subscription zone code."
+ ::= { rSZIEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.4.1.1.5
+ rsziRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rSZIEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.5
+ faxGSMBC OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.5.1
+ faxGSMBCTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF FaxGSMBCEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { faxGSMBC 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.5.1.1
+ faxGSMBCEntry OBJECT-TYPE
+ SYNTAX FaxGSMBCEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { fgIndex }
+ ::= { faxGSMBCTable 1 }
+
+
+ FaxGSMBCEntry ::=
+ SEQUENCE {
+ fgIndex
+ INTEGER,
+ fgBearerCapability
+ OCTET STRING,
+ fgRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.5.1.1.1
+ fgIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index number of this Fax GSM Bearer Capability entry."
+ ::= { faxGSMBCEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.5.1.1.2
+ fgBearerCapability OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..14))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Bearer Capability
+ Remark:Define the GSM Bearer Capability for fax service.
- Default = A3B88120156380"
+ ::= { faxGSMBCEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.5.1.1.3
+ fgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { faxGSMBCEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.6
+ dataGSMBC OBJECT IDENTIFIER ::= { parameter 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.6.1
+ dataGSMBCTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF DataGSMBCEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { dataGSMBC 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.6.1.1
+ dataGSMBCEntry OBJECT-TYPE
+ SYNTAX DataGSMBCEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { dgIndex }
+ ::= { dataGSMBCTable 1 }
+
+
+ DataGSMBCEntry ::=
+ SEQUENCE {
+ dgIndex
+ INTEGER,
+ dgBearerCapability
+ OCTET STRING,
+ dgRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.6.1.1.1
+ dgIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index number of this Data GSM Bearer Capability entry."
+ ::= { dataGSMBCEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.6.1.1.2
+ dgBearerCapability OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..14))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Bearer Capability
+ Remark:Define the GSM Bearer Capability for data service.
- Default = A28881211563A8"
+ ::= { dataGSMBCEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.6.1.1.3
+ dgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { dataGSMBCEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.8
+ uSSD OBJECT IDENTIFIER ::= { parameter 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.8.1
+ uSSDFormatString OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:USSD Format
+ Remark:The access code of USSD service. Start with 2-3 digits of '*' or '#' . End with '#'. Separate sections by '*'.
Contents can be added:
- C/c = Service Code
- R/r = Router Indicator
- B = Blank
- S = Supplement Info
For example: **C3B*S#"
+ ::= { uSSD 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.8.2
+ uGCsiServiceCode0 OBJECT-TYPE
+ SYNTAX INTEGER (0..9999)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:UG-CSI Service Code 0
+ Remark:Service code for UG-CSI (USSD General - CAMEL Subscription Information). Prepaid subscriber dials service code to apply different prepaid services.
For example: Service Code = 111, prepaid user dials **1215111*# to enquire account info."
+ ::= { uSSD 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.8.3
+ uGCsiGSMSCFAddr0 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..18))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:UG-CSI SCF Address 0
+ Remark:SCP address for UG-CSI (USSD General - CAMEL Subscription Information). The E.164 number of the SCP-MAP.
- Format = 91+CC+NDC+SN"
+ ::= { uSSD 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.8.4
+ uGCsiServiceCode1 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:UG-CSI Service Code 1
+ Remark:Service code for UG-CSI (USSD General - CAMEL Subscription Information). Prepaid subscriber dials service code to apply different prepaid services."
+ ::= { uSSD 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.8.5
+ uGCsiGSMSCFAddr1 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..18))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:UG-CSI SCF Address 1
+ Remark:SCP address for UG-CSI (USSD General - CAMEL Subscription Information). The E.164 number of the SCP-MAP.
- Format = 91+CC+NDC+SN"
+ ::= { uSSD 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.8.6
+ uGCsiServiceCode2 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:UG-CSI Service Code 2
+ Remark:Service code for UG-CSI (USSD General - CAMEL Subscription Information). Prepaid subscriber dials service code to apply different prepaid services."
+ ::= { uSSD 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.8.7
+ uGCsiGSMSCFAddr2 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..18))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:UG-CSI SCF Address 2
+ Remark:SCP address for UG-CSI (USSD General - CAMEL Subscription Information). The E.164 number of the SCP-MAP.
- Format = 91+CC+NDC+SN"
+ ::= { uSSD 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.8.8
+ uGCsiServiceCode3 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:UG-CSI Service Code 3
+ Remark:Service code for UG-CSI (USSD General - CAMEL Subscription Information). Prepaid subscriber dials service code to apply different prepaid services."
+ ::= { uSSD 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.8.9
+ uGCsiGSMSCFAddr3 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..18))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:UG-CSI SCF Address 3
+ Remark:SCP address for UG-CSI (USSD General - CAMEL Subscription Information). The E.164 number of the SCP-MAP.
- Format = 91+CC+NDC+SN"
+ ::= { uSSD 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.10
+ ussdEAE OBJECT IDENTIFIER ::= { parameter 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.10.1
+ ussdEAETable OBJECT-TYPE
+ SYNTAX SEQUENCE OF UssdEAEEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:USSD EAE"
+ ::= { ussdEAE 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.10.1.1
+ ussdEAEEntry OBJECT-TYPE
+ SYNTAX UssdEAEEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:USSD EAE"
+ INDEX { ueIndex }
+ ::= { ussdEAETable 1 }
+
+
+ UssdEAEEntry ::=
+ SEQUENCE {
+ ueIndex
+ INTEGER,
+ ueServiceCode
+ INTEGER,
+ ueServiceNum
+ OCTET STRING,
+ ueRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.10.1.1.1
+ ueIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:USSD EAE (Extended Application Entity) index number ranges from 0 to 127."
+ ::= { ussdEAEEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.10.1.1.2
+ ueServiceCode OBJECT-TYPE
+ SYNTAX INTEGER (0..9999)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Service Code
+ Remark:Subscriber dials service code to access different USSD services."
+ ::= { ussdEAEEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.10.1.1.3
+ ueServiceNum OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..9))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Service Number
+ Remark:Enter the identical Service Number as that set in SMPP configuration to connect with the third party USSD server."
+ ::= { ussdEAEEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.10.1.1.4
+ ueRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { ussdEAEEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.11
+ epsAPN OBJECT IDENTIFIER ::= { parameter 11 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.11.1
+ epsAPNTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF EpsAPNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:EPS APN"
+ ::= { epsAPN 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.11.1.1
+ epsAPNEntry OBJECT-TYPE
+ SYNTAX EpsAPNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:EPS APN"
+ INDEX { apnIndex }
+ ::= { epsAPNTable 1 }
+
+
+ EpsAPNEntry ::=
+ SEQUENCE {
+ apnIndex
+ INTEGER,
+ apnContextId
+ INTEGER,
+ apnPDNType
+ INTEGER,
+ apnQOSClassId
+ INTEGER,
+ apnVPLMNAllowed
+ INTEGER,
+ apnVisitedNetworkId
+ OCTET STRING,
+ apnPDNGWAllocationType
+ INTEGER,
+ apnPDNGWIdentity
+ OCTET STRING,
+ apnAMBRUL
+ INTEGER,
+ apnAMBRDL
+ INTEGER,
+ apnChargingCharacteristics
+ OCTET STRING,
+ apnServiceSelection
+ OCTET STRING,
+ apnOIReplacement
+ OCTET STRING,
+ apnRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.11.1.1.1
+ apnIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index"
+ ::= { epsAPNEntry 1 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.11.1.1.2
+ apnContextId OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Context Id"
+ ::= { epsAPNEntry 2 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.11.1.1.3
+ apnPDNType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ IPv4(0),
+ IPv6(1),
+ IPv4v6(2),
+ IPv4orIPv6(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:PDN Type"
+ DEFVAL { IPv4 }
+ ::= { epsAPNEntry 3 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.11.1.1.4
+ apnQOSClassId OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Qos Class Id"
+ ::= { epsAPNEntry 4 }
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.11.1.1.5
+ apnVPLMNAllowed OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ NOTALLOWED(0),
+ ALLOWED(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter"
+ DEFVAL { ALLOWED }
+ ::= { epsAPNEntry 5 }
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.11.1.1.6
+ apnVisitedNetworkId OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter"
+ ::= { epsAPNEntry 6 }
+
+ apnPDNGWAllocationType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ STATIC(0),
+ DYNAMIC(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter"
+ DEFVAL { DYNAMIC }
+ ::= { epsAPNEntry 7 }
+
+ apnPDNGWIdentity OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter"
+ ::= { epsAPNEntry 8 }
+
+ apnAMBRUL OBJECT-TYPE
+ SYNTAX INTEGER (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:AMBR UL"
+ ::= { epsAPNEntry 9 }
+
+ apnAMBRDL OBJECT-TYPE
+ SYNTAX INTEGER (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:AMBR DL"
+ ::= { epsAPNEntry 10 }
+
+ apnChargingCharacteristics OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter"
+ ::= { epsAPNEntry 11 }
+
+ apnServiceSelection OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Service Selection"
+ ::= { epsAPNEntry 12 }
+
+ apnOIReplacement OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter"
+ ::= { epsAPNEntry 13 }
+
+ apnRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { epsAPNEntry 14 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.12
+ epsQOS OBJECT IDENTIFIER ::= { parameter 12 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.12.1
+ epsQOSTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF EpsQOSEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:EPS QOS"
+ ::= { epsQOS 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.12.1.1
+ epsQOSEntry OBJECT-TYPE
+ SYNTAX EpsQOSEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:EPS QOS"
+ INDEX { qosIndex }
+ ::= { epsQOSTable 1 }
+
+
+ EpsQOSEntry ::=
+ SEQUENCE {
+ qosIndex
+ INTEGER,
+ qosQosClassId
+ INTEGER,
+ qosPriorityLevel
+ INTEGER,
+ qosPreEmptionCapability
+ INTEGER,
+ qosPreEmptionVulnerability
+ INTEGER,
+ qosRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.12.1.1.1
+ qosIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index"
+ ::= { epsQOSEntry 1 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.11.1.1.2
+ qosQosClassId OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Qos Class Id"
+ ::= { epsQOSEntry 2 }
+
+ qosPriorityLevel OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Priority Level"
+ ::= { epsQOSEntry 3 }
+
+ qosPreEmptionCapability OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ Disable(0),
+ Enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:PreEmptionCapability"
+ DEFVAL { Disable }
+ ::= { epsQOSEntry 4 }
+
+ qosPreEmptionVulnerability OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ Disable(0),
+ Enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:PreEmptionVulnerability"
+ DEFVAL { Disable }
+ ::= { epsQOSEntry 5 }
+
+ qosRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { epsQOSEntry 6 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.13
+ epsTPL OBJECT IDENTIFIER ::= { parameter 13 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.13.1
+ epsTPLTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF EpsTPLEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:EPS TPL"
+ ::= { epsTPL 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.13.1.1
+ epsTPLEntry OBJECT-TYPE
+ SYNTAX EpsTPLEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:EPS TPL"
+ INDEX { tplIndex }
+ ::= { epsTPLTable 1 }
+
+
+ EpsTPLEntry ::=
+ SEQUENCE {
+ tplIndex
+ INTEGER,
+ tplName
+ OCTET STRING,
+ tplUeAmbrUL
+ INTEGER,
+ tplUeAmbrDL
+ INTEGER,
+ tplUeApnOiReplacement
+ OCTET STRING,
+ tplRfsp
+ INTEGER,
+ tplRauTauTimer
+ INTEGER,
+ tplChargingCharacteristic
+ OCTET STRING,
+ tplRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.13.1.1.1
+ tplIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index"
+ ::= { epsTPLEntry 1 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.3.2.13.1.1.2
+ tplName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Template name"
+ ::= { epsTPLEntry 2 }
+
+ tplUeAmbrUL OBJECT-TYPE
+ SYNTAX INTEGER (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:UE AMBR UL"
+ ::= { epsTPLEntry 3 }
+
+ tplUeAmbrDL OBJECT-TYPE
+ SYNTAX INTEGER (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:UE AMBR DL"
+ ::= { epsTPLEntry 4 }
+
+ tplUeApnOiReplacement OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { epsTPLEntry 5 }
+
+ tplRfsp OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { epsTPLEntry 6 }
+
+ tplRauTauTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { epsTPLEntry 7 }
+
+ tplChargingCharacteristic OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { epsTPLEntry 8 }
+
+ tplRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { epsTPLEntry 9 }
+
+ END
+
+--
+-- LGC-SS-HLR-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-IMS-MIB.my b/omc/bin/mib/LGC-SS-IMS-MIB.my
new file mode 100644
index 0000000..daf25b8
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-IMS-MIB.my
@@ -0,0 +1,428 @@
+--
+-- LGC-SS-IMS-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, July 05, 2018 at 19:19:32
+--
+
+-- LGC-SS-IMS-MIB-2.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Saturday, April 28, 2018 at 18:03:35
+--
+-- LGC-SS-IMS-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Saturday, April 28, 2018 at 17:25:31
+--
+
+ LGC-SS-IMS-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS
+ FROM LGC-MIB
+ IpAddress, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.29
+ ims MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 29 }
+
+
+
+--
+-- Type definitions
+--
+
+-- 1.3.6.1.4.1.1373.2.3.3.29
+-- June 29, 2007 at 16:06 GMT
+-- June 05, 2007 at 12:19 GMT
+--
+-- Type definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.29
+-- June 29, 2007 at 16:06 GMT
+-- June 05, 2007 at 12:19 GMT
+--
+-- Type definitions
+--
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- Node definitions
+--
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.29.2
+-- 1.3.6.1.4.1.1373.2.3.3.29.2
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2
+ parameter OBJECT IDENTIFIER ::= { ims 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.1.1
+ domain OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Domain."
+ ::= { system 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.1.2
+ ipAddr OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:IMS IP Address."
+ ::= { system 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.1.3
+ serviceType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable-volte(1),
+ enable-voip(2),
+ enable-both(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Service Type."
+ ::= { system 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.2
+ network OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.2.1
+ pcscfName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:VOLTE P-CSCF Name."
+ ::= { network 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.2.2
+ pcscf2Name OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:VOIP P-CSCF Name."
+ ::= { network 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.2.3
+ icscfName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:I-CSCF Name."
+ ::= { network 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.2.4
+ scscfName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:S-CSCF Name."
+ ::= { network 4 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2.5
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2.5
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.2.5
+ mMtelName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:MMtel Name."
+ ::= { network 5 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2.6
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2.6
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.2.6
+ smscName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:SMSC Name."
+ ::= { network 6 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2.7
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.2.7
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.2.7
+ mrfName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:MRF Name."
+ ::= { network 7 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.3
+ iCX OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3.1
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.3.1
+ ilocalHost OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Local hostname."
+ ::= { iCX 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3.2
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3.2
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.3.2
+ ilocalRealm OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Local realm."
+ ::= { iCX 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.3.3
+ ihssHost OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS hostname."
+ ::= { iCX 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3.4
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3.4
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.3.4
+ ihssRealm OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS realm."
+ ::= { iCX 4 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3.5
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3.5
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.3.5
+ ihssIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS IPAddress."
+ ::= { iCX 5 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3.6
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3.6
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.3.6
+ ihssPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS Port."
+ ::= { iCX 6 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3.7
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.3.7
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.3.7
+ icxStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Status."
+ ::= { iCX 7 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.4
+ sCX OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4.1
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.4.1
+ slocalHost OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Local hostname."
+ ::= { sCX 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4.2
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4.2
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.4.2
+ slocalRealm OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Local realm."
+ ::= { sCX 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4.3
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4.3
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.4.3
+ shssHost OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS hostname."
+ ::= { sCX 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4.4
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4.4
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.4.4
+ shssRealm OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS realm."
+ ::= { sCX 4 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4.5
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4.5
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.4.5
+ shssIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS IPAddress."
+ ::= { sCX 5 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4.6
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4.6
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.4.6
+ shssPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS Port."
+ ::= { sCX 6 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4.7
+-- 1.3.6.1.4.1.1373.2.3.3.29.2.4.7
+ -- 1.3.6.1.4.1.1373.2.3.3.29.2.4.7
+ scxStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Status."
+ ::= { sCX 7 }
+
+
+
+ END
+
+--
+-- LGC-SS-IMS-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-MCA-MIB.my b/omc/bin/mib/LGC-SS-MCA-MIB.my
new file mode 100644
index 0000000..a0c88d2
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-MCA-MIB.my
@@ -0,0 +1,305 @@
+--
+-- LGC-SS-MCA-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Monday, September 13, 2010 at 17:34:25
+--
+
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Friday, March 12, 2010 at 14:15:06
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, March 11, 2010 at 10:05:09
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, March 11, 2010 at 10:04:10
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Wednesday, March 10, 2010 at 14:44:19
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Wednesday, March 10, 2010 at 11:35:26
+--
+
+ LGC-SS-MCA-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString, RowStatus
+ FROM LGC-MIB
+ IpAddress, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25
+ mca MODULE-IDENTITY
+ LAST-UPDATED "201003101054Z" -- March 10, 2010 at 10:54 GMT
+ ORGANIZATION
+ "altobridge"
+ CONTACT-INFO
+ "Contact-info."
+ DESCRIPTION
+ "Description."
+ REVISION "201003101055Z" -- March 10, 2010 at 10:55 GMT
+ DESCRIPTION
+ "1st Version"
+ ::= { application 25 }
+
+
+
+
+--
+-- Node definitions
+--
+
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+ -- 1.3.6.1.4.1.1373.2.3.3.25.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mca 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2
+ parameter OBJECT IDENTIFIER ::= { mca 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.1.1
+ localIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MCA IP
+ Remark:IP address of the MCA (MMS Charging Agent)."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.1.2
+ nasIP0 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NAS 0 IP
+ Remark:IP address of the PPS-0."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.1.3
+ nasKey0 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NAS 0 Key
+ Remark:Cryptographic key used between MCA and PPS-0. It corresponds with the setting in PPS > Service Control > RADIUS GGSN."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.1.4
+ nasPassword0 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NAS 0 Password
+ Remark:Password used between MCA and PPS-0. It corresponds with the setting in PPS > Service Control > RADIUS GGSN."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.1.5
+ nasIP1 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NAS 1 IP
+ Remark:IP address of PPS-1. Set 0.0.0.0 to ignore NAS 1."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.1.6
+ nasKey1 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NAS 1 Key
+ Remark:Cryptographic key used between MCA and PPS-1. It corresponds with the setting in PPS > Service Control > RADIUS GGSN."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.1.7
+ nasPassword1 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NAS 1 Password
+ Remark:Password used between MCA and PPS-1. It corresponds with the setting in PPS > Service Control > RADIUS GGSN."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.2
+ mMSCenterIP OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.2.1
+ mMSCenterIPTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MMSCenterIPEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mMSCenterIP 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.2.1.1
+ mMSCenterIPEntry OBJECT-TYPE
+ SYNTAX MMSCenterIPEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { mciIndex }
+ ::= { mMSCenterIPTable 1 }
+
+
+ MMSCenterIPEntry ::=
+ SEQUENCE {
+ mciIndex
+ INTEGER,
+ mciFlag
+ INTEGER,
+ mciAllowIP
+ IpAddress,
+ mciRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.2.1.1.1
+ mciIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..7)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:MMSC (MMS Center) index number ranges from 0 to 7."
+ ::= { mMSCenterIPEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.2.1.1.2
+ mciFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Flag
+ Remark:Enable or disable the connection to the specific MMS center."
+ ::= { mMSCenterIPEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.2.1.1.3
+ mciAllowIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MMSC IP
+ Remark:IP address of the specific MMS center."
+ ::= { mMSCenterIPEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.25.2.2.1.1.4
+ mciRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mMSCenterIPEntry 4 }
+
+
+
+ END
+
+--
+-- LGC-SS-MCA-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-MHC-MIB.my b/omc/bin/mib/LGC-SS-MHC-MIB.my
new file mode 100644
index 0000000..8e7f993
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-MHC-MIB.my
@@ -0,0 +1,564 @@
+--
+-- LGC-SS-MHC-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Monday, September 13, 2010 at 17:44:25
+--
+
+ LGC-SS-MHC-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, RowStatus, DisplayString
+ FROM LGC-MIB
+ IpAddress, Opaque, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17
+ mhc MODULE-IDENTITY
+ LAST-UPDATED "200810151006Z" -- October 15, 2008 at 10:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 17 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mhc 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2
+ parameter OBJECT IDENTIFIER ::= { mhc 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.1.1
+ license OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes
+ Remark:License."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.1.2
+ mHC OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Enable or disable the MHC function."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.1.3
+ cDRFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CDR Flag
+ Remark:Enable or disable MHC CDR generation."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.1.4
+ maxSynMessageInterval OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Synchronization Interval
+ Remark:The time interval between sending successive SYN commands to the destination nodes.
- Range = 1 - 255 seconds"
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.1.5
+ maxVerificationMessageInterval OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Verification Interval
+ Remark:The time interval between sending successive verification commands to the destination nodes.
- Range = 1 - 255 seconds"
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.1.6
+ maxDownloadMessageInterval OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Download Interval
+ Remark:The time interval between sending successive download commands to the destination nodes.
- Range = 1 - 255 seconds"
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.1.7
+ maxReplicationMessageInterval OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Replication Interval
+ Remark:The time interval between sending successive replication commands to the destination nodes.
- Range = 1 - 255 seconds"
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.1.8
+ replicationCommand OBJECT-TYPE
+ SYNTAX INTEGER { replication(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Replication the data from remote server."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.1.9
+ verificationStartTime OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ PM12(0),
+ AM01(1),
+ AM02(2),
+ AM03(3),
+ AM04(4),
+ AM05(5),
+ AM06(6),
+ AM07(7),
+ AM08(8),
+ AM09(9),
+ AM10(10),
+ AM11(11),
+ AM12(12),
+ PM01(13),
+ PM02(14),
+ PM03(15),
+ PM04(16),
+ PM05(17),
+ PM06(18),
+ PM07(19),
+ PM08(20),
+ PM09(21),
+ PM10(22),
+ PM11(23)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Verification Start Time
+ Remark:The start time of daily HLR data verification procedure."
+ ::= { system 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.1.10
+ hLRChecksumField OBJECT-TYPE
+ SYNTAX Opaque (SIZE (13))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]IMSI[u]00.0-00.0[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Used flag[u]00.1-00.1[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]MSISDN[u]00.2-00.2[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Fax number[u]00.3-00.3[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Data number[u]00.4-00.4[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Network access mode[u]00.5-00.5[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Mobile station category[u]00.6-00.6[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Subscriber status[u]00.7-00.7[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]ODB general data[u]01.0-01.0[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]ODB specific data[u]01.1-01.1[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Bearer service data[u]01.2-01.2[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Tele service data[u]01.3-01.3[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Country specification roam type[u]01.4-01.4[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]GSM bearer capability[u]01.5-01.5[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Regional subscription zone code index[u]01.6-01.6[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]CLIP state[u]01.7-01.7[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]CLIR state[u]02.0-02.0[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]COLP state[u]02.1-02.1[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]COLR state[u]02.2-02.2[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Subscription option[u]02.3-02.3[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Password[u]02.4-02.4[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Wrong password attempt count[u]02.5-02.5[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]BAOC state[u]02.6-02.6[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]BAIC state[u]02.7-02.7[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]BOIC except directed to home HPLMN[u]03.0-03.0[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]BAIC state[u]03.1-03.1[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]BIC-Roam state[u]03.2-03.2[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]CFU state[u]03.3-03.3[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]CFU forwarded-to number[u]03.4-03.4[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]CFB state[u]03.5-03.5[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]CFB forwarded-to number[u]03.6-03.6[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]CFNRy state[u]03.7-03.7[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]CFNRy no reply condition timer[u]04.0-04.0[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]CFNRy forward-to number[u]04.1-04.1[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]CFNRc state[u]04.2-04.2[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]CFNRc forward-to number[u]04.3-04.3[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Call waiting state[u]04.4-04.4[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Call hold state[u]04.5-04.5[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Explict call transfer state[u]04.6-04.6[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Multi party state[u]04.7-04.7[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]CAMEL flag[u]05.0-05.0[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]O-CSI[u]05.1-05.1[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]T-CSI[u]05.2-05.2[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]SS-CSI[u]05.3-05.3[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]SMS-CSI[u]05.4-05.4[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]GPRS-CSI[u]05.5-05.5[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]GPRS flag[u]05.6-05.6[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]PDP1[u]05.7-05.7[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]PDP2[u]06.0-06.0[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]PDP3[u]06.1-06.1[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]User name[u]06.2-06.2[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Certificate[u]06.3-06.3[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Alternative telephone[u]06.4-06.4[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Remark[u]06.5-06.5[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]MSC area restrict flag[u]06.6-06.6[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Roaming restrict due to unsupport feature flag[u]06.7-06.7[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]MS purged flag[u]07.0-07.0[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Mobile station not reachable for GPRS flag[u]07.1-07.1[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]LMSI[u]07.2-07.2[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]VLR number[u]07.3-07.3[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]MSC number[u]07.4-07.4[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]SGSN number[u]07.5-07.5[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]GGSN number[u]07.6-07.6[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]GGSN address[u]07.7-07.7[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Route param[u]08.0-08.0[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]MWD[u]08.1-08.1[u]select
+ [v]0[opt]off
+ [v]1[opt]on
+ [unit]Reserved[u]08.2-12.7[u]select
+ [remark]
Enable or disable checksum for each HLR subscriber data fields.
"
+ ::= { system 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.1.11
+ sysCommand OBJECT-TYPE
+ SYNTAX INTEGER { saveUserData(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.1.12
+ replicateRate OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Replication Rate
+ Remark:The limited number of replicating subscribers per 50ms.
- Range = 1 - 255"
+ ::= { system 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.2
+ mHCNode OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.2.1
+ mHCNodeTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MHCNodeEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mHCNode 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.2.1.1
+ mHCNodeEntry OBJECT-TYPE
+ SYNTAX MHCNodeEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { mnIndex }
+ ::= { mHCNodeTable 1 }
+
+
+ MHCNodeEntry ::=
+ SEQUENCE {
+ mnIndex
+ INTEGER,
+ mnName
+ OCTET STRING,
+ mnIP0
+ IpAddress,
+ mnIP1
+ IpAddress,
+ mnBlock
+ INTEGER,
+ mnRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.2.1.1.1
+ mnIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:MHC node index number ranges from 0 to 15."
+ ::= { mHCNodeEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.2.1.1.2
+ mnName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:MHC node name for identification purpose only."
+ ::= { mHCNodeEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.2.1.1.3
+ mnIP0 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:IP 0
+ Remark:IP address of the MHC installed on platform 0."
+ ::= { mHCNodeEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.2.1.1.4
+ mnIP1 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:IP 1
+ Remark:IP address of the MHC installed on platform 1. It is available only for the dual-platform system."
+ ::= { mHCNodeEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.2.1.1.5
+ mnBlock OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ unblock(0),
+ block(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed MHC node.
- Unblock = Enable blocked MHC node.
- Block = Disable MHC node manually."
+ ::= { mHCNodeEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.17.2.2.1.1.6
+ mnRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mHCNodeEntry 6 }
+
+
+
+ END
+
+--
+-- LGC-SS-MHC-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-MME-MIB.my b/omc/bin/mib/LGC-SS-MME-MIB.my
new file mode 100644
index 0000000..2e95bc7
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-MME-MIB.my
@@ -0,0 +1,609 @@
+--
+-- LGC-SS-MME-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Friday, July 20, 2018 at 10:11:54
+--
+
+ LGC-SS-MME-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString8, DisplayString
+ FROM LGC-MIB
+ IpAddress, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27
+ mme MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 27 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2
+ parameter OBJECT IDENTIFIER ::= { mme 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.1.1
+ maxENB OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Number of Max eNB."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.1.2
+ maxUE OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Number of Max UE."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.1.3
+ cSFallback OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Switch of CS fallback function."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.2
+ network OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.2.1
+ s1MMEIp OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:IP address of S1 MME interface."
+ ::= { network 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.2.2
+ s1MMEPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:port number of S1 MME interface."
+ ::= { network 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.2.3
+ s11IP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:IP address of S11 interface."
+ ::= { network 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.2.4
+ s11Port OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:port number of S11 interface."
+ ::= { network 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.2.5
+ sGsIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:IP address of SGs interface."
+ ::= { network 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.2.6
+ sGsPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:port number of SGs interface."
+ ::= { network 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.3
+ gUMMEI OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.3.1
+ mCC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:MCC."
+ ::= { gUMMEI 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.3.2
+ mNC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (2..3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:MNC."
+ ::= { gUMMEI 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.3.3
+ mMEGid OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:MME Gid."
+ ::= { gUMMEI 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.3.4
+ mMECode OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:MME Code."
+ ::= { gUMMEI 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4
+ tAIList OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1
+ tAIListTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TAIListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:TAI List Table"
+ ::= { tAIList 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1
+ tAIListEntry OBJECT-TYPE
+ SYNTAX TAIListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:TAI List Table"
+ INDEX { taiIndex }
+ ::= { tAIListTable 1 }
+
+
+ TAIListEntry ::=
+ SEQUENCE {
+ taiIndex
+ INTEGER,
+ taiMCC
+ OCTET STRING,
+ taiMNC
+ OCTET STRING,
+ taiTAC
+ INTEGER,
+ taiRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.1
+ taiIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 16."
+ ::= { tAIListEntry 1 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.2
+ taiMCC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:MCC."
+ ::= { tAIListEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.3
+ taiMNC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (2..3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:MNC."
+ ::= { tAIListEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.4
+ taiTAC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:TAC."
+ ::= { tAIListEntry 4 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.5
+ taiRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { tAIListEntry 5 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5
+ eNBList OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1
+ eNBListTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ENBListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:eNB List Table"
+ ::= { eNBList 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1
+ eNBListEntry OBJECT-TYPE
+ SYNTAX ENBListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:eNB List Table"
+ INDEX { enbIndex }
+ ::= { eNBListTable 1 }
+
+
+ ENBListEntry ::=
+ SEQUENCE {
+ enbIndex
+ INTEGER,
+ enbID
+ INTEGER,
+ enbName
+ OCTET STRING,
+ enbState
+ INTEGER,
+ enbNumOfAssociatedUE
+ INTEGER,
+ enbSctpAssociationId
+ INTEGER
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.1
+ enbIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..16)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 16."
+ ::= { eNBListEntry 1 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.2
+ enbID OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:eNB ID."
+ ::= { eNBListEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.3
+ enbName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:eNB name."
+ ::= { eNBListEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.4
+ enbState OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ init(0),
+ resetting(1),
+ ready(2),
+ shutdown(3)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:state."
+ ::= { eNBListEntry 4 }
+
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.5
+ enbNumOfAssociatedUE OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Number of associated UEs."
+ ::= { eNBListEntry 5 }
+
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.6
+ enbSctpAssociationId OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:SCTP association id."
+ ::= { eNBListEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6
+ s6a OBJECT IDENTIFIER ::= { parameter 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6.1
+ localHostname OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Local Hostname."
+ ::= { s6a 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6.2
+ localRealm OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Local Realm."
+ ::= { s6a 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6.3
+ hSSHostname OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS Hostname."
+ ::= { s6a 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6.4
+ hSSRealm OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS Realm."
+ ::= { s6a 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6.5
+ hSSIp OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS IP."
+ ::= { s6a 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6.6
+ hSSPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS port."
+ ::= { s6a 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6.7
+ s6aStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ inactive(0),
+ active(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:status."
+ ::= { s6a 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.7
+ s11 OBJECT IDENTIFIER ::= { parameter 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.7.1
+ id OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:MCC."
+ ::= { s11 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.7.2
+ sGWIpAddressForS11 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:SGW IP Address for S11."
+ ::= { s11 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.3
+ csta OBJECT IDENTIFIER ::= { mme 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.3.1
+ ueTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF UeEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.3.1.1
+ ueEntry OBJECT-TYPE
+ SYNTAX UeEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { luTgIndex, luIndex }
+ ::= { ueTable 1 }
+
+
+ UeEntry ::=
+ SEQUENCE {
+ ueIndex
+ INTEGER,
+ ueData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.3.1.1.1
+ ueIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { ueEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27.3.1.1.2
+ ueData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { ueEntry 2 }
+
+
+
+ END
+
+--
+-- LGC-SS-MME-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-MME-MIB.my_bak b/omc/bin/mib/LGC-SS-MME-MIB.my_bak
new file mode 100644
index 0000000..4084d60
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-MME-MIB.my_bak
@@ -0,0 +1,689 @@
+--
+-- LGC-SS-MME-MIB-2.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Saturday, April 28, 2018 at 18:03:35
+--
+
+-- LGC-SS-MME-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Saturday, April 28, 2018 at 17:25:31
+--
+
+ LGC-SS-MME-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, RowStatus, DisplayString
+ FROM LGC-MIB
+ IpAddress, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.27
+ mme MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 27 }
+
+
+
+--
+-- Type definitions
+--
+
+-- 1.3.6.1.4.1.1373.2.3.3.27
+-- June 29, 2007 at 16:06 GMT
+-- June 05, 2007 at 12:19 GMT
+--
+-- Type definitions
+--
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+-- 1.3.6.1.4.1.1373.2.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.27.2
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2
+ parameter OBJECT IDENTIFIER ::= { mme 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.1.1
+ maxENB OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Number of Max eNB."
+ ::= { system 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.1.2
+ maxUE OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Number of Max UE."
+ ::= { system 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.1.3
+ cSFallback OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Switch of CS fallback function."
+ ::= { system 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.2
+ network OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.2.1
+ s1MMEIp OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:IP address of S1 MME interface."
+ ::= { network 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.2.2
+ s1MMEPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:port number of S1 MME interface."
+ ::= { network 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.2.3
+ s11IP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:IP address of S11 interface."
+ ::= { network 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.2.4
+ s11Port OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:port number of S11 interface."
+ ::= { network 4 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.2.5
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.2.5
+ sGsIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:IP address of SGs interface."
+ ::= { network 5 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.2.6
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.2.6
+ sGsPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:port number of SGs interface."
+ ::= { network 6 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.3
+ gUMMEI OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.3.1
+ mCC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:MCC."
+ ::= { gUMMEI 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.3.2
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.3.2
+ mNC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (2..3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:MNC."
+ ::= { gUMMEI 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.3.3
+ mMEGid OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:MME Gid."
+ ::= { gUMMEI 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.3.4
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.3.4
+ mMECode OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:MME Code."
+ ::= { gUMMEI 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4
+ tAIList OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1
+ tAIListTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TAIListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:TAI List Table"
+ ::= { tAIList 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1
+ tAIListEntry OBJECT-TYPE
+ SYNTAX TAIListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:TAI List Table"
+ INDEX { taiIndex }
+ ::= { tAIListTable 1 }
+
+
+ TAIListEntry ::=
+ SEQUENCE {
+ taiIndex
+ INTEGER,
+ taiMCC
+ OCTET STRING,
+ taiMNC
+ OCTET STRING,
+ taiTAC
+ INTEGER,
+ taiRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.1
+ taiIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 16."
+ ::= { tAIListEntry 1 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.2
+ taiMCC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:MCC."
+ ::= { tAIListEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.3
+ taiMNC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (2..3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:MNC."
+ ::= { tAIListEntry 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.4
+ taiTAC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:TAC."
+ ::= { tAIListEntry 4 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.16
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.4.1.1.5
+ taiRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { tAIListEntry 5 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.5
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5
+ eNBList OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1
+ eNBListTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ENBListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:eNB List Table"
+ ::= { eNBList 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1
+ eNBListEntry OBJECT-TYPE
+ SYNTAX ENBListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:eNB List Table"
+ INDEX { enbIndex }
+ ::= { eNBListTable 1 }
+
+
+ ENBListEntry ::=
+ SEQUENCE {
+ enbIndex
+ INTEGER,
+ enbID
+ INTEGER,
+ enbName
+ OCTET STRING,
+ enbState
+ INTEGER,
+ enbNumOfAssociatedUE
+ INTEGER,
+ enbSctpAssociationId
+ INTEGER,
+ enbRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.1
+ enbIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..16)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 16."
+ ::= { eNBListEntry 1 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.2
+ enbID OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:eNB ID."
+ ::= { eNBListEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.3
+ enbName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:eNB name."
+ ::= { eNBListEntry 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.4
+ enbState OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ init(0),
+ resetting(1),
+ ready(2),
+ shutdown(3)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:state."
+ ::= { eNBListEntry 4 }
+
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.5
+ enbNumOfAssociatedUE OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Number of associated UEs."
+ ::= { eNBListEntry 5 }
+
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.6
+ enbSctpAssociationId OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:SCTP association id."
+ ::= { eNBListEntry 6 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.16
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.5.1.1.7
+ enbRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { eNBListEntry 7 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.6
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6
+ s6a OBJECT IDENTIFIER ::= { parameter 6 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.6.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6.1
+ localHostname OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Local Hostname."
+ ::= { s6a 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.6.2
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6.2
+ localRealm OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Local Realm."
+ ::= { s6a 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.6.3
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6.3
+ hSSHostname OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS Hostname."
+ ::= { s6a 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.6.4
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6.4
+ hSSRealm OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS Realm."
+ ::= { s6a 4 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.6.5
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6.5
+ hSSIp OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS IP."
+ ::= { s6a 5 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.6.6
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6.6
+ hSSPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:HSS port."
+ ::= { s6a 6 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.6.7
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.6.7
+ s6aStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ inactive(0),
+ active(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:status."
+ ::= { s6a 7 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.7
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.7
+ s11 OBJECT IDENTIFIER ::= { parameter 7 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.7.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.7.1
+ id OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:MCC."
+ ::= { s11 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.2.7.2
+ -- 1.3.6.1.4.1.1373.2.3.3.27.2.7.2
+ sGWIpAddressForS11 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:SGW IP Address for S11."
+ ::= { s11 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.3
+ -- 1.3.6.1.4.1.1373.2.3.3.27.3
+ csta OBJECT IDENTIFIER ::= { mme 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.3.1
+ ueTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF UeEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.3.1.1
+ ueEntry OBJECT-TYPE
+ SYNTAX UeEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { luTgIndex, luIndex }
+ ::= { ueTable 1 }
+
+
+ UeEntry ::=
+ SEQUENCE {
+ ueIndex
+ INTEGER,
+ ueData
+ DisplayString
+ }
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.3.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.27.3.1.1.1
+ ueIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { ueEntry 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.27.3.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.27.3.1.1.2
+ ueData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { ueEntry 2 }
+
+
+
+ END
+
+--
+-- LGC-SS-MME-MIB-2.my
+--
diff --git a/omc/bin/mib/LGC-SS-MNP-MIB.my b/omc/bin/mib/LGC-SS-MNP-MIB.my
new file mode 100644
index 0000000..d279010
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-MNP-MIB.my
@@ -0,0 +1,378 @@
+--
+-- LGC-SS-MNP-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Monday, September 13, 2010 at 17:59:41
+--
+
+ LGC-SS-MNP-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString16, RowStatus, DisplayString
+ FROM LGC-MIB
+ Opaque, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.7
+ mnp MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { mss 7 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ mss OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.7.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mnp 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2
+ parameter OBJECT IDENTIFIER ::= { mnp 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.1.1
+ flag OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MNP Flag
+ Remark:Enable or disable MNP (Mobile Number Portability) function."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.1.2
+ nPLRNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NPLR Address
+ Remark:The E.164 node address of the NPLR (Number Portability Location Register)."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.1.3
+ routingNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Routing Number
+ Remark:A specific number which is part of the routing information, used by the network to route the call and the non-call related signaling messages."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.1.4
+ routingMethod OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ direct(1),
+ indirect(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Routing Method
+ Remark:For every call or non-call related transaction initiated from local network, the MSC can select one of the two following routing conventions:- Direct = Route the calls directly from the PLMN to the ported subscriber's network.
- Indirect = Route the calls from the PLMN to the ported subscriber's subscription network via the number range holder.
"
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.1.5
+ rNPosition OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:RN Position
+ Remark:The routing number will be attached to the called number in the portability database.
This parameter specifies the digit position of the called number to append the routing number."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.1.6
+ type OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ srf(0),
+ ansiIn(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MNP Solution
+ Remark:Select a solution for call related signaling in the ETSI MNP-standard:- MNP-SRF = Mobile Number Portability Signaling Relay Function
- ANSI IN = American National Standard Institute Intelligent Network
"
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.1.7
+ systemCommand OBJECT-TYPE
+ SYNTAX INTEGER { saveSubsData(2) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.1.8
+ importSubs OBJECT-TYPE
+ SYNTAX Opaque (SIZE (7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes
+ OPAQUE DECODE RULE:
+ [unit]operation[u]00.0-00.7[u]select
+ [v]1[opt]Send
+ [v]2[opt]Reading
+ [v]3[opt]Succeed
+ [v]4[opt]Failed
+ [unit]Imported subs.[u]01.0-03.7[u]input
+ [v]toDec-high-0
+ [unit]Loaded subs.[u]04.0-06.7[u]input
+ [v]toDec-high-0"
+ ::= { system 8 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.2
+ localPrefix OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.2.1
+ localPrefixTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LocalPrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { localPrefix 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.2.1.1
+ localPrefixEntry OBJECT-TYPE
+ SYNTAX LocalPrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { localIndex }
+ ::= { localPrefixTable 1 }
+
+
+ LocalPrefixEntry ::=
+ SEQUENCE {
+ localIndex
+ INTEGER,
+ localTitle
+ OCTET STRING,
+ localPrefixNumber
+ OCTET STRING,
+ localRowStatus
+ RowStatus
+ }
+
+-- Route Selection RZS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.2.1.1.1
+ localIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Local prefix index number ranges from 0 to 31."
+ ::= { localPrefixEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.2.1.1.2
+ localTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Local prefix name for identification purpose only."
+ ::= { localPrefixEntry 2 }
+
+
+-- Trunk Group
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.2.1.1.3
+ localPrefixNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..15))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Prefix
+ Remark:Specify prefix of E.164 numbers using in the local network."
+ ::= { localPrefixEntry 3 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.2.1.1.4
+ localRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { localPrefixEntry 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.3
+ portablePrefix OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.3.1
+ portablePrefixTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PortablePrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { portablePrefix 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.3.1.1
+ portablePrefixEntry OBJECT-TYPE
+ SYNTAX PortablePrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { portableIndex }
+ ::= { portablePrefixTable 1 }
+
+
+ PortablePrefixEntry ::=
+ SEQUENCE {
+ portableIndex
+ INTEGER,
+ portableTitle
+ DisplayString16,
+ portablePrefixNumber
+ OCTET STRING,
+ portableRowStatus
+ RowStatus
+ }
+
+-- Route Selection RZS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.3.1.1.1
+ portableIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Portable prefix index number ranges from 0 to 127."
+ ::= { portablePrefixEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.3.1.1.2
+ portableTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Portable prefix name for identification purpose only."
+ ::= { portablePrefixEntry 2 }
+
+
+-- Trunk Group
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.3.1.1.3
+ portablePrefixNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..15))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Prefix
+ Remark:Specify prefix of E.164 numbers that can be ported among networks."
+ ::= { portablePrefixEntry 3 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.7.2.3.1.1.4
+ portableRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { portablePrefixEntry 4 }
+
+
+
+ END
+
+--
+-- LGC-SS-MNP-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-MRFC-MIB.my b/omc/bin/mib/LGC-SS-MRFC-MIB.my
new file mode 100644
index 0000000..7c0228f
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-MRFC-MIB.my
@@ -0,0 +1,381 @@
+--
+-- LGC-SS-MRFC-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Monday, September 13, 2010 at 18:10:09
+--
+
+ LGC-SS-MRFC-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString16, TimeStamp, RowStatus, DisplayString,
+ AdminStateChoices
+ FROM LGC-MIB
+ IpAddress, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.13
+ mrfc MODULE-IDENTITY
+ LAST-UPDATED "200810151006Z" -- October 15, 2008 at 10:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 13 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.13.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mrfc 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2
+ parameter OBJECT IDENTIFIER ::= { mrfc 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.8
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1
+ mRFP OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.8.1
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1
+ mRFPTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MRFPEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mRFP 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.8.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1
+ mRFPEntry OBJECT-TYPE
+ SYNTAX MRFPEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { mrfpIndex }
+ ::= { mRFPTable 1 }
+
+
+ MRFPEntry ::=
+ SEQUENCE {
+ mrfpIndex
+ INTEGER,
+ mrfpTitle
+ DisplayString16,
+ mrfpCreateTimeStamp
+ TimeStamp,
+ mrfpAdministrationState
+ AdminStateChoices,
+ mrfpLocalDomain
+ DisplayString16,
+ mrfpDestDomain
+ DisplayString16,
+ mrfpDestIp
+ IpAddress,
+ mrfpDestPort
+ INTEGER,
+ mrfpConfPrefix
+ OCTET STRING,
+ mrfpTransPrefix
+ OCTET STRING,
+ mrfpConfUserNumber
+ INTEGER,
+ mrfpTransUserNumber
+ INTEGER,
+ mrfpType
+ INTEGER,
+ mrfpStatus
+ INTEGER,
+ mrfpRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.8.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.1
+ mrfpIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..254)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:MRFP (Multimedia Resource Function Processor) index number ranges from 0 to 254."
+ ::= { mRFPEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.8.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.2
+ mrfpTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:MRFP name for identification purpose only."
+ DEFVAL { "MRFP#" }
+ ::= { mRFPEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.8.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.3
+ mrfpCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the MRFP."
+ ::= { mRFPEntry 3 }
+
+
+-- Origination MG
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.8.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.4
+ mrfpAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed MRFP."
+ ::= { mRFPEntry 4 }
+
+
+-- Origination Trunk
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.8.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.5
+ mrfpLocalDomain OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MRFC Domain
+ Remark:Domain name of the local MRFC (Multimedia Resource Function Controller). Use MSS IP address as default."
+ ::= { mRFPEntry 5 }
+
+
+-- Origination Channel
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.8.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.6
+ mrfpDestDomain OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MRFP Domain
+ Remark:Domain name of the connected MRFP. Use MRFP IP address as default."
+ ::= { mRFPEntry 6 }
+
+
+-- Destination MG
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.8.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.7
+ mrfpDestIp OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MRFP IP
+ Remark:IP address of the connected MRFP."
+ ::= { mRFPEntry 7 }
+
+
+-- Destination Trunk
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.8.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.8
+ mrfpDestPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MRFP Port
+ Remark:Enter the SIP UDP transmission port that set on the connected MRFP. Default as 5060."
+ ::= { mRFPEntry 8 }
+
+
+-- Destination Channel
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.8.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.9
+ mrfpConfPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..15))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Conf Prefix
+ Remark:Enter the conference ID that set on the connected MRFP.
- Default = conf"
+ ::= { mRFPEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.10
+ mrfpTransPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..15))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Trans Prefix
+ Remark:Enter the transcoding ID that set on the connected MRFP.
- Default = trans"
+ ::= { mRFPEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.11
+ mrfpConfUserNumber OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Max Conf Channels
+ Remark:Assign the maximum number of channels reserved for conference call use.
It cooperates with the following parameter to distribute licensed channels between conference and transcoding."
+ ::= { mRFPEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.12
+ mrfpTransUserNumber OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Max Trans Channels
+ Remark:Assign the maximum number of channels reserved for transcoding use.
It cooperates with the preceding parameter to distribute licensed channels between conference and transcoding."
+ ::= { mRFPEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.13
+ mrfpType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ ipMedia(1),
+ iwf(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Device Type
+ Remark:Specify the device type of the connected MRFP."
+ ::= { mRFPEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.14
+ mrfpStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ offLine(0),
+ onLine(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Avail State
+ Remark:Indicate the current availability state of the connected MRFP."
+ ::= { mRFPEntry 14 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.8.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.13.2.1.1.1.15
+ mrfpRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mRFPEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.13.3
+ csta OBJECT IDENTIFIER ::= { mrfc 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.13.4
+ cdr OBJECT IDENTIFIER ::= { mrfc 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.13.4.1
+ cdrHeadOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.13.4.2
+ cdrTailOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.13.4.3
+ cdrDataOid OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 3 }
+
+
+
+ END
+
+--
+-- LGC-SS-MRFC-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-MSC-MIB.my b/omc/bin/mib/LGC-SS-MSC-MIB.my
new file mode 100644
index 0000000..7216a49
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-MSC-MIB.my
@@ -0,0 +1,4939 @@
+--
+-- LGC-SS-MSC-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Friday, March 08, 2013 at 15:35:22
+--
+
+ LGC-SS-MSC-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString16, TimeStamp, RowStatus, DisplayString8,
+ DisplayString, AdminStateChoices, OperStateChoices
+ FROM LGC-MIB
+ IpAddress, Opaque, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1
+ msc MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 1 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { msc 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2
+ parameter OBJECT IDENTIFIER ::= { msc 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.1
+ cDROption OBJECT-TYPE
+ SYNTAX Opaque (SIZE (8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]MO Call[u]00.0-00.0[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]MT Call[u]00.1-00.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]In Gateway[u]00.2-00.2[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Out Gateway[u]00.3-00.3[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]MO SMS[u]00.4-00.4[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]MT SMS[u]00.5-00.5[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Transit Call[u]00.6-00.6[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Roaming[u]00.7-00.7[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Reserved[u]01.0-01.0[u]select
+ [unit]Common Equipment[u]01.1-01.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]SS Action[u]01.2-01.2[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Term CAMEL[u]01.3-01.3[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]IMEI White List[u]01.4-01.4[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]IMEI Black List[u]01.5-01.5[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]IMEI Grey List[u]01.6-01.6[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]IMEI Unknown[u]01.7-01.7[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Reserved[u]02.0-02.7[u]select
+ [unit]Reserved[u]03.0-03.7[u]select
+ [remark]Control the Call Detail Record generation for different call types."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.2
+ maxCallDurationMO OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MO Max Call Duration
+ Remark:Define the permitted maximum call duration for MO call. Any ongoing call reaching this threshold will be compulsively cut off.
- Set 0 to disable this function."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.3
+ maxCallDurationMT OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MT Max Call Duration
+ Remark:Define the permitted maximum call duration for MT call. Any incoming call reaching this threshold will be compulsively cut off.
- Set 0 to disable this function."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.4
+ locationNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Location Number
+ Remark:Specify the location routing number for MNP service."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.5
+ suspendTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Suspend Timer
+ Remark:If receives ISUP SUSPEND message in an ISUP call, then start the suspend timer to wait for the ISUP RESUME message. If time out, then send RELEASE to ISUP. Unit is second."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.6
+ emlppPciOption OBJECT-TYPE
+ SYNTAX Opaque (SIZE (1))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:eMLPP PCI Option
+ OPAQUE DECODE RULE:
+ [unit]Reserved[u]00.0-00.0[u]select
+ [unit]Level A[u]00.1-00.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level B[u]00.2-00.2[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 0[u]00.3-00.3[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 1[u]00.4-00.4[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 2[u]00.5-00.5[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 3[u]00.6-00.6[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 4[u]00.7-00.7[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [remark]
+ The enhanced Multi-Level Precedence and Preemption (eMLPP) service provides the capability to classify the mobile subscribers according to a subscriber specific priority.
The Preemption Capability Indicator (PCI) is set when the traffic channel to be assigned may preempt (forced release) an existing connection with a lower priority level (active preemption)."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.7
+ emlppPviOption OBJECT-TYPE
+ SYNTAX Opaque (SIZE (1))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:eMLPP PVI Option
+ OPAQUE DECODE RULE:
+ [unit]Reserved[u]00.0-00.0[u]select
+ [unit]Level A[u]00.1-00.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level B[u]00.2-00.2[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 0[u]00.3-00.3[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 1[u]00.4-00.4[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 2[u]00.5-00.5[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 3[u]00.6-00.6[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 4[u]00.7-00.7[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [remark]
+ The enhanced Multi-Level Precedence and Preemption (eMLPP) service provides the capability to classify the mobile subscribers according to a subscriber specific priority.
The Preemption Vulnerability Indicator (PVI) is set when the traffic channel to be assigned can be preempted by another connection that might be established later with a higher priority level (passive preemption)."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.8
+ assignmentTimer OBJECT-TYPE
+ SYNTAX INTEGER (10..250)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Assignment Timer
+ Remark:Specify the maximum waiting time for receiving Assignment Complete message after the Assignment Request message has been sent. Unit is 100ms."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.9
+ pagingTimer OBJECT-TYPE
+ SYNTAX INTEGER (10..40)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Paging Timer
+ Remark:Specify the maximum waiting time for receiving Paging Response message after the Paging message has been sent. Unit is 1 second."
+ ::= { system 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.10
+ splitEtcNumber OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Split ETC Number
+ Remark:Allow or forbid splitting the Correlation ID and SCF ID in the Establish Temporary Connection message."
+ ::= { system 10 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2
+ routingZoneSet OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1
+ routingZoneSetTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RoutingZoneSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { routingZoneSet 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1
+ routingZoneSetEntry OBJECT-TYPE
+ SYNTAX RoutingZoneSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { rzsIndex }
+ ::= { routingZoneSetTable 1 }
+
+
+ RoutingZoneSetEntry ::=
+ SEQUENCE {
+ rzsIndex
+ INTEGER,
+ rzsTitle
+ DisplayString16,
+ rzsCreateTimeStamp
+ TimeStamp,
+ rzsDialingPrefixSetID
+ INTEGER,
+ rzsAnnouncementSetID
+ INTEGER,
+ rzsMSRNRangeStart
+ DisplayString16,
+ rzsMSRNRangeEnd
+ DisplayString16,
+ rzsSRFNumber0
+ DisplayString16,
+ rzsSRFNumber1
+ DisplayString16,
+ rzsCreateEntryRoutingSelection
+ INTEGER,
+ rzsRoutingSelectionEntries
+ INTEGER,
+ rzsRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.1
+ rzsIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Routing Zone Set index number ranges from 1 to 31."
+ ::= { routingZoneSetEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.2
+ rzsTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Routing Zone Set name for identification purpose only."
+ DEFVAL { "RZS#" }
+ ::= { routingZoneSetEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.3
+ rzsCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Routing Zone Set."
+ ::= { routingZoneSetEntry 3 }
+
+
+-- Dialing Prefix Set ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.4
+ rzsDialingPrefixSetID OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Dialing Prefix Set ID
+ Remark:Specify the Dialing Prefix Set to this Routing Zone Set."
+ DEFVAL { 0 }
+ ::= { routingZoneSetEntry 4 }
+
+
+-- Announcement(CUA) Set ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.5
+ rzsAnnouncementSetID OBJECT-TYPE
+ SYNTAX INTEGER (0..256)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Announcement Set ID
+ Remark:Specify the Announcement Set to this Routing Zone Set."
+ ::= { routingZoneSetEntry 5 }
+
+
+-- MSRN Range Start
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.6
+ rzsMSRNRangeStart OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSRN Start
+ Remark:The beginning of the MSRN range for this Routing Zone Set."
+ ::= { routingZoneSetEntry 6 }
+
+
+-- MSRN Range End
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.7
+ rzsMSRNRangeEnd OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSRN End
+ Remark:The end of the MSRN range for this Routing Zone Set."
+ ::= { routingZoneSetEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.8
+ rzsSRFNumber0 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SRF 0 Number
+ Remark:The E.164 node address of the SRF connecting to MSS platform 0."
+ ::= { routingZoneSetEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.9
+ rzsSRFNumber1 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SRF 1 Number
+ Remark:The E.164 node address of the SRF connecting to MSS platform 1."
+ ::= { routingZoneSetEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.10
+ rzsCreateEntryRoutingSelection OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { routingZoneSetEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.11
+ rzsRoutingSelectionEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Routing Selection Entries
+ Remark:The total number of configured Routing Selections in this Routing Zone Set."
+ ::= { routingZoneSetEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.12
+ rzsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { routingZoneSetEntry 12 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2
+ routingSelectionTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RoutingSelectionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { routingZoneSet 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1
+ routingSelectionEntry OBJECT-TYPE
+ SYNTAX RoutingSelectionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { rsIndex, rsRZSIndex }
+ ::= { routingSelectionTable 1 }
+
+
+ RoutingSelectionEntry ::=
+ SEQUENCE {
+ rsRZSIndex
+ INTEGER,
+ rsIndex
+ INTEGER,
+ rsTitle
+ DisplayString16,
+ rsCreateTimeStamp
+ TimeStamp,
+ rsTrunkGroup
+ INTEGER,
+ rsAlternativeTrunkGroupOption
+ INTEGER,
+ rsAlternativeTrunkGroup
+ INTEGER,
+ rsNAIForOutgoingCall
+ INTEGER,
+ rsNumberOfDigitDeletion
+ INTEGER,
+ rsInsertionNumber
+ DisplayString16,
+ rsRowStatus
+ RowStatus
+ }
+
+-- Route Selection RZS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.1
+ rsRZSIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:RSZ Index
+ Remark:Routing Zone Set Index for the Routing Selection."
+ ::= { routingSelectionEntry 1 }
+
+
+-- Route Selection Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.2
+ rsIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Routing Selection index number range from 1 to 31."
+ ::= { routingSelectionEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.3
+ rsTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Routing Selection name for identification purpose only."
+ DEFVAL { "RS#" }
+ ::= { routingSelectionEntry 3 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.4
+ rsCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Routing Selection."
+ ::= { routingSelectionEntry 4 }
+
+
+-- Trunk Group
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.5
+ rsTrunkGroup OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Trunk Group
+ Remark:Select the Trunk Group for the outgoing routing."
+ DEFVAL { 0 }
+ ::= { routingSelectionEntry 5 }
+
+
+-- Alternative Trunk Group Option
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.6
+ rsAlternativeTrunkGroupOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Alternative TG Flag
+ Remark:Enable or disable alternative Trunk Group when the primary Trunk Group is unavailable."
+ DEFVAL { disable }
+ ::= { routingSelectionEntry 6 }
+
+
+-- Alternative Trunk Group
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.7
+ rsAlternativeTrunkGroup OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Alternative TG
+ Remark:Specify the alternative Trunk Group. It's available only when the previous Alternative TG Flag is enabled."
+ DEFVAL { 0 }
+ ::= { routingSelectionEntry 7 }
+
+
+-- NAI For Outgoing Call
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.8
+ rsNAIForOutgoingCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sub(1),
+ unknown(2),
+ ndd(3),
+ idd(4),
+ UKSpecific(126)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NAI for Outgoing Call
+ Remark:Select the required Network Address Identifier (NAI). The NAI option enables the MSC to perform call routing."
+ ::= { routingSelectionEntry 8 }
+
+
+-- Number Of Digit Deletion
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.9
+ rsNumberOfDigitDeletion OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Deletion Count
+ Remark:Number of digits to be deleted from the beginning of the dialed number."
+ DEFVAL { 0 }
+ ::= { routingSelectionEntry 9 }
+
+
+-- Insertion Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.10
+ rsInsertionNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Inserted Digits
+ Remark:The digits to be inserted to the front of the dialed number."
+ DEFVAL { "FFFFFFFFFFFFFFFF" }
+ ::= { routingSelectionEntry 10 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.11
+ rsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { routingSelectionEntry 11 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3
+ dialingPrefixSet OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1
+ dialingPrefixSetTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF DialingPrefixSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { dialingPrefixSet 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1
+ dialingPrefixSetEntry OBJECT-TYPE
+ SYNTAX DialingPrefixSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { dpsIndex }
+ ::= { dialingPrefixSetTable 1 }
+
+
+ DialingPrefixSetEntry ::=
+ SEQUENCE {
+ dpsIndex
+ INTEGER,
+ dpsTitle
+ DisplayString16,
+ dpsCreateTimeStamp
+ TimeStamp,
+ dpsCC
+ DisplayString8,
+ dpsNDC
+ DisplayString8,
+ dpsInternationalPrefix
+ DisplayString8,
+ dpsNationalPrefix
+ DisplayString8,
+ dpsHPLMNCC0
+ DisplayString16,
+ dpsHPLMNCC1
+ DisplayString16,
+ dpsHPLMNCC2
+ DisplayString16,
+ dpsHPLMNCC3
+ DisplayString16,
+ dpsHPLMNCC4
+ DisplayString16,
+ dpsHPLMNCC5
+ DisplayString16,
+ dpsHPLMNCC6
+ DisplayString16,
+ dpsHPLMNCC7
+ DisplayString16,
+ dpsNumberPlanArea
+ DisplayString8,
+ dpsCreateEntryDialingPrefix
+ INTEGER,
+ dpsDialingPrefixEntries
+ INTEGER,
+ dpsRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.1
+ dpsIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Dialing Prefix Set index number ranges from 1 to 15."
+ ::= { dialingPrefixSetEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.2
+ dpsTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Dialing Prefix Set name for identification purpose only."
+ DEFVAL { "DPS#" }
+ ::= { dialingPrefixSetEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.3
+ dpsCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Dialing Prefix Set."
+ ::= { dialingPrefixSetEntry 3 }
+
+
+-- Country Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.4
+ dpsCC OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CC
+ Remark:Country Code identifies the country's network."
+ ::= { dialingPrefixSetEntry 4 }
+
+
+-- National Destination Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.5
+ dpsNDC OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NDC
+ Remark:National Destination Code defines the national calling area or national network to which the subscriber belongs."
+ ::= { dialingPrefixSetEntry 5 }
+
+
+-- International Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.6
+ dpsInternationalPrefix OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:International Prefix
+ Remark:Access code for international network."
+ ::= { dialingPrefixSetEntry 6 }
+
+
+-- National Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.7
+ dpsNationalPrefix OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:National Prefix
+ Remark:National prefix for the operating country to make a national call."
+ DEFVAL { "0" }
+ ::= { dialingPrefixSetEntry 7 }
+
+
+-- HPLMN CC0
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.8
+ dpsHPLMNCC0 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 0
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 8 }
+
+
+-- HPLMN CC1
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.9
+ dpsHPLMNCC1 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 1
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 9 }
+
+
+-- HPLMN CC2
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.10
+ dpsHPLMNCC2 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 2
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 10 }
+
+
+-- HPLMN CC3
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.11
+ dpsHPLMNCC3 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 3
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 11 }
+
+
+-- HPLMN CC4
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.12
+ dpsHPLMNCC4 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 4
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 12 }
+
+
+-- HPLMN CC5
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.13
+ dpsHPLMNCC5 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 5
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 13 }
+
+
+-- HPLMN CC6
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.14
+ dpsHPLMNCC6 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 6
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 14 }
+
+
+-- HPLMN CC7
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.15
+ dpsHPLMNCC7 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 7
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.16
+ dpsNumberPlanArea OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Number Plan Area
+ Remark:Specify number plan area number for MNP outbound."
+ ::= { dialingPrefixSetEntry 16 }
+
+
+-- Dialing Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.17
+ dpsCreateEntryDialingPrefix OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { dialingPrefixSetEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.18
+ dpsDialingPrefixEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..1024)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Dialing Prefix Entries
+ Remark:The total number of the configured Dialing Prefixes in this Dialing Prefix Set."
+ ::= { dialingPrefixSetEntry 18 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.17
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.19
+ dpsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { dialingPrefixSetEntry 19 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2
+ dialingPrefixTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF DialingPrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { dialingPrefixSet 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1
+ dialingPrefixEntry OBJECT-TYPE
+ SYNTAX DialingPrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { dpIndex, dpDPSIndex }
+ ::= { dialingPrefixTable 1 }
+
+
+ DialingPrefixEntry ::=
+ SEQUENCE {
+ dpDPSIndex
+ INTEGER,
+ dpIndex
+ INTEGER,
+ dpTitle
+ DisplayString16,
+ dpLookupMethod
+ INTEGER,
+ dpCallNumberPrefix
+ DisplayString16,
+ dpStartNumber
+ DisplayString16,
+ dpEndNumber
+ DisplayString16,
+ dpCallNumberAttribute
+ INTEGER,
+ dpAdministrationState
+ AdminStateChoices,
+ dpCallNumberLength
+ INTEGER,
+ dpServiceType
+ INTEGER,
+ dpEmergencyType
+ INTEGER,
+ dpServiceKey
+ INTEGER,
+ dpNumberType
+ INTEGER,
+ dpCLIType
+ INTEGER,
+ dpRSC
+ INTEGER,
+ dpCDRFlag
+ INTEGER,
+ dpOptionForSRFMNP
+ INTEGER,
+ dpMSCOptionForINMNP
+ INTEGER,
+ dpGMSCOptionForINMNP
+ INTEGER,
+ dpPremiumCall
+ INTEGER,
+ dpOSB1Flag
+ INTEGER,
+ dpOSB2Flag
+ INTEGER,
+ dpNAIForOutgoingCall
+ INTEGER,
+ dpPSTNNumberOfDigitDeletion
+ INTEGER,
+ dpPSTNInsertionNumber
+ DisplayString16,
+ dpE164NumberOfDigitDeletion
+ INTEGER,
+ dpE164InsertionNumber
+ DisplayString16,
+ dpRowStatus
+ RowStatus
+ }
+
+-- DP DPS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.1
+ dpDPSIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..15)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:DPS Index
+ Remark:Dialing Prefix Set index number for this Dialing Prefix."
+ ::= { dialingPrefixEntry 1 }
+
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.2
+ dpIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..1024)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Dialing Prefix index number ranges from 1 to 1024."
+ ::= { dialingPrefixEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.3
+ dpTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Dialing Prefix name for identification purpose only."
+ ::= { dialingPrefixEntry 3 }
+
+
+-- Lookup Method
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.4
+ dpLookupMethod OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ prefixLookup(0),
+ groupLookup(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Lookup Method
+ Remark:Select a dialing plan lookup method. Group Lookup Method has a higher priority than Prefix Lookup Method."
+ DEFVAL { prefix }
+ ::= { dialingPrefixEntry 4 }
+
+
+-- Call Number Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.5
+ dpCallNumberPrefix OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Prefix
+ Remark:A combination digits that dial to originate a call. It's only valid when the lookup method selected Prefix."
+ ::= { dialingPrefixEntry 5 }
+
+
+-- Start Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.6
+ dpStartNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Group Prefix Start
+ Remark:The beginning of the group prefix range. It's only valid when the lookup method selected Group."
+ ::= { dialingPrefixEntry 6 }
+
+
+-- End Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.7
+ dpEndNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Group Prefix End
+ Remark:The end of the group prefix range. Start prefix and end prefix must have the same length."
+ ::= { dialingPrefixEntry 7 }
+
+
+-- Call Number Attribute
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.8
+ dpCallNumberAttribute OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sub(1),
+ unknown(2),
+ ndd(3),
+ idd(4),
+ UKSpecific(126)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Number Attribute
+ Remark:The original type of the incoming number. It is specified by originating node for terminating node to route this call with proper dialed number manipulation."
+ ::= { dialingPrefixEntry 8 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.9
+ dpAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:The state of the current Dialing Prefix entry."
+ ::= { dialingPrefixEntry 9 }
+
+
+-- Call Number Length
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.10
+ dpCallNumberLength OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Number Length
+ Remark:The length of the dialed number. Set 0 for uncertain length."
+ DEFVAL { 0 }
+ ::= { dialingPrefixEntry 10 }
+
+
+-- Service Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.11
+ dpServiceType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ normalCall(0),
+ emergencyCall(1),
+ intelligentCall(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Service Type
+ Remark:Service type of the outgoing call:
- Normal = No verification for MT
- Emergency Call = No verification for MO (free call)
- Intelligent Call = Calls to intelligent peripheral"
+ DEFVAL { normalCall }
+ ::= { dialingPrefixEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.12
+ dpEmergencyType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ zero(0),
+ one(1),
+ two(2),
+ three(3),
+ four(4),
+ five(5),
+ six(6),
+ seven(7)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Type
+ Remark:Specify index number which associated with the 8 emergency call numbers in Location Area or Cell setting."
+ DEFVAL { zero }
+ ::= { dialingPrefixEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.13
+ dpServiceKey OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Service Key
+ Remark:Specify service hot key which associated with the service key configuration in the PPS SRF setting."
+ ::= { dialingPrefixEntry 13 }
+
+
+-- Number Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.14
+ dpNumberType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ msisdn(0),
+ msrn(1),
+ pstn(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Number Type
+ Remark:It determines how the numbers are sent out."
+ DEFVAL { msisdn }
+ ::= { dialingPrefixEntry 14 }
+
+
+-- CLI Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.15
+ dpCLIType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sub(0),
+ ndd(1),
+ idd(2),
+ unknownSub(3),
+ unknownNdd(4),
+ unknownIdd(5)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CLI Type
+ Remark:It determines the format of the Caller Line ID (CLI).
- Sub = Unknown(Sub) = SN
- NDD = NDC+SN
- Unknown(NDD) = Nat Prefix+NDC+SN
- IDD = +CC+NDC+SN
- Unknown(IDD) = Int Prefix+CC+NDC+SN"
+ DEFVAL { ndd }
+ ::= { dialingPrefixEntry 15 }
+
+
+-- Routing Selection Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.16
+ dpRSC OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Routing Selection ID
+ Remark:Specify the Routing Selection ID to this Dialing Prefix."
+ DEFVAL { 0 }
+ ::= { dialingPrefixEntry 16 }
+
+
+-- CDR Flag
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.17
+ dpCDRFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CDR Flag
+ Remark:Enable or disable the Call Detail Record generation of this prefix."
+ DEFVAL { enable }
+ ::= { dialingPrefixEntry 17 }
+
+
+-- MNP Flag
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.18
+ dpOptionForSRFMNP OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ portableNumber(1),
+ portedNumber(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SRF-MNP Flag
+ Remark:Enable if this prefix relating to SRF MNP service."
+ DEFVAL { disable }
+ ::= { dialingPrefixEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.19
+ dpMSCOptionForINMNP OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ OQoD(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:IN-MNP Flag (MSC)
+ Remark:Enable or disable IN MNP service when the system performs as an MSC."
+ ::= { dialingPrefixEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.20
+ dpGMSCOptionForINMNP OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ TQoD(1),
+ QoHR(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:IN-MNP Flag (GMSC)
+ Remark:Enable or disable IN MNP service when the system performs as a GMSC."
+ ::= { dialingPrefixEntry 20 }
+
+
+-- Premium Call
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.21
+ dpPremiumCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ information(1),
+ entertainment(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Premium Call Flag
+ Remark:Enable if this prefix relating to Premium Call service."
+ DEFVAL { disable }
+ ::= { dialingPrefixEntry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.22
+ dpOSB1Flag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OSB 1 Flag
+ Remark:Subscribers with OSB type 1 can only make calls to this dialing prefix with Call Allow Flag enabled."
+ DEFVAL { disable }
+ ::= { dialingPrefixEntry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.23
+ dpOSB2Flag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OSB 2 Flag
+ Remark:Subscribers with OSB type 2 can't make calls to this dialing prefix with Call Bar Flag enabled."
+ DEFVAL { disable }
+ ::= { dialingPrefixEntry 23 }
+
+
+-- NAI For Outgoing Call
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.24
+ dpNAIForOutgoingCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sub(1),
+ unknown(2),
+ ndd(3),
+ idd(4),
+ UKSpecific(126)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NAI for Outgoing Call
+ Remark:Select the required Network Address Identifier (NAI). The transformed incoming number will be routed to the associated trunk group."
+ ::= { dialingPrefixEntry 24 }
+
+
+-- PSTN Number Of Digit Deletion
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.25
+ dpPSTNNumberOfDigitDeletion OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PSTN Deletion Count
+ Remark:Number of digits to be deleted from the beginning of the dialed number."
+ DEFVAL { 0 }
+ ::= { dialingPrefixEntry 25 }
+
+
+-- PSTN Insertion Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.26
+ dpPSTNInsertionNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PSTN Inserted Digits
+ Remark:Digits of the number to be added to the front of the dialed number."
+ DEFVAL { 'FFFFFFFFFFFFFFFF'h }
+ ::= { dialingPrefixEntry 26 }
+
+
+-- E164 Number Of Digit Deletion
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.17
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.27
+ dpE164NumberOfDigitDeletion OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:E.164 Deletion Count
+ Remark:Number of digits to be deleted from the beginning of the incoming number."
+ ::= { dialingPrefixEntry 27 }
+
+
+-- E164 Insertion Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.18
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.28
+ dpE164InsertionNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:E.164 Inserted Digits
+ Remark:Digits of the number to be added to the front of the incoming number to convert it to an international E.164 format."
+ DEFVAL { 'FFFFFFFFFFFFFFFF'h }
+ ::= { dialingPrefixEntry 28 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.19
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.29
+ dpRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { dialingPrefixEntry 29 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4
+ trunkGroup OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1
+ trunkGroupTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkGroupEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkGroup 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1
+ trunkGroupEntry OBJECT-TYPE
+ SYNTAX TrunkGroupEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { tgIndex }
+ ::= { trunkGroupTable 1 }
+
+
+ TrunkGroupEntry ::=
+ SEQUENCE {
+ tgIndex
+ INTEGER,
+ tgTitle
+ DisplayString16,
+ tgCreateTimeStamp
+ TimeStamp,
+ tgAdministrationState
+ AdminStateChoices,
+ tgOperabilityStatus
+ OperStateChoices,
+ tgAvailabilityStatus
+ AvailStateChoices,
+ tgOPC
+ INTEGER,
+ tgDPC
+ INTEGER,
+ tgNetworkIndicator
+ INTEGER,
+ tgProtocolType
+ INTEGER,
+ tgProtocolVariant
+ INTEGER,
+ tgLocalDomain
+ OCTET STRING,
+ tgDestDomain
+ OCTET STRING,
+ tgDestIP0
+ IpAddress,
+ tgDestIP1
+ IpAddress,
+ tgDestPort
+ INTEGER,
+ tgRemoteProcessISUP
+ INTEGER,
+ tgTONIncomingSIPCall
+ INTEGER,
+ tgCircuitSelectionMode
+ INTEGER,
+ tgBackoffFlag
+ INTEGER,
+ tgTandemRestriction
+ INTEGER,
+ tgCDRFlag
+ INTEGER,
+ tgTrunkGroupType
+ INTEGER,
+ tgRoutingZoneID
+ INTEGER,
+ tgAlternativeRoutingTrigger
+ INTEGER,
+ tgIgnoreNumberPortabilityInformation
+ INTEGER,
+ tgSignalPortedNumber
+ INTEGER,
+ tgNFAS
+ INTEGER,
+ tgPrimaryLink
+ INTEGER,
+ tgBackupLink
+ INTEGER,
+ tgBSCCodec
+ Opaque,
+ tgEchoControlDeviceIndicator
+ INTEGER,
+ tgSatelliteIndicator
+ INTEGER,
+ tgCreateEntryTrunk
+ INTEGER,
+ tgTrunkEntries
+ INTEGER,
+ tgRowStatus
+ RowStatus,
+ tgEventLog
+ DisplayString,
+ tgExtendProtocolType
+ INTEGER
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.1
+ tgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Trunk Group index number ranges from 1 to 255."
+ ::= { trunkGroupEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.2
+ tgTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Trunk Group name for identification purpose only."
+ DEFVAL { "TG#" }
+ ::= { trunkGroupEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.3
+ tgCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Trunk Group."
+ ::= { trunkGroupEntry 3 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.4
+ tgAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed Trunk Group."
+ ::= { trunkGroupEntry 4 }
+
+
+-- Operability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.5
+ tgOperabilityStatus OBJECT-TYPE
+ SYNTAX OperStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Oper State
+ Remark:(Read Only) Indicate the current Trunk Group operation is qualified by Availability State."
+ ::= { trunkGroupEntry 5 }
+
+
+-- Availability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.6
+ tgAvailabilityStatus OBJECT-TYPE
+ SYNTAX AvailStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Avail State
+ Remark:(Read Only) Qualify Operation State providing details about the current operational state."
+ ::= { trunkGroupEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.7
+ tgOPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPC
+ Remark:The Originating Point Code of the current TG."
+ ::= { trunkGroupEntry 7 }
+
+
+-- DPC
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.8
+ tgDPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:DPC
+ Remark:The Destination Point Code of the current TG."
+ ::= { trunkGroupEntry 8 }
+
+
+-- Network Indication
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.9
+ tgNetworkIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ int(0),
+ intSpare(1),
+ nat(2),
+ natSpare(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NI
+ Remark:Network Indicator specifies the Trunk Group to a network."
+ DEFVAL { int }
+ ::= { trunkGroupEntry 9 }
+
+
+-- Protocol Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.10
+ tgProtocolType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ aif(0),
+ isup(1),
+ bicc(2),
+ isdn(3),
+ sip(5),
+ staticConnection(7),
+ iuCS(8)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Protocol Type
+ Remark:Select the protocol type for this Trunk Group."
+ ::= { trunkGroupEntry 10 }
+
+
+-- Protocol Variant
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.11
+ tgProtocolVariant OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ itu(0),
+ ansi(1),
+ etsi(2),
+ uk(3),
+ Qsig(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Protocol Variant
+ Remark:Select the protocol variant for this Trunk Group."
+ DEFVAL { itu }
+ ::= { trunkGroupEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.12
+ tgLocalDomain OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Local Domain
+ Remark:(For SIP) Define the local domain name for a SIP TG."
+ ::= { trunkGroupEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.13
+ tgDestDomain OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Dest Domain
+ Remark:(For SIP) Specify the destination domain name for a SIP TG."
+ ::= { trunkGroupEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.14
+ tgDestIP0 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Dest IP 0
+ Remark:(For SIP) Specify the destination IP address for a SIP TG."
+ ::= { trunkGroupEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.15
+ tgDestIP1 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Dest IP 1
+ Remark:(For SIP) Specify the destination IP address for a SIP TG."
+ ::= { trunkGroupEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.16
+ tgDestPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Dest Port
+ Remark:(For SIP) Specify the destination port for a SIP TG."
+ ::= { trunkGroupEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.17
+ tgRemoteProcessISUP OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notSupport(0),
+ support(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Remote Process ISUP
+ Remark:(For SIP) Indicate whether the remote SIP UA is able to process ISUP in SIP-ISUP interworking."
+ ::= { trunkGroupEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.18
+ tgTONIncomingSIPCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ CLIR(0),
+ Sub(1),
+ Unknown(2),
+ NDD(3),
+ IDD(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Incoming SIP Calls TON
+ Remark:(For SIP) Manipulate the type of calling number for a SIP TG. It doesn't take effect when the calling number's attribute is International. It is used for Calling Line Identification Presentation (CLIP) of incoming SIP calls."
+ ::= { trunkGroupEntry 18 }
+
+
+-- Circuit Selection Mode
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.19
+ tgCircuitSelectionMode OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ clockwise(0),
+ antiClockwise(1),
+ lowToHigh(128),
+ highToLow(129)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Circuit Selection
+ Remark:Circuit selection mode of the traffic channel connections."
+ DEFVAL { clockwise }
+ ::= { trunkGroupEntry 19 }
+
+
+-- Backoff Flag
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.20
+ tgBackoffFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Backoff Flag
+ Remark:Enable or disable back off when simultaneously select the same channel with the opposite side."
+ DEFVAL { enable }
+ ::= { trunkGroupEntry 20 }
+
+
+-- Tandem Restriction
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.21
+ tgTandemRestriction OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Tandem Restriction
+ Remark:Enable or disable Tandem to allow or prohibit transit calls from PSTN to PSTN via this trunk group."
+ DEFVAL { enable }
+ ::= { trunkGroupEntry 21 }
+
+
+-- CDR Flag
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.22
+ tgCDRFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CDR Flag
+ Remark:Enable or disable the Call Detail Record generation of this Trunk Group."
+ DEFVAL { enable }
+ ::= { trunkGroupEntry 22 }
+
+
+-- Trunk Group Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.23
+ tgTrunkGroupType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ normal(0),
+ interconnectionForMSS0(16),
+ interconnectionForMSS1(17)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:TG Type
+ Remark:Application type of this Trunk Group."
+ DEFVAL { normal }
+ ::= { trunkGroupEntry 23 }
+
+
+-- Routing Zone ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.24
+ tgRoutingZoneID OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:RZS ID
+ Remark:Specify the Trunk Group to a Routing Zone Set. Set 255 to apply this TG in all Routing Zone Sets."
+ DEFVAL { 0 }
+ ::= { trunkGroupEntry 24 }
+
+
+-- Alternative Routing Trigger
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.17
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.25
+ tgAlternativeRoutingTrigger OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Alternative RZS Trigger
+ Remark:Specify the Trunk Group to an alternative Routing Zone Set for backup purpose.
- 0 = Disable Alternative Routing Zone Set"
+ DEFVAL { 0 }
+ ::= { trunkGroupEntry 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.26
+ tgIgnoreNumberPortabilityInformation OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Ignore MNP Info
+ Remark:(For MNP) In the MNP port-in processing, enable to ignore the optional parameters in the incoming IAM message."
+ ::= { trunkGroupEntry 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.27
+ tgSignalPortedNumber OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Signal Ported Number
+ Remark:(For MNP) In the MNP port-out processing, enable to ignore the optional parameters in the outgoing IAM message."
+ ::= { trunkGroupEntry 27 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.28
+ tgNFAS OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NFAS Flag
+ Remark:(For ISDN) Enable or disable Non-Facility Associated Signaling (NFAS) with D Channel Backup feature."
+ ::= { trunkGroupEntry 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.29
+ tgPrimaryLink OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Primary Link
+ Remark:(For ISDN) Specify the primary D channel to control multiple trunks."
+ ::= { trunkGroupEntry 29 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.30
+ tgBackupLink OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Backup Link
+ Remark:(For ISDN) Specify a backup D channel for use when the primary NFAS D channel is unavailable."
+ ::= { trunkGroupEntry 30 }
+
+
+-- Codec Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.31
+ tgBSCCodec OBJECT-TYPE
+ SYNTAX Opaque (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Codec 0[u]00.0-00.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 1[u]01.0-01.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 2[u]02.0-02.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 3[u]03.0-03.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 4[u]04.0-04.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 5[u]05.0-05.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 6[u]06.0-06.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 7[u]07.0-07.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 8[u]08.0-08.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 9[u]09.0-09.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 10[u]10.0-10.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 11[u]11.0-11.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 12[u]12.0-12.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 13[u]13.0-13.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 14[u]14.0-14.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 15[u]15.0-15.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [remark]
+ Specify the codec type of the BSC. It is available only for circuit BSC.
Entry 0 is the highest priority, entry 13 is the lowest."
+ ::= { trunkGroupEntry 31 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.32
+ tgEchoControlDeviceIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Echo Control Device Indicator
+ Remark:Indicate including echo control device in outbound IAM message or not."
+ ::= { trunkGroupEntry 32 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.33
+ tgSatelliteIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ noSatelliteCircuit(0),
+ oneSatelliteCircuit(1),
+ twoSatelliteCircuit(2),
+ transit(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify the bearing value of the Satellite Indicator in the outgoing ISUP IAM message. For Transit, just adopts the same value from incoming ISUP IAM message."
+ ::= { trunkGroupEntry 33 }
+
+
+-- Trunk
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.18
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.34
+ tgCreateEntryTrunk OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { trunkGroupEntry 34 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.35
+ tgTrunkEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Trunk Entries
+ Remark:The total number of configured Trunks in this Trunk Group."
+ ::= { trunkGroupEntry 35 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.19
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.36
+ tgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { trunkGroupEntry 36 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.37
+ tgEventLog OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkGroupEntry 37 }
+
+
+-- Protocol Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.38
+ tgExtendProtocolType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ none(0),
+ aoip(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Extend Protocol Type
+ Remark:Select the extend protocol type for this Trunk Group. Such as AOIP"
+ ::= { trunkGroupEntry 38 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2
+ trunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkGroup 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1
+ trunkEntry OBJECT-TYPE
+ SYNTAX TrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { trunkIndex, trunkTGIndex }
+ ::= { trunkTable 1 }
+
+
+ TrunkEntry ::=
+ SEQUENCE {
+ trunkTGIndex
+ INTEGER,
+ trunkIndex
+ INTEGER,
+ trunkTitle
+ DisplayString16,
+ trunkCreateTimeStamp
+ TimeStamp,
+ trunkAdministrationState
+ AdminStateChoices,
+ trunkOperabilityStatus
+ OperStateChoices,
+ trunkAvailabilityStatus
+ AvailStateChoices,
+ trunkMgID
+ INTEGER,
+ trunkPortID
+ INTEGER,
+ trunkPortType
+ INTEGER,
+ trunkGroupID
+ INTEGER,
+ trunkSupervisionMethod
+ INTEGER,
+ trunkLinkID
+ INTEGER,
+ trunkUserNetworkInterface
+ INTEGER,
+ trunkCICValueAssignment
+ INTEGER,
+ trunkChannelInUse
+ INTEGER,
+ trunkChannelEntries
+ INTEGER,
+ trunkRowStatus
+ RowStatus
+ }
+
+-- Trunk TG Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.1
+ trunkTGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:TG Index
+ Remark:Trunk Group index number for the Trunk."
+ ::= { trunkEntry 1 }
+
+
+-- Trunk Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.2
+ trunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Trunk index number ranges from 1 to 32."
+ ::= { trunkEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.3
+ trunkTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Trunk name for identification purpose only."
+ DEFVAL { "TK#" }
+ ::= { trunkEntry 3 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.4
+ trunkCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Trunk"
+ ::= { trunkEntry 4 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.5
+ trunkAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed Trunk."
+ ::= { trunkEntry 5 }
+
+
+-- Operability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.6
+ trunkOperabilityStatus OBJECT-TYPE
+ SYNTAX OperStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Oper State
+ Remark:(Read Only) Indicate the current Trunk operation is qualified by Availability Status."
+ ::= { trunkEntry 6 }
+
+
+-- Availability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.7
+ trunkAvailabilityStatus OBJECT-TYPE
+ SYNTAX AvailStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Avail State
+ Remark:(Read Only) Qualify Operation State providing details about the current operational state."
+ ::= { trunkEntry 7 }
+
+
+-- MG ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.8
+ trunkMgID OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MG ID
+ Remark:Specify the Trunk to a Media Gateway. Not applicable to virtual MG."
+ DEFVAL { 0 }
+ ::= { trunkEntry 8 }
+
+
+-- Port ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.9
+ trunkPortID OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Port ID
+ Remark:Specify the Trunk to a physical port of the selected Media Gateway. Not applicable to virtual MG."
+ ::= { trunkEntry 9 }
+
+
+-- Port Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.10
+ trunkPortType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ e1(0),
+ t1(1),
+ analogue(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Port Type
+ Remark:Specify the type of MG physical ports."
+ DEFVAL { enable }
+ ::= { trunkEntry 10 }
+
+
+-- Group ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.11
+ trunkGroupID OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ group0(0),
+ group1(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Group ID
+ Remark:Select the application group for the Trunk.
- Group0 = Master is MSC 0
- Group1 = Master is MSC1"
+ DEFVAL { group0 }
+ ::= { trunkEntry 11 }
+
+
+-- Typical CIC Assignment Plan
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.12
+ trunkSupervisionMethod OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ circuitGroup(0),
+ circuit(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Supervision Method
+ Remark:Specify the type of block request indication delivered in the ISUP trunk initialization process."
+ DEFVAL { enable }
+ ::= { trunkEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.13
+ trunkLinkID OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Link ID
+ Remark:(For ISDN) Specify the corresponding IUA link ID which is configured in the MTP3 setting."
+ ::= { trunkEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.14
+ trunkUserNetworkInterface OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ networkSide(0),
+ userSide(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:User Network Interface
+ Remark:(For ISDN) Select Q.931 switch type for ISDN call processing."
+ ::= { trunkEntry 14 }
+
+
+-- Typical CIC Value Assignment
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.15
+ trunkCICValueAssignment OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CIC Assignment
+ Remark:Specify the start CIC to the Trunk for typical mode.
- E1 = 0, 32, 64 ...
- T1 = 0, 24, 48 ..."
+ ::= { trunkEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.16
+ trunkChannelInUse OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Channel in Use
+ Remark:(Read Only) Display the quantity of occupied channels of this trunk in real-time."
+ ::= { trunkEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.17
+ trunkChannelEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Channel Entries
+ Remark:The total number of configured Channels in this Trunk."
+ ::= { trunkEntry 17 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.18
+ trunkRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { trunkEntry 18 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3
+ channelTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ChannelEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkGroup 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1
+ channelEntry OBJECT-TYPE
+ SYNTAX ChannelEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:3"
+ INDEX { tsTrunkIndex, tsIndex, tsTrunkTGIndex }
+ ::= { channelTable 1 }
+
+
+ ChannelEntry ::=
+ SEQUENCE {
+ tsTrunkTGIndex
+ INTEGER,
+ tsTrunkIndex
+ INTEGER,
+ tsIndex
+ INTEGER,
+ tsType
+ INTEGER,
+ tsChannelCIC
+ INTEGER,
+ tsChannelStatus
+ INTEGER,
+ tsLocalBlock
+ INTEGER,
+ tsRemoteBlock
+ INTEGER
+ }
+
+-- CIC Trunk TG Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.1
+ tsTrunkTGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:TG Index
+ Remark:Trunk Group index number for this Timeslot."
+ ::= { channelEntry 1 }
+
+
+-- CIC Trunk Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.2
+ tsTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Trunk Index
+ Remark:Trunk index number for this Timeslot."
+ ::= { channelEntry 2 }
+
+
+-- CIC Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.3
+ tsIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Timeslot index number ranges from 1 to 32."
+ ::= { channelEntry 3 }
+
+
+-- CIC Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.4
+ tsType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ incoming(1),
+ outgoing(2),
+ bidirectional(3),
+ leaseLine(4),
+ dChannel(5),
+ xChannel(6)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Type
+ Remark:Specify the type of the channel."
+ DEFVAL { bidirectiona }
+ ::= { channelEntry 4 }
+
+
+-- Channel CIC
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.5
+ tsChannelCIC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CIC
+ Remark:Assign a Circuit Identity Code (CIC) to the channel."
+ ::= { channelEntry 5 }
+
+
+-- Call Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.6
+ tsChannelStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ outOfService(0),
+ idle(1),
+ busy(2),
+ iPALIMUsed(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Status
+ Remark:(Read Only) The current status of the serving channel."
+ ::= { channelEntry 6 }
+
+
+-- Local Block
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.7
+ tsLocalBlock OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ unblocked(0),
+ localBlocked(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Local Block
+ Remark:(Read Only) Display the local block error if the channel is out of service."
+ ::= { channelEntry 7 }
+
+
+-- Remote Block
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.8
+ tsRemoteBlock OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ unblocked(0),
+ remoteBlocked(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Remote Block
+ Remark:(Read Only) Display the remote block error if the channel is out of service."
+ ::= { channelEntry 8 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5
+ locationArea OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1
+ locationAreaTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LocationAreaEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { locationArea 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1
+ locationAreaEntry OBJECT-TYPE
+ SYNTAX LocationAreaEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { laIndex }
+ ::= { locationAreaTable 1 }
+
+
+ LocationAreaEntry ::=
+ SEQUENCE {
+ laIndex
+ INTEGER,
+ laTitle
+ DisplayString16,
+ laCreateTimeStamp
+ TimeStamp,
+ laLAC
+ INTEGER,
+ laTrunkGroup
+ INTEGER,
+ laPageType
+ INTEGER,
+ laNumberOfRepeatPaging
+ INTEGER,
+ laNITZ
+ Opaque,
+ laLocalEmergencyNumber0
+ DisplayString16,
+ laLocalEmergencyNumber1
+ DisplayString16,
+ laLocalEmergencyNumber2
+ DisplayString16,
+ laLocalEmergencyNumber3
+ DisplayString16,
+ laLocalEmergencyNumber4
+ DisplayString16,
+ laLocalEmergencyNumber5
+ DisplayString16,
+ laLocalEmergencyNumber6
+ DisplayString16,
+ laLocalEmergencyNumber7
+ DisplayString16,
+ laCreateEntryCell
+ INTEGER,
+ laCellEntries
+ INTEGER,
+ laRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.1
+ laIndex OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Location Area index number ranges from 1 to 1023."
+ ::= { locationAreaEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.2
+ laTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Location Area name for identification purpose only."
+ DEFVAL { "LA#" }
+ ::= { locationAreaEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.3
+ laCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Location Area."
+ ::= { locationAreaEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.4
+ laLAC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:LAC
+ Remark:Specify the Location Area Code of this location area.
- Range = 1 - 65535"
+ ::= { locationAreaEntry 4 }
+
+
+-- Trunk Group
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.5
+ laTrunkGroup OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Trunk Group
+ Remark:Specify the serving Trunk Group of this location area."
+ ::= { locationAreaEntry 5 }
+
+
+-- Page Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.6
+ laPageType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ byLAC(0),
+ byAllCell(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Paging Mode
+ Remark:Paging messages broadcast in the specified location area or in the whole network."
+ DEFVAL { byLAC }
+ ::= { locationAreaEntry 6 }
+
+
+-- Number Of Repeat Paging
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.7
+ laNumberOfRepeatPaging OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Repeat Paging Times
+ Remark:Specify the subsequent paging times if the initial paging fails."
+ DEFVAL { 2 }
+ ::= { locationAreaEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.8
+ laNITZ OBJECT-TYPE
+ SYNTAX Opaque (SIZE (35))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NITZ
+ Remark:Network Identity and Time Zone"
+ ::= { locationAreaEntry 8 }
+
+
+-- Local Emergency Number0
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.9
+ laLocalEmergencyNumber0 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 0
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 9 }
+
+
+-- Local Emergency Number1
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.10
+ laLocalEmergencyNumber1 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 1
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 10 }
+
+
+-- Local Emergency Number2
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.11
+ laLocalEmergencyNumber2 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 2
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 11 }
+
+
+-- Local Emergency Number3
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.12
+ laLocalEmergencyNumber3 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 3
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 12 }
+
+
+-- Local Emergency Number4
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.13
+ laLocalEmergencyNumber4 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 4
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 13 }
+
+
+-- Local Emergency Number5
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.14
+ laLocalEmergencyNumber5 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 5
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 14 }
+
+
+-- Local Emergency Number6
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.15
+ laLocalEmergencyNumber6 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 6
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 15 }
+
+
+-- Local Emergency Number7
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.16
+ laLocalEmergencyNumber7 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 7
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 16 }
+
+
+-- Cell
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.17
+ laCreateEntryCell OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { locationAreaEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.18
+ laCellEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Cell Entries
+ Remark:The total number of configured Cells in this Location Area."
+ ::= { locationAreaEntry 18 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.19
+ laRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { locationAreaEntry 19 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2
+ cellTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF CellEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { locationArea 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1
+ cellEntry OBJECT-TYPE
+ SYNTAX CellEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { cellIndex, cellLAIndex }
+ ::= { cellTable 1 }
+
+
+ CellEntry ::=
+ SEQUENCE {
+ cellLAIndex
+ INTEGER,
+ cellIndex
+ INTEGER,
+ cellTitle
+ DisplayString16,
+ cellCreateTimeStamp
+ TimeStamp,
+ cellRoutingZoneID
+ INTEGER,
+ cellRegionalSubscriptionZoneCode
+ INTEGER,
+ cellCellID
+ INTEGER,
+ cellLatitude
+ Opaque,
+ cellLongitude
+ Opaque,
+ cellLocalEmergencyNumber0
+ DisplayString16,
+ cellLocalEmergencyNumber1
+ DisplayString16,
+ cellLocalEmergencyNumber2
+ DisplayString16,
+ cellLocalEmergencyNumber3
+ DisplayString16,
+ cellLocalEmergencyNumber4
+ DisplayString16,
+ cellLocalEmergencyNumber5
+ DisplayString16,
+ cellLocalEmergencyNumber6
+ DisplayString16,
+ cellLocalEmergencyNumber7
+ DisplayString16,
+ cellRowStatus
+ RowStatus
+ }
+
+-- Cell Location Area Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.1
+ cellLAIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:LA Index
+ Remark:Location Area index number for this Cell."
+ ::= { cellEntry 1 }
+
+
+-- Cell Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.2
+ cellIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..16)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Cell index number ranges from 1 to 16."
+ ::= { cellEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.3
+ cellTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Cell name for identification purpose only."
+ DEFVAL { "CELL#" }
+ ::= { cellEntry 3 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.4
+ cellCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Cell."
+ ::= { cellEntry 4 }
+
+
+-- Rounting Zone ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.5
+ cellRoutingZoneID OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:RZS ID
+ Remark:Specify the Routing Zone Set to this Cell."
+ DEFVAL { 0 }
+ ::= { cellEntry 5 }
+
+
+-- Regional Subscription Zone Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.6
+ cellRegionalSubscriptionZoneCode OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:RSZC
+ Remark:Assign a Regional Subscription Zone Code (RSZC) to the LAC.
- RSZC = CC + NDC + Zone Code"
+ DEFVAL { 'FF'h }
+ ::= { cellEntry 6 }
+
+
+-- Cell ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.7
+ cellCellID OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Cell ID
+ Remark:Global Cell Identity defined in GSM 03.03.
- Range = 0 - 65535"
+ ::= { cellEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.8
+ cellLatitude OBJECT-TYPE
+ SYNTAX Opaque (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Latitude[u]00.0-03.7[u]input
+ [v]toLatitude-formula-pow(2,23)/90
+ [remark]
+ Specify the latitude of this cell for a location service use.
- Range = -90.00 - 90.00"
+ ::= { cellEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.9
+ cellLongitude OBJECT-TYPE
+ SYNTAX Opaque (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Longitude[u]00.0-03.7[u]input
+ [v]toLongitude-formula-pow(2,24)/360
+ [remark]
+ Specify the longitude of this cell for a location service use.
- Range = -180.00 - 180.00"
+ ::= { cellEntry 9 }
+
+
+-- Cell Local Emergency Number0
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.10
+ cellLocalEmergencyNumber0 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 0
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 10 }
+
+
+-- Cell Local Emergency Number1
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.11
+ cellLocalEmergencyNumber1 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 1
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 11 }
+
+
+-- Cell Local Emergency Number2
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.12
+ cellLocalEmergencyNumber2 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 2
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 12 }
+
+
+-- Cell Local Emergency Number3
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.13
+ cellLocalEmergencyNumber3 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 3
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 13 }
+
+
+-- Cell Local Emergency Number4
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.14
+ cellLocalEmergencyNumber4 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 4
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 14 }
+
+
+-- Cell Local Emergency Number5
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.15
+ cellLocalEmergencyNumber5 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 5
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 15 }
+
+
+-- Cell Local Emergency Number6
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.16
+ cellLocalEmergencyNumber6 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 6
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 16 }
+
+
+-- Cell Local Emergency Number7
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.17
+ cellLocalEmergencyNumber7 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 7
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 17 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.18
+ cellRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cellEntry 18 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6
+ mediaGateway OBJECT IDENTIFIER ::= { parameter 6 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1
+ mediaGatewayTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MediaGatewayEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mediaGateway 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1
+ mediaGatewayEntry OBJECT-TYPE
+ SYNTAX MediaGatewayEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { mgIndex }
+ ::= { mediaGatewayTable 1 }
+
+
+ MediaGatewayEntry ::=
+ SEQUENCE {
+ mgIndex
+ INTEGER,
+ mgTitle
+ DisplayString16,
+ mgCreateTimeStamp
+ TimeStamp,
+ mgAdministrationState
+ AdminStateChoices,
+ mgIP
+ IpAddress,
+ mgDomainName
+ DisplayString16,
+ mgSwitchingMode
+ INTEGER,
+ mgEndPoint
+ INTEGER,
+ mgToneGenCapability
+ INTEGER,
+ mgType
+ INTEGER,
+ mgMaxPhysicalPorts
+ INTEGER,
+ mgMaxChannels
+ INTEGER,
+ mgPacketizationPeriod
+ INTEGER,
+ mgPriorityLevel
+ INTEGER,
+ mgCodecType
+ Opaque,
+ mgAuditTimer
+ INTEGER,
+ mgPhysicalPortEntries
+ INTEGER,
+ mgRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.1
+ mgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Media Gateway index number ranges from 1 to 255."
+ ::= { mediaGatewayEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.2
+ mgTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Media Gateway name for identification purpose only."
+ DEFVAL { "MG#" }
+ ::= { mediaGatewayEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.3
+ mgCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the MG entry."
+ ::= { mediaGatewayEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.4
+ mgAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed Media Gateway."
+ ::= { mediaGatewayEntry 4 }
+
+
+-- IP
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.5
+ mgIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:IP
+ Remark:IP address of the Media Gateway."
+ ::= { mediaGatewayEntry 5 }
+
+
+-- Domain Name
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.6
+ mgDomainName OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Domain Name
+ Remark:Specify a domain name to the Media Gateway."
+ ::= { mediaGatewayEntry 6 }
+
+
+-- Switching Mode
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.7
+ mgSwitchingMode OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ mgcp(0),
+ eightECP(1),
+ megaco(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Switching Mode
+ Remark:Select the switching mode of the specific Media Gateway.
- 8ECP = Circuit Switch (8KE1 Card)
- MGCP = Soft Switch"
+ DEFVAL { mgcp }
+ ::= { mediaGatewayEntry 7 }
+
+
+-- End Point Description
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.8
+ mgEndPoint OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ structured(1),
+ unStructured(2),
+ unStructuredHex(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Endpoint
+ Remark:Specify the method of MGCP endpoint description."
+ DEFVAL { structured }
+ ::= { mediaGatewayEntry 8 }
+
+
+-- Tone Gen Capability
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.9
+ mgToneGenCapability OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Tone Generation Capacity
+ Remark:Enable if the Media Gateway has tone generation capability."
+ DEFVAL { enable }
+ ::= { mediaGatewayEntry 9 }
+
+
+-- MG Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.10
+ mgType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ audioCodes(1),
+ lgcMG(2),
+ lgcCS(3),
+ ipBSS(4),
+ analogLine(11),
+ vim(19),
+ tandem(20),
+ announcementServer(21),
+ iuupGW(23),
+ interactiveVoiceResponse(31),
+ conferenceBridge(41),
+ packetRelay(51),
+ wiretap(61),
+ atm(71)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Type
+ Remark:Select the type of Media Gateway endpoint."
+ DEFVAL { digitalChannel }
+ ::= { mediaGatewayEntry 10 }
+
+
+-- Max Physical Ports
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.11
+ mgMaxPhysicalPorts OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Ports
+ Remark:The total physical port number of the Media Gateway. Not applicable to virtual MG."
+ ::= { mediaGatewayEntry 11 }
+
+
+-- Max Channels
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.12
+ mgMaxChannels OBJECT-TYPE
+ SYNTAX INTEGER (0..1024)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Channels
+ Remark:The total channel number of the virtual Media Gateway. Applicable to virtual MG only."
+ ::= { mediaGatewayEntry 12 }
+
+
+-- Packetization Period
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.13
+ mgPacketizationPeriod OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ x20ms(20),
+ x40ms(40),
+ x60ms(60),
+ x80ms(80)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Packetization Period
+ Remark:The period over which encoded voice bits are collected for encapsulation in."
+ DEFVAL { x20ms }
+ ::= { mediaGatewayEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.14
+ mgPriorityLevel OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Priority Level
+ Remark:Set the priority level of the MG codec table:
- 0 = Lowest priority level
- 255 = Highest priority level"
+ ::= { mediaGatewayEntry 14 }
+
+
+-- Codec Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.15
+ mgCodecType OBJECT-TYPE
+ SYNTAX Opaque (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Codec 0[u]00.0-00.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 1[u]01.0-01.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 2[u]02.0-02.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 3[u]03.0-03.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 4[u]04.0-04.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 5[u]05.0-05.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 6[u]06.0-06.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 7[u]07.0-07.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 8[u]08.0-08.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 9[u]09.0-09.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 10[u]10.0-10.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 11[u]11.0-11.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 12[u]12.0-12.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 13[u]13.0-13.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 14[u]14.0-14.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 15[u]15.0-15.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [remark]
+ Specify the codec type of the Media Gateway. Entry 0 is the highest priority, entry 13 is the lowest."
+ ::= { mediaGatewayEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.16
+ mgAuditTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Audit Timer
+ Remark:The time interval between sending AUEP message from MGC to MGW to check the trunk status. Unit is second."
+ ::= { mediaGatewayEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.17
+ mgPhysicalPortEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Port Entries
+ Remark:The total number of the configured physical Ports of this Media Gateway."
+ ::= { mediaGatewayEntry 17 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.18
+ mgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mediaGatewayEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2
+ physicalPortTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PhysicalPortEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mediaGateway 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1
+ physicalPortEntry OBJECT-TYPE
+ SYNTAX PhysicalPortEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { ppIndex, ppMGIndex }
+ ::= { physicalPortTable 1 }
+
+
+ PhysicalPortEntry ::=
+ SEQUENCE {
+ ppMGIndex
+ INTEGER,
+ ppIndex
+ INTEGER,
+ ppUsedFlag
+ INTEGER,
+ ppStatus
+ INTEGER,
+ ppSeizure
+ OCTET STRING
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.1
+ ppMGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:MG Index
+ Remark:Media Gateway index number for this physical Port."
+ ::= { physicalPortEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.2
+ ppIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Port index number ranges from 1 to 32."
+ ::= { physicalPortEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.3
+ ppUsedFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ idle(0),
+ inUse(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Used Flag
+ Remark:(Read Only) This field indicates whether the port is in service."
+ ::= { physicalPortEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.4
+ ppStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notReady(0),
+ ready(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Status
+ Remark:(Read Only) The availability status of the physical port."
+ ::= { physicalPortEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.5
+ ppSeizure OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ RelationPoint:2.4.2.1
+ Remark:(Read Only) Hyperlink of the related Trunk Group and Trunk."
+ ::= { physicalPortEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3
+ csta OBJECT IDENTIFIER ::= { msc 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3
+ tgIncomingTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TgIncomingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3.1
+ tgIncomingEntry OBJECT-TYPE
+ SYNTAX TgIncomingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { tgIncomingTgndex, tgIncomingIndex }
+ ::= { tgIncomingTable 1 }
+
+
+ TgIncomingEntry ::=
+ SEQUENCE {
+ tgIncomingTgndex
+ INTEGER,
+ tgIncomingIndex
+ INTEGER,
+ tgIncomingData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3.1.1
+ tgIncomingTgndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgIncomingEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3.1.2
+ tgIncomingIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgIncomingEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3.1.3
+ tgIncomingData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgIncomingEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4
+ tgOutgoingTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TgOutgoingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4.1
+ tgOutgoingEntry OBJECT-TYPE
+ SYNTAX TgOutgoingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { tgOutgoingTgIndex, tgOutgoingIndex }
+ ::= { tgOutgoingTable 1 }
+
+
+ TgOutgoingEntry ::=
+ SEQUENCE {
+ tgOutgoingTgIndex
+ INTEGER,
+ tgOutgoingIndex
+ INTEGER,
+ tgOutgoingData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4.1.1
+ tgOutgoingTgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgOutgoingEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4.1.2
+ tgOutgoingIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgOutgoingEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4.1.3
+ tgOutgoingData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgOutgoingEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.5
+ subsToSubsTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SubsToSubsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.5.1
+ subsToSubsEntry OBJECT-TYPE
+ SYNTAX SubsToSubsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { subsToSubsIndex }
+ ::= { subsToSubsTable 1 }
+
+
+ SubsToSubsEntry ::=
+ SEQUENCE {
+ subsToSubsIndex
+ INTEGER,
+ subsToSubsData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.5.1.1
+ subsToSubsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToSubsEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.5.1.2
+ subsToSubsData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToSubsEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.6
+ subsToTrunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SubsToTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.6.1
+ subsToTrunkEntry OBJECT-TYPE
+ SYNTAX SubsToTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { subsToTrunkIndex }
+ ::= { subsToTrunkTable 1 }
+
+
+ SubsToTrunkEntry ::=
+ SEQUENCE {
+ subsToTrunkIndex
+ INTEGER,
+ subsToTrunkData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.6.1.1
+ subsToTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToTrunkEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.6.1.2
+ subsToTrunkData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToTrunkEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.7
+ trunkToSubsTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkToSubsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.7.1
+ trunkToSubsEntry OBJECT-TYPE
+ SYNTAX TrunkToSubsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { trunkToSubsIndex }
+ ::= { trunkToSubsTable 1 }
+
+
+ TrunkToSubsEntry ::=
+ SEQUENCE {
+ trunkToSubsIndex
+ INTEGER,
+ trunkToSubsData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.7.1.1
+ trunkToSubsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToSubsEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.7.1.2
+ trunkToSubsData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToSubsEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.8
+ trunkToTrunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkToTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.8.1
+ trunkToTrunkEntry OBJECT-TYPE
+ SYNTAX TrunkToTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { trunkToTrunkIndex }
+ ::= { trunkToTrunkTable 1 }
+
+
+ TrunkToTrunkEntry ::=
+ SEQUENCE {
+ trunkToTrunkIndex
+ INTEGER,
+ trunkToTrunkData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.8.1.1
+ trunkToTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToTrunkEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.8.1.2
+ trunkToTrunkData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToTrunkEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.9
+ intraconnectionTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF IntraconnectionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.9.1
+ intraconnectionEntry OBJECT-TYPE
+ SYNTAX IntraconnectionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { intraconnectionIndex }
+ ::= { intraconnectionTable 1 }
+
+
+ IntraconnectionEntry ::=
+ SEQUENCE {
+ intraconnectionIndex
+ INTEGER,
+ intraconnectionData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.9.1.1
+ intraconnectionIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { intraconnectionEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.9.1.2
+ intraconnectionData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { intraconnectionEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.10
+ subsToIpTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SubsToIpEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.10.1
+ subsToIpEntry OBJECT-TYPE
+ SYNTAX SubsToIpEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { subsToIpIndex }
+ ::= { subsToIpTable 1 }
+
+
+ SubsToIpEntry ::=
+ SEQUENCE {
+ subsToIpIndex
+ INTEGER,
+ subsToIpData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.10.1.1
+ subsToIpIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToIpEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.10.1.2
+ subsToIpData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToIpEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.11
+ trunkToIpTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkToIpEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.11.1
+ trunkToIpEntry OBJECT-TYPE
+ SYNTAX TrunkToIpEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { trunkToIpIndex }
+ ::= { trunkToIpTable 1 }
+
+
+ TrunkToIpEntry ::=
+ SEQUENCE {
+ trunkToIpIndex
+ INTEGER,
+ trunkToIpData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.11.1.1
+ trunkToIpIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToIpEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.11.1.2
+ trunkToIpData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToIpEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.12
+ mobileOriginatedTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MobileOriginatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.12.1
+ mobileOriginatedEntry OBJECT-TYPE
+ SYNTAX MobileOriginatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { mobileOriginatedIndex }
+ ::= { mobileOriginatedTable 1 }
+
+
+ MobileOriginatedEntry ::=
+ SEQUENCE {
+ mobileOriginatedIndex
+ INTEGER,
+ mobileOriginatedData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.12.1.1
+ mobileOriginatedIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mobileOriginatedEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.12.1.2
+ mobileOriginatedData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mobileOriginatedEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.13
+ mobileTerminatedTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MobileTerminatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.13.1
+ mobileTerminatedEntry OBJECT-TYPE
+ SYNTAX MobileTerminatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { mobileTerminatedIndex }
+ ::= { mobileTerminatedTable 1 }
+
+
+ MobileTerminatedEntry ::=
+ SEQUENCE {
+ mobileTerminatedIndex
+ INTEGER,
+ mobileTermiginatedData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.13.1.1
+ mobileTerminatedIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mobileTerminatedEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.13.1.2
+ mobileTermiginatedData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mobileTerminatedEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.14
+ inTrunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF InTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.14.1
+ inTrunkEntry OBJECT-TYPE
+ SYNTAX InTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { inTrunkIndex }
+ ::= { inTrunkTable 1 }
+
+
+ InTrunkEntry ::=
+ SEQUENCE {
+ inTrunkIndex
+ INTEGER,
+ inTrunkData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.14.1.1
+ inTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { inTrunkEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.14.1.2
+ inTrunkData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { inTrunkEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.15
+ outTrunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF OutTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.15.1
+ outTrunkEntry OBJECT-TYPE
+ SYNTAX OutTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { outTrunkIndex }
+ ::= { outTrunkTable 1 }
+
+
+ OutTrunkEntry ::=
+ SEQUENCE {
+ outTrunkIndex
+ INTEGER,
+ outTrunkData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.15.1.1
+ outTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { outTrunkEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.15.1.2
+ outTrunkData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { outTrunkEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.16
+ ipTerminatedTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF IpTerminatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.16.1
+ ipTerminatedEntry OBJECT-TYPE
+ SYNTAX IpTerminatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { ipTermiginatedIndex }
+ ::= { ipTerminatedTable 1 }
+
+
+ IpTerminatedEntry ::=
+ SEQUENCE {
+ ipTermiginatedIndex
+ INTEGER,
+ ipTermiginatedData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.16.1.1
+ ipTermiginatedIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { ipTerminatedEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.16.1.2
+ ipTermiginatedData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { ipTerminatedEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.4
+ cdr OBJECT IDENTIFIER ::= { msc 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.4.1
+ cdrHeadOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.4.2
+ cdrTailOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.4.3
+ cdrDataOid OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 3 }
+
+
+
+ END
+
+--
+-- LGC-SS-MSC-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-MSC-MIB_bak.my b/omc/bin/mib/LGC-SS-MSC-MIB_bak.my
new file mode 100644
index 0000000..74ceaf9
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-MSC-MIB_bak.my
@@ -0,0 +1,4920 @@
+--
+-- LGC-SS-MSC-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Friday, December 30, 2011 at 10:52:19
+--
+
+ LGC-SS-MSC-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString16, TimeStamp, RowStatus, DisplayString8,
+ DisplayString, AdminStateChoices, OperStateChoices
+ FROM LGC-MIB
+ IpAddress, Opaque, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1
+ msc MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 1 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { msc 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2
+ parameter OBJECT IDENTIFIER ::= { msc 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.1
+ cDROption OBJECT-TYPE
+ SYNTAX Opaque (SIZE (8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]MO Call[u]00.0-00.0[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]MT Call[u]00.1-00.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]In Gateway[u]00.2-00.2[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Out Gateway[u]00.3-00.3[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]MO SMS[u]00.4-00.4[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]MT SMS[u]00.5-00.5[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Transit Call[u]00.6-00.6[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Roaming[u]00.7-00.7[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Reserved[u]01.0-01.0[u]select
+ [unit]Common Equipment[u]01.1-01.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]SS Action[u]01.2-01.2[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Term CAMEL[u]01.3-01.3[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]IMEI White List[u]01.4-01.4[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]IMEI Black List[u]01.5-01.5[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]IMEI Grey List[u]01.6-01.6[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]IMEI Unknown[u]01.7-01.7[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Reserved[u]02.0-02.7[u]select
+ [unit]Reserved[u]03.0-03.7[u]select
+ [remark]Control the Call Detail Record generation for different call types."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.2
+ maxCallDurationMO OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MO Max Call Duration
+ Remark:Define the permitted maximum call duration for MO call. Any ongoing call reaching this threshold will be compulsively cut off.
- Set 0 to disable this function."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.3
+ maxCallDurationMT OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MT Max Call Duration
+ Remark:Define the permitted maximum call duration for MT call. Any incoming call reaching this threshold will be compulsively cut off.
- Set 0 to disable this function."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.4
+ locationNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Location Number
+ Remark:Specify the location routing number for MNP service."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.5
+ suspendTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Suspend Timer
+ Remark:If receives ISUP SUSPEND message in an ISUP call, then start the suspend timer to wait for the ISUP RESUME message. If time out, then send RELEASE to ISUP. Unit is second."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.6
+ emlppPciOption OBJECT-TYPE
+ SYNTAX Opaque (SIZE (1))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:eMLPP PCI Option
+ OPAQUE DECODE RULE:
+ [unit]Reserved[u]00.0-00.0[u]select
+ [unit]Level A[u]00.1-00.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level B[u]00.2-00.2[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 0[u]00.3-00.3[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 1[u]00.4-00.4[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 2[u]00.5-00.5[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 3[u]00.6-00.6[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 4[u]00.7-00.7[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [remark]
+ The enhanced Multi-Level Precedence and Preemption (eMLPP) service provides the capability to classify the mobile subscribers according to a subscriber specific priority.
The Preemption Capability Indicator (PCI) is set when the traffic channel to be assigned may preempt (forced release) an existing connection with a lower priority level (active preemption)."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.7
+ emlppPviOption OBJECT-TYPE
+ SYNTAX Opaque (SIZE (1))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:eMLPP PVI Option
+ OPAQUE DECODE RULE:
+ [unit]Reserved[u]00.0-00.0[u]select
+ [unit]Level A[u]00.1-00.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level B[u]00.2-00.2[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 0[u]00.3-00.3[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 1[u]00.4-00.4[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 2[u]00.5-00.5[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 3[u]00.6-00.6[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 4[u]00.7-00.7[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [remark]
+ The enhanced Multi-Level Precedence and Preemption (eMLPP) service provides the capability to classify the mobile subscribers according to a subscriber specific priority.
The Preemption Vulnerability Indicator (PVI) is set when the traffic channel to be assigned can be preempted by another connection that might be established later with a higher priority level (passive preemption)."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.8
+ assignmentTimer OBJECT-TYPE
+ SYNTAX INTEGER (10..250)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Assignment Timer
+ Remark:Specify the maximum waiting time for receiving Assignment Complete message after the Assignment Request message has been sent. Unit is 100ms."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.9
+ pagingTimer OBJECT-TYPE
+ SYNTAX INTEGER (10..40)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Paging Timer
+ Remark:Specify the maximum waiting time for receiving Paging Response message after the Paging message has been sent. Unit is 1 second."
+ ::= { system 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.10
+ splitEtcNumber OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Split ETC Number
+ Remark:Allow or forbid splitting the Correlation ID and SCF ID in the Establish Temporary Connection message."
+ ::= { system 10 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2
+ routingZoneSet OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1
+ routingZoneSetTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RoutingZoneSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { routingZoneSet 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1
+ routingZoneSetEntry OBJECT-TYPE
+ SYNTAX RoutingZoneSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { rzsIndex }
+ ::= { routingZoneSetTable 1 }
+
+
+ RoutingZoneSetEntry ::=
+ SEQUENCE {
+ rzsIndex
+ INTEGER,
+ rzsTitle
+ DisplayString16,
+ rzsCreateTimeStamp
+ TimeStamp,
+ rzsDialingPrefixSetID
+ INTEGER,
+ rzsAnnouncementSetID
+ INTEGER,
+ rzsMSRNRangeStart
+ DisplayString16,
+ rzsMSRNRangeEnd
+ DisplayString16,
+ rzsSRFNumber0
+ DisplayString16,
+ rzsSRFNumber1
+ DisplayString16,
+ rzsCreateEntryRoutingSelection
+ INTEGER,
+ rzsRoutingSelectionEntries
+ INTEGER,
+ rzsRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.1
+ rzsIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Routing Zone Set index number ranges from 1 to 31."
+ ::= { routingZoneSetEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.2
+ rzsTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Routing Zone Set name for identification purpose only."
+ DEFVAL { "RZS#" }
+ ::= { routingZoneSetEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.3
+ rzsCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Routing Zone Set."
+ ::= { routingZoneSetEntry 3 }
+
+
+-- Dialing Prefix Set ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.4
+ rzsDialingPrefixSetID OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Dialing Prefix Set ID
+ Remark:Specify the Dialing Prefix Set to this Routing Zone Set."
+ DEFVAL { 0 }
+ ::= { routingZoneSetEntry 4 }
+
+
+-- Announcement(CUA) Set ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.5
+ rzsAnnouncementSetID OBJECT-TYPE
+ SYNTAX INTEGER (0..256)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Announcement Set ID
+ Remark:Specify the Announcement Set to this Routing Zone Set."
+ ::= { routingZoneSetEntry 5 }
+
+
+-- MSRN Range Start
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.6
+ rzsMSRNRangeStart OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSRN Start
+ Remark:The beginning of the MSRN range for this Routing Zone Set."
+ ::= { routingZoneSetEntry 6 }
+
+
+-- MSRN Range End
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.7
+ rzsMSRNRangeEnd OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSRN End
+ Remark:The end of the MSRN range for this Routing Zone Set."
+ ::= { routingZoneSetEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.8
+ rzsSRFNumber0 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SRF 0 Number
+ Remark:The E.164 node address of the SRF connecting to MSS platform 0."
+ ::= { routingZoneSetEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.9
+ rzsSRFNumber1 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SRF 1 Number
+ Remark:The E.164 node address of the SRF connecting to MSS platform 1."
+ ::= { routingZoneSetEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.10
+ rzsCreateEntryRoutingSelection OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { routingZoneSetEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.11
+ rzsRoutingSelectionEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Routing Selection Entries
+ Remark:The total number of configured Routing Selections in this Routing Zone Set."
+ ::= { routingZoneSetEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.12
+ rzsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { routingZoneSetEntry 12 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2
+ routingSelectionTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RoutingSelectionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { routingZoneSet 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1
+ routingSelectionEntry OBJECT-TYPE
+ SYNTAX RoutingSelectionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { rsIndex, rsRZSIndex }
+ ::= { routingSelectionTable 1 }
+
+
+ RoutingSelectionEntry ::=
+ SEQUENCE {
+ rsRZSIndex
+ INTEGER,
+ rsIndex
+ INTEGER,
+ rsTitle
+ DisplayString16,
+ rsCreateTimeStamp
+ TimeStamp,
+ rsTrunkGroup
+ INTEGER,
+ rsAlternativeTrunkGroupOption
+ INTEGER,
+ rsAlternativeTrunkGroup
+ INTEGER,
+ rsNAIForOutgoingCall
+ INTEGER,
+ rsNumberOfDigitDeletion
+ INTEGER,
+ rsInsertionNumber
+ DisplayString16,
+ rsRowStatus
+ RowStatus
+ }
+
+-- Route Selection RZS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.1
+ rsRZSIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:RSZ Index
+ Remark:Routing Zone Set Index for the Routing Selection."
+ ::= { routingSelectionEntry 1 }
+
+
+-- Route Selection Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.2
+ rsIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Routing Selection index number range from 1 to 31."
+ ::= { routingSelectionEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.3
+ rsTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Routing Selection name for identification purpose only."
+ DEFVAL { "RS#" }
+ ::= { routingSelectionEntry 3 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.4
+ rsCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Routing Selection."
+ ::= { routingSelectionEntry 4 }
+
+
+-- Trunk Group
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.5
+ rsTrunkGroup OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Trunk Group
+ Remark:Select the Trunk Group for the outgoing routing."
+ DEFVAL { 0 }
+ ::= { routingSelectionEntry 5 }
+
+
+-- Alternative Trunk Group Option
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.6
+ rsAlternativeTrunkGroupOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Alternative TG Flag
+ Remark:Enable or disable alternative Trunk Group when the primary Trunk Group is unavailable."
+ DEFVAL { disable }
+ ::= { routingSelectionEntry 6 }
+
+
+-- Alternative Trunk Group
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.7
+ rsAlternativeTrunkGroup OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Alternative TG
+ Remark:Specify the alternative Trunk Group. It's available only when the previous Alternative TG Flag is enabled."
+ DEFVAL { 0 }
+ ::= { routingSelectionEntry 7 }
+
+
+-- NAI For Outgoing Call
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.8
+ rsNAIForOutgoingCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sub(1),
+ unknown(2),
+ ndd(3),
+ idd(4),
+ UKSpecific(126)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NAI for Outgoing Call
+ Remark:Select the required Network Address Identifier (NAI). The NAI option enables the MSC to perform call routing."
+ ::= { routingSelectionEntry 8 }
+
+
+-- Number Of Digit Deletion
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.9
+ rsNumberOfDigitDeletion OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Deletion Count
+ Remark:Number of digits to be deleted from the beginning of the dialed number."
+ DEFVAL { 0 }
+ ::= { routingSelectionEntry 9 }
+
+
+-- Insertion Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.10
+ rsInsertionNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Inserted Digits
+ Remark:The digits to be inserted to the front of the dialed number."
+ DEFVAL { "FFFFFFFFFFFFFFFF" }
+ ::= { routingSelectionEntry 10 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.11
+ rsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { routingSelectionEntry 11 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3
+ dialingPrefixSet OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1
+ dialingPrefixSetTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF DialingPrefixSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { dialingPrefixSet 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1
+ dialingPrefixSetEntry OBJECT-TYPE
+ SYNTAX DialingPrefixSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { dpsIndex }
+ ::= { dialingPrefixSetTable 1 }
+
+
+ DialingPrefixSetEntry ::=
+ SEQUENCE {
+ dpsIndex
+ INTEGER,
+ dpsTitle
+ DisplayString16,
+ dpsCreateTimeStamp
+ TimeStamp,
+ dpsCC
+ DisplayString8,
+ dpsNDC
+ DisplayString8,
+ dpsInternationalPrefix
+ DisplayString8,
+ dpsNationalPrefix
+ DisplayString8,
+ dpsHPLMNCC0
+ DisplayString16,
+ dpsHPLMNCC1
+ DisplayString16,
+ dpsHPLMNCC2
+ DisplayString16,
+ dpsHPLMNCC3
+ DisplayString16,
+ dpsHPLMNCC4
+ DisplayString16,
+ dpsHPLMNCC5
+ DisplayString16,
+ dpsHPLMNCC6
+ DisplayString16,
+ dpsHPLMNCC7
+ DisplayString16,
+ dpsNumberPlanArea
+ DisplayString8,
+ dpsCreateEntryDialingPrefix
+ INTEGER,
+ dpsDialingPrefixEntries
+ INTEGER,
+ dpsRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.1
+ dpsIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Dialing Prefix Set index number ranges from 1 to 15."
+ ::= { dialingPrefixSetEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.2
+ dpsTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Dialing Prefix Set name for identification purpose only."
+ DEFVAL { "DPS#" }
+ ::= { dialingPrefixSetEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.3
+ dpsCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Dialing Prefix Set."
+ ::= { dialingPrefixSetEntry 3 }
+
+
+-- Country Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.4
+ dpsCC OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CC
+ Remark:Country Code identifies the country's network."
+ ::= { dialingPrefixSetEntry 4 }
+
+
+-- National Destination Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.5
+ dpsNDC OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NDC
+ Remark:National Destination Code defines the national calling area or national network to which the subscriber belongs."
+ ::= { dialingPrefixSetEntry 5 }
+
+
+-- International Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.6
+ dpsInternationalPrefix OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:International Prefix
+ Remark:Access code for international network."
+ ::= { dialingPrefixSetEntry 6 }
+
+
+-- National Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.7
+ dpsNationalPrefix OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:National Prefix
+ Remark:National prefix for the operating country to make a national call."
+ DEFVAL { "0" }
+ ::= { dialingPrefixSetEntry 7 }
+
+
+-- HPLMN CC0
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.8
+ dpsHPLMNCC0 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 0
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 8 }
+
+
+-- HPLMN CC1
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.9
+ dpsHPLMNCC1 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 1
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 9 }
+
+
+-- HPLMN CC2
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.10
+ dpsHPLMNCC2 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 2
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 10 }
+
+
+-- HPLMN CC3
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.11
+ dpsHPLMNCC3 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 3
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 11 }
+
+
+-- HPLMN CC4
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.12
+ dpsHPLMNCC4 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 4
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 12 }
+
+
+-- HPLMN CC5
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.13
+ dpsHPLMNCC5 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 5
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 13 }
+
+
+-- HPLMN CC6
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.14
+ dpsHPLMNCC6 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 6
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 14 }
+
+
+-- HPLMN CC7
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.15
+ dpsHPLMNCC7 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 7
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.16
+ dpsNumberPlanArea OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Number Plan Area
+ Remark:Specify number plan area number for MNP outbound."
+ ::= { dialingPrefixSetEntry 16 }
+
+
+-- Dialing Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.17
+ dpsCreateEntryDialingPrefix OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { dialingPrefixSetEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.18
+ dpsDialingPrefixEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..1024)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Dialing Prefix Entries
+ Remark:The total number of the configured Dialing Prefixes in this Dialing Prefix Set."
+ ::= { dialingPrefixSetEntry 18 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.17
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.19
+ dpsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { dialingPrefixSetEntry 19 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2
+ dialingPrefixTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF DialingPrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { dialingPrefixSet 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1
+ dialingPrefixEntry OBJECT-TYPE
+ SYNTAX DialingPrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { dpIndex, dpDPSIndex }
+ ::= { dialingPrefixTable 1 }
+
+
+ DialingPrefixEntry ::=
+ SEQUENCE {
+ dpDPSIndex
+ INTEGER,
+ dpIndex
+ INTEGER,
+ dpTitle
+ DisplayString16,
+ dpLookupMethod
+ INTEGER,
+ dpCallNumberPrefix
+ DisplayString16,
+ dpStartNumber
+ DisplayString16,
+ dpEndNumber
+ DisplayString16,
+ dpCallNumberAttribute
+ INTEGER,
+ dpAdministrationState
+ AdminStateChoices,
+ dpCallNumberLength
+ INTEGER,
+ dpServiceType
+ INTEGER,
+ dpEmergencyType
+ INTEGER,
+ dpServiceKey
+ INTEGER,
+ dpNumberType
+ INTEGER,
+ dpCLIType
+ INTEGER,
+ dpRSC
+ INTEGER,
+ dpCDRFlag
+ INTEGER,
+ dpOptionForSRFMNP
+ INTEGER,
+ dpMSCOptionForINMNP
+ INTEGER,
+ dpGMSCOptionForINMNP
+ INTEGER,
+ dpPremiumCall
+ INTEGER,
+ dpOSB1Flag
+ INTEGER,
+ dpOSB2Flag
+ INTEGER,
+ dpNAIForOutgoingCall
+ INTEGER,
+ dpPSTNNumberOfDigitDeletion
+ INTEGER,
+ dpPSTNInsertionNumber
+ DisplayString16,
+ dpE164NumberOfDigitDeletion
+ INTEGER,
+ dpE164InsertionNumber
+ DisplayString16,
+ dpRowStatus
+ RowStatus
+ }
+
+-- DP DPS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.1
+ dpDPSIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..15)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:DPS Index
+ Remark:Dialing Prefix Set index number for this Dialing Prefix."
+ ::= { dialingPrefixEntry 1 }
+
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.2
+ dpIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..1024)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Dialing Prefix index number ranges from 1 to 1024."
+ ::= { dialingPrefixEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.3
+ dpTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Dialing Prefix name for identification purpose only."
+ ::= { dialingPrefixEntry 3 }
+
+
+-- Lookup Method
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.4
+ dpLookupMethod OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ prefixLookup(0),
+ groupLookup(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Lookup Method
+ Remark:Select a dialing plan lookup method. Group Lookup Method has a higher priority than Prefix Lookup Method."
+ DEFVAL { prefix }
+ ::= { dialingPrefixEntry 4 }
+
+
+-- Call Number Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.5
+ dpCallNumberPrefix OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Prefix
+ Remark:A combination digits that dial to originate a call. It's only valid when the lookup method selected Prefix."
+ ::= { dialingPrefixEntry 5 }
+
+
+-- Start Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.6
+ dpStartNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Group Prefix Start
+ Remark:The beginning of the group prefix range. It's only valid when the lookup method selected Group."
+ ::= { dialingPrefixEntry 6 }
+
+
+-- End Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.7
+ dpEndNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Group Prefix End
+ Remark:The end of the group prefix range. Start prefix and end prefix must have the same length."
+ ::= { dialingPrefixEntry 7 }
+
+
+-- Call Number Attribute
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.8
+ dpCallNumberAttribute OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sub(1),
+ unknown(2),
+ ndd(3),
+ idd(4),
+ UKSpecific(126)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Number Attribute
+ Remark:The original type of the incoming number. It is specified by originating node for terminating node to route this call with proper dialed number manipulation."
+ ::= { dialingPrefixEntry 8 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.9
+ dpAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:The state of the current Dialing Prefix entry."
+ ::= { dialingPrefixEntry 9 }
+
+
+-- Call Number Length
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.10
+ dpCallNumberLength OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Number Length
+ Remark:The length of the dialed number. Set 0 for uncertain length."
+ DEFVAL { 0 }
+ ::= { dialingPrefixEntry 10 }
+
+
+-- Service Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.11
+ dpServiceType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ normalCall(0),
+ emergencyCall(1),
+ intelligentCall(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Service Type
+ Remark:Service type of the outgoing call:
- Normal = No verification for MT
- Emergency Call = No verification for MO (free call)
- Intelligent Call = Calls to intelligent peripheral"
+ DEFVAL { normalCall }
+ ::= { dialingPrefixEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.12
+ dpEmergencyType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ zero(0),
+ one(1),
+ two(2),
+ three(3),
+ four(4),
+ five(5),
+ six(6),
+ seven(7)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Type
+ Remark:Specify index number which associated with the 8 emergency call numbers in Location Area or Cell setting."
+ DEFVAL { zero }
+ ::= { dialingPrefixEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.13
+ dpServiceKey OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Service Key
+ Remark:Specify service hot key which associated with the service key configuration in the PPS SRF setting."
+ ::= { dialingPrefixEntry 13 }
+
+
+-- Number Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.14
+ dpNumberType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ msisdn(0),
+ msrn(1),
+ pstn(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Number Type
+ Remark:It determines how the numbers are sent out."
+ DEFVAL { msisdn }
+ ::= { dialingPrefixEntry 14 }
+
+
+-- CLI Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.15
+ dpCLIType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sub(0),
+ ndd(1),
+ idd(2),
+ unknownSub(3),
+ unknownNdd(4),
+ unknownIdd(5)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CLI Type
+ Remark:It determines the format of the Caller Line ID (CLI).
- Sub = Unknown(Sub) = SN
- NDD = NDC+SN
- Unknown(NDD) = Nat Prefix+NDC+SN
- IDD = +CC+NDC+SN
- Unknown(IDD) = Int Prefix+CC+NDC+SN"
+ DEFVAL { ndd }
+ ::= { dialingPrefixEntry 15 }
+
+
+-- Routing Selection Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.16
+ dpRSC OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Routing Selection ID
+ Remark:Specify the Routing Selection ID to this Dialing Prefix."
+ DEFVAL { 0 }
+ ::= { dialingPrefixEntry 16 }
+
+
+-- CDR Flag
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.17
+ dpCDRFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CDR Flag
+ Remark:Enable or disable the Call Detail Record generation of this prefix."
+ DEFVAL { enable }
+ ::= { dialingPrefixEntry 17 }
+
+
+-- MNP Flag
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.18
+ dpOptionForSRFMNP OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ portableNumber(1),
+ portedNumber(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SRF-MNP Flag
+ Remark:Enable if this prefix relating to SRF MNP service."
+ DEFVAL { disable }
+ ::= { dialingPrefixEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.19
+ dpMSCOptionForINMNP OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ OQoD(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:IN-MNP Flag (MSC)
+ Remark:Enable or disable IN MNP service when the system performs as an MSC."
+ ::= { dialingPrefixEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.20
+ dpGMSCOptionForINMNP OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ TQoD(1),
+ QoHR(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:IN-MNP Flag (GMSC)
+ Remark:Enable or disable IN MNP service when the system performs as a GMSC."
+ ::= { dialingPrefixEntry 20 }
+
+
+-- Premium Call
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.21
+ dpPremiumCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ information(1),
+ entertainment(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Premium Call Flag
+ Remark:Enable if this prefix relating to Premium Call service."
+ DEFVAL { disable }
+ ::= { dialingPrefixEntry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.22
+ dpOSB1Flag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OSB 1 Flag
+ Remark:Subscribers with OSB type 1 can only make calls to this dialing prefix with Call Allow Flag enabled."
+ DEFVAL { disable }
+ ::= { dialingPrefixEntry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.23
+ dpOSB2Flag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OSB 2 Flag
+ Remark:Subscribers with OSB type 2 can't make calls to this dialing prefix with Call Bar Flag enabled."
+ DEFVAL { disable }
+ ::= { dialingPrefixEntry 23 }
+
+
+-- NAI For Outgoing Call
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.24
+ dpNAIForOutgoingCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sub(1),
+ unknown(2),
+ ndd(3),
+ idd(4),
+ UKSpecific(126)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NAI for Outgoing Call
+ Remark:Select the required Network Address Identifier (NAI). The transformed incoming number will be routed to the associated trunk group."
+ ::= { dialingPrefixEntry 24 }
+
+
+-- PSTN Number Of Digit Deletion
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.25
+ dpPSTNNumberOfDigitDeletion OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PSTN Deletion Count
+ Remark:Number of digits to be deleted from the beginning of the dialed number."
+ DEFVAL { 0 }
+ ::= { dialingPrefixEntry 25 }
+
+
+-- PSTN Insertion Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.26
+ dpPSTNInsertionNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PSTN Inserted Digits
+ Remark:Digits of the number to be added to the front of the dialed number."
+ DEFVAL { 'FFFFFFFFFFFFFFFF'h }
+ ::= { dialingPrefixEntry 26 }
+
+
+-- E164 Number Of Digit Deletion
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.17
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.27
+ dpE164NumberOfDigitDeletion OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:E.164 Deletion Count
+ Remark:Number of digits to be deleted from the beginning of the incoming number."
+ ::= { dialingPrefixEntry 27 }
+
+
+-- E164 Insertion Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.18
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.28
+ dpE164InsertionNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:E.164 Inserted Digits
+ Remark:Digits of the number to be added to the front of the incoming number to convert it to an international E.164 format."
+ DEFVAL { 'FFFFFFFFFFFFFFFF'h }
+ ::= { dialingPrefixEntry 28 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.19
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.29
+ dpRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { dialingPrefixEntry 29 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4
+ trunkGroup OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1
+ trunkGroupTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkGroupEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkGroup 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1
+ trunkGroupEntry OBJECT-TYPE
+ SYNTAX TrunkGroupEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { tgIndex }
+ ::= { trunkGroupTable 1 }
+
+
+ TrunkGroupEntry ::=
+ SEQUENCE {
+ tgIndex
+ INTEGER,
+ tgTitle
+ DisplayString16,
+ tgCreateTimeStamp
+ TimeStamp,
+ tgAdministrationState
+ AdminStateChoices,
+ tgOperabilityStatus
+ OperStateChoices,
+ tgAvailabilityStatus
+ AvailStateChoices,
+ tgOPC
+ INTEGER,
+ tgDPC
+ INTEGER,
+ tgNetworkIndicator
+ INTEGER,
+ tgProtocolType
+ INTEGER,
+ tgProtocolVariant
+ INTEGER,
+ tgLocalDomain
+ OCTET STRING,
+ tgDestDomain
+ OCTET STRING,
+ tgDestIP0
+ IpAddress,
+ tgDestIP1
+ IpAddress,
+ tgDestPort
+ INTEGER,
+ tgRemoteProcessISUP
+ INTEGER,
+ tgTONIncomingSIPCall
+ INTEGER,
+ tgCircuitSelectionMode
+ INTEGER,
+ tgBackoffFlag
+ INTEGER,
+ tgTandemRestriction
+ INTEGER,
+ tgCDRFlag
+ INTEGER,
+ tgTrunkGroupType
+ INTEGER,
+ tgRoutingZoneID
+ INTEGER,
+ tgAlternativeRoutingTrigger
+ INTEGER,
+ tgIgnoreNumberPortabilityInformation
+ INTEGER,
+ tgSignalPortedNumber
+ INTEGER,
+ tgNFAS
+ INTEGER,
+ tgPrimaryLink
+ INTEGER,
+ tgBackupLink
+ INTEGER,
+ tgBSCCodec
+ Opaque,
+ tgEchoControlDeviceIndicator
+ INTEGER,
+ tgSatelliteIndicator
+ INTEGER,
+ tgCreateEntryTrunk
+ INTEGER,
+ tgTrunkEntries
+ INTEGER,
+ tgRowStatus
+ RowStatus,
+ tgEventLog
+ DisplayString
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.1
+ tgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Trunk Group index number ranges from 1 to 255."
+ ::= { trunkGroupEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.2
+ tgTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Trunk Group name for identification purpose only."
+ DEFVAL { "TG#" }
+ ::= { trunkGroupEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.3
+ tgCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Trunk Group."
+ ::= { trunkGroupEntry 3 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.4
+ tgAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed Trunk Group."
+ ::= { trunkGroupEntry 4 }
+
+
+-- Operability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.5
+ tgOperabilityStatus OBJECT-TYPE
+ SYNTAX OperStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Oper State
+ Remark:(Read Only) Indicate the current Trunk Group operation is qualified by Availability State."
+ ::= { trunkGroupEntry 5 }
+
+
+-- Availability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.6
+ tgAvailabilityStatus OBJECT-TYPE
+ SYNTAX AvailStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Avail State
+ Remark:(Read Only) Qualify Operation State providing details about the current operational state."
+ ::= { trunkGroupEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.7
+ tgOPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPC
+ Remark:The Originating Point Code of the current TG."
+ ::= { trunkGroupEntry 7 }
+
+
+-- DPC
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.8
+ tgDPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:DPC
+ Remark:The Destination Point Code of the current TG."
+ ::= { trunkGroupEntry 8 }
+
+
+-- Network Indication
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.9
+ tgNetworkIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ int(0),
+ intSpare(1),
+ nat(2),
+ natSpare(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NI
+ Remark:Network Indicator specifies the Trunk Group to a network."
+ DEFVAL { int }
+ ::= { trunkGroupEntry 9 }
+
+
+-- Protocol Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.10
+ tgProtocolType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ aif(0),
+ isup(1),
+ bicc(2),
+ isdn(3),
+ sip(5),
+ staticConnection(7),
+ iuCS(8)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Protocol Type
+ Remark:Select the protocol type for this Trunk Group."
+ ::= { trunkGroupEntry 10 }
+
+
+-- Protocol Variant
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.11
+ tgProtocolVariant OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ itu(0),
+ ansi(1),
+ etsi(2),
+ uk(3),
+ Qsig(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Protocol Variant
+ Remark:Select the protocol variant for this Trunk Group."
+ DEFVAL { itu }
+ ::= { trunkGroupEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.12
+ tgLocalDomain OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Local Domain
+ Remark:(For SIP) Define the local domain name for a SIP TG."
+ ::= { trunkGroupEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.13
+ tgDestDomain OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Dest Domain
+ Remark:(For SIP) Specify the destination domain name for a SIP TG."
+ ::= { trunkGroupEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.14
+ tgDestIP0 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Dest IP 0
+ Remark:(For SIP) Specify the destination IP address for a SIP TG."
+ ::= { trunkGroupEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.15
+ tgDestIP1 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Dest IP 1
+ Remark:(For SIP) Specify the destination IP address for a SIP TG."
+ ::= { trunkGroupEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.16
+ tgDestPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Dest Port
+ Remark:(For SIP) Specify the destination port for a SIP TG."
+ ::= { trunkGroupEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.17
+ tgRemoteProcessISUP OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notSupport(0),
+ support(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Remote Process ISUP
+ Remark:(For SIP) Indicate whether the remote SIP UA is able to process ISUP in SIP-ISUP interworking."
+ ::= { trunkGroupEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.18
+ tgTONIncomingSIPCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ CLIR(0),
+ Sub(1),
+ Unknown(2),
+ NDD(3),
+ IDD(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Incoming SIP Calls TON
+ Remark:(For SIP) Manipulate the type of calling number for a SIP TG. It doesn't take effect when the calling number's attribute is International. It is used for Calling Line Identification Presentation (CLIP) of incoming SIP calls."
+ ::= { trunkGroupEntry 18 }
+
+
+-- Circuit Selection Mode
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.19
+ tgCircuitSelectionMode OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ clockwise(0),
+ antiClockwise(1),
+ lowToHigh(128),
+ highToLow(129)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Circuit Selection
+ Remark:Circuit selection mode of the traffic channel connections."
+ DEFVAL { clockwise }
+ ::= { trunkGroupEntry 19 }
+
+
+-- Backoff Flag
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.20
+ tgBackoffFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Backoff Flag
+ Remark:Enable or disable back off when simultaneously select the same channel with the opposite side."
+ DEFVAL { enable }
+ ::= { trunkGroupEntry 20 }
+
+
+-- Tandem Restriction
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.21
+ tgTandemRestriction OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Tandem Restriction
+ Remark:Enable or disable Tandem to allow or prohibit transit calls from PSTN to PSTN via this trunk group."
+ DEFVAL { enable }
+ ::= { trunkGroupEntry 21 }
+
+
+-- CDR Flag
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.22
+ tgCDRFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CDR Flag
+ Remark:Enable or disable the Call Detail Record generation of this Trunk Group."
+ DEFVAL { enable }
+ ::= { trunkGroupEntry 22 }
+
+
+-- Trunk Group Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.23
+ tgTrunkGroupType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ normal(0),
+ interconnectionForMSS0(16),
+ interconnectionForMSS1(17)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:TG Type
+ Remark:Application type of this Trunk Group."
+ DEFVAL { normal }
+ ::= { trunkGroupEntry 23 }
+
+
+-- Routing Zone ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.24
+ tgRoutingZoneID OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:RZS ID
+ Remark:Specify the Trunk Group to a Routing Zone Set. Set 255 to apply this TG in all Routing Zone Sets."
+ DEFVAL { 0 }
+ ::= { trunkGroupEntry 24 }
+
+
+-- Alternative Routing Trigger
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.17
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.25
+ tgAlternativeRoutingTrigger OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Alternative RZS Trigger
+ Remark:Specify the Trunk Group to an alternative Routing Zone Set for backup purpose.
- 0 = Disable Alternative Routing Zone Set"
+ DEFVAL { 0 }
+ ::= { trunkGroupEntry 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.26
+ tgIgnoreNumberPortabilityInformation OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Ignore MNP Info
+ Remark:(For MNP) In the MNP port-in processing, enable to ignore the optional parameters in the incoming IAM message."
+ ::= { trunkGroupEntry 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.27
+ tgSignalPortedNumber OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Signal Ported Number
+ Remark:(For MNP) In the MNP port-out processing, enable to ignore the optional parameters in the outgoing IAM message."
+ ::= { trunkGroupEntry 27 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.28
+ tgNFAS OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NFAS Flag
+ Remark:(For ISDN) Enable or disable Non-Facility Associated Signaling (NFAS) with D Channel Backup feature."
+ ::= { trunkGroupEntry 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.29
+ tgPrimaryLink OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Primary Link
+ Remark:(For ISDN) Specify the primary D channel to control multiple trunks."
+ ::= { trunkGroupEntry 29 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.30
+ tgBackupLink OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Backup Link
+ Remark:(For ISDN) Specify a backup D channel for use when the primary NFAS D channel is unavailable."
+ ::= { trunkGroupEntry 30 }
+
+
+-- Codec Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.31
+ tgBSCCodec OBJECT-TYPE
+ SYNTAX Opaque (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Codec 0[u]00.0-00.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 1[u]01.0-01.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 2[u]02.0-02.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 3[u]03.0-03.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 4[u]04.0-04.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 5[u]05.0-05.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 6[u]06.0-06.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 7[u]07.0-07.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 8[u]08.0-08.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 9[u]09.0-09.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 10[u]10.0-10.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 11[u]11.0-11.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 12[u]12.0-12.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 13[u]13.0-13.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 14[u]14.0-14.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 15[u]15.0-15.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [remark]
+ Specify the codec type of the BSC. It is available only for circuit BSC.
Entry 0 is the highest priority, entry 13 is the lowest."
+ ::= { trunkGroupEntry 31 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.32
+ tgEchoControlDeviceIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Echo Control Device Indicator
+ Remark:Indicate including echo control device in outbound IAM message or not."
+ ::= { trunkGroupEntry 32 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.33
+ tgSatelliteIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ noSatelliteCircuit(0),
+ oneSatelliteCircuit(1),
+ twoSatelliteCircuit(2),
+ transit(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify the bearing value of the Satellite Indicator in the outgoing ISUP IAM message. For Transit, just adopts the same value from incoming ISUP IAM message."
+ ::= { trunkGroupEntry 33 }
+
+
+-- Trunk
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.18
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.34
+ tgCreateEntryTrunk OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { trunkGroupEntry 34 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.35
+ tgTrunkEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Trunk Entries
+ Remark:The total number of configured Trunks in this Trunk Group."
+ ::= { trunkGroupEntry 35 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.19
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.36
+ tgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { trunkGroupEntry 36 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.37
+ tgEventLog OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkGroupEntry 37 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2
+ trunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkGroup 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1
+ trunkEntry OBJECT-TYPE
+ SYNTAX TrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { trunkIndex, trunkTGIndex }
+ ::= { trunkTable 1 }
+
+
+ TrunkEntry ::=
+ SEQUENCE {
+ trunkTGIndex
+ INTEGER,
+ trunkIndex
+ INTEGER,
+ trunkTitle
+ DisplayString16,
+ trunkCreateTimeStamp
+ TimeStamp,
+ trunkAdministrationState
+ AdminStateChoices,
+ trunkOperabilityStatus
+ OperStateChoices,
+ trunkAvailabilityStatus
+ AvailStateChoices,
+ trunkMgID
+ INTEGER,
+ trunkPortID
+ INTEGER,
+ trunkPortType
+ INTEGER,
+ trunkGroupID
+ INTEGER,
+ trunkSupervisionMethod
+ INTEGER,
+ trunkLinkID
+ INTEGER,
+ trunkUserNetworkInterface
+ INTEGER,
+ trunkCICValueAssignment
+ INTEGER,
+ trunkChannelInUse
+ INTEGER,
+ trunkChannelEntries
+ INTEGER,
+ trunkRowStatus
+ RowStatus
+ }
+
+-- Trunk TG Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.1
+ trunkTGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:TG Index
+ Remark:Trunk Group index number for the Trunk."
+ ::= { trunkEntry 1 }
+
+
+-- Trunk Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.2
+ trunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Trunk index number ranges from 1 to 32."
+ ::= { trunkEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.3
+ trunkTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Trunk name for identification purpose only."
+ DEFVAL { "TK#" }
+ ::= { trunkEntry 3 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.4
+ trunkCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Trunk"
+ ::= { trunkEntry 4 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.5
+ trunkAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed Trunk."
+ ::= { trunkEntry 5 }
+
+
+-- Operability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.6
+ trunkOperabilityStatus OBJECT-TYPE
+ SYNTAX OperStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Oper State
+ Remark:(Read Only) Indicate the current Trunk operation is qualified by Availability Status."
+ ::= { trunkEntry 6 }
+
+
+-- Availability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.7
+ trunkAvailabilityStatus OBJECT-TYPE
+ SYNTAX AvailStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Avail State
+ Remark:(Read Only) Qualify Operation State providing details about the current operational state."
+ ::= { trunkEntry 7 }
+
+
+-- MG ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.8
+ trunkMgID OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MG ID
+ Remark:Specify the Trunk to a Media Gateway. Not applicable to virtual MG."
+ DEFVAL { 0 }
+ ::= { trunkEntry 8 }
+
+
+-- Port ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.9
+ trunkPortID OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Port ID
+ Remark:Specify the Trunk to a physical port of the selected Media Gateway. Not applicable to virtual MG."
+ ::= { trunkEntry 9 }
+
+
+-- Port Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.10
+ trunkPortType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ e1(0),
+ t1(1),
+ analogue(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Port Type
+ Remark:Specify the type of MG physical ports."
+ DEFVAL { enable }
+ ::= { trunkEntry 10 }
+
+
+-- Group ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.11
+ trunkGroupID OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ group0(0),
+ group1(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Group ID
+ Remark:Select the application group for the Trunk.
- Group0 = Master is MSC 0
- Group1 = Master is MSC1"
+ DEFVAL { group0 }
+ ::= { trunkEntry 11 }
+
+
+-- Typical CIC Assignment Plan
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.12
+ trunkSupervisionMethod OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ circuitGroup(0),
+ circuit(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Supervision Method
+ Remark:Specify the type of block request indication delivered in the ISUP trunk initialization process."
+ DEFVAL { enable }
+ ::= { trunkEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.13
+ trunkLinkID OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Link ID
+ Remark:(For ISDN) Specify the corresponding IUA link ID which is configured in the MTP3 setting."
+ ::= { trunkEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.14
+ trunkUserNetworkInterface OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ networkSide(0),
+ userSide(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:User Network Interface
+ Remark:(For ISDN) Select Q.931 switch type for ISDN call processing."
+ ::= { trunkEntry 14 }
+
+
+-- Typical CIC Value Assignment
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.15
+ trunkCICValueAssignment OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CIC Assignment
+ Remark:Specify the start CIC to the Trunk for typical mode.
- E1 = 0, 32, 64 ...
- T1 = 0, 24, 48 ..."
+ ::= { trunkEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.16
+ trunkChannelInUse OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Channel in Use
+ Remark:(Read Only) Display the quantity of occupied channels of this trunk in real-time."
+ ::= { trunkEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.17
+ trunkChannelEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Channel Entries
+ Remark:The total number of configured Channels in this Trunk."
+ ::= { trunkEntry 17 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.18
+ trunkRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { trunkEntry 18 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3
+ channelTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ChannelEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkGroup 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1
+ channelEntry OBJECT-TYPE
+ SYNTAX ChannelEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:3"
+ INDEX { tsTrunkIndex, tsIndex, tsTrunkTGIndex }
+ ::= { channelTable 1 }
+
+
+ ChannelEntry ::=
+ SEQUENCE {
+ tsTrunkTGIndex
+ INTEGER,
+ tsTrunkIndex
+ INTEGER,
+ tsIndex
+ INTEGER,
+ tsType
+ INTEGER,
+ tsChannelCIC
+ INTEGER,
+ tsChannelStatus
+ INTEGER,
+ tsLocalBlock
+ INTEGER,
+ tsRemoteBlock
+ INTEGER
+ }
+
+-- CIC Trunk TG Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.1
+ tsTrunkTGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:TG Index
+ Remark:Trunk Group index number for this Timeslot."
+ ::= { channelEntry 1 }
+
+
+-- CIC Trunk Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.2
+ tsTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Trunk Index
+ Remark:Trunk index number for this Timeslot."
+ ::= { channelEntry 2 }
+
+
+-- CIC Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.3
+ tsIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Timeslot index number ranges from 1 to 32."
+ ::= { channelEntry 3 }
+
+
+-- CIC Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.4
+ tsType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ incoming(1),
+ outgoing(2),
+ bidirectional(3),
+ leaseLine(4),
+ dChannel(5),
+ xChannel(6)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Type
+ Remark:Specify the type of the channel."
+ DEFVAL { bidirectiona }
+ ::= { channelEntry 4 }
+
+
+-- Channel CIC
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.5
+ tsChannelCIC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CIC
+ Remark:Assign a Circuit Identity Code (CIC) to the channel."
+ ::= { channelEntry 5 }
+
+
+-- Call Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.6
+ tsChannelStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ outOfService(0),
+ idle(1),
+ busy(2),
+ iPALIMUsed(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Status
+ Remark:(Read Only) The current status of the serving channel."
+ ::= { channelEntry 6 }
+
+
+-- Local Block
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.7
+ tsLocalBlock OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ unblocked(0),
+ localBlocked(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Local Block
+ Remark:(Read Only) Display the local block error if the channel is out of service."
+ ::= { channelEntry 7 }
+
+
+-- Remote Block
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.8
+ tsRemoteBlock OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ unblocked(0),
+ remoteBlocked(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Remote Block
+ Remark:(Read Only) Display the remote block error if the channel is out of service."
+ ::= { channelEntry 8 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5
+ locationArea OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1
+ locationAreaTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LocationAreaEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { locationArea 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1
+ locationAreaEntry OBJECT-TYPE
+ SYNTAX LocationAreaEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { laIndex }
+ ::= { locationAreaTable 1 }
+
+
+ LocationAreaEntry ::=
+ SEQUENCE {
+ laIndex
+ INTEGER,
+ laTitle
+ DisplayString16,
+ laCreateTimeStamp
+ TimeStamp,
+ laLAC
+ INTEGER,
+ laTrunkGroup
+ INTEGER,
+ laPageType
+ INTEGER,
+ laNumberOfRepeatPaging
+ INTEGER,
+ laNITZ
+ Opaque,
+ laLocalEmergencyNumber0
+ DisplayString16,
+ laLocalEmergencyNumber1
+ DisplayString16,
+ laLocalEmergencyNumber2
+ DisplayString16,
+ laLocalEmergencyNumber3
+ DisplayString16,
+ laLocalEmergencyNumber4
+ DisplayString16,
+ laLocalEmergencyNumber5
+ DisplayString16,
+ laLocalEmergencyNumber6
+ DisplayString16,
+ laLocalEmergencyNumber7
+ DisplayString16,
+ laCreateEntryCell
+ INTEGER,
+ laCellEntries
+ INTEGER,
+ laRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.1
+ laIndex OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Location Area index number ranges from 1 to 1023."
+ ::= { locationAreaEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.2
+ laTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Location Area name for identification purpose only."
+ DEFVAL { "LA#" }
+ ::= { locationAreaEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.3
+ laCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Location Area."
+ ::= { locationAreaEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.4
+ laLAC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:LAC
+ Remark:Specify the Location Area Code of this location area.
- Range = 1 - 65535"
+ ::= { locationAreaEntry 4 }
+
+
+-- Trunk Group
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.5
+ laTrunkGroup OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Trunk Group
+ Remark:Specify the serving Trunk Group of this location area."
+ ::= { locationAreaEntry 5 }
+
+
+-- Page Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.6
+ laPageType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ byLAC(0),
+ byAllCell(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Paging Mode
+ Remark:Paging messages broadcast in the specified location area or in the whole network."
+ DEFVAL { byLAC }
+ ::= { locationAreaEntry 6 }
+
+
+-- Number Of Repeat Paging
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.7
+ laNumberOfRepeatPaging OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Repeat Paging Times
+ Remark:Specify the subsequent paging times if the initial paging fails."
+ DEFVAL { 2 }
+ ::= { locationAreaEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.8
+ laNITZ OBJECT-TYPE
+ SYNTAX Opaque (SIZE (35))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NITZ
+ Remark:Network Identity and Time Zone"
+ ::= { locationAreaEntry 8 }
+
+
+-- Local Emergency Number0
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.9
+ laLocalEmergencyNumber0 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 0
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 9 }
+
+
+-- Local Emergency Number1
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.10
+ laLocalEmergencyNumber1 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 1
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 10 }
+
+
+-- Local Emergency Number2
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.11
+ laLocalEmergencyNumber2 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 2
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 11 }
+
+
+-- Local Emergency Number3
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.12
+ laLocalEmergencyNumber3 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 3
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 12 }
+
+
+-- Local Emergency Number4
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.13
+ laLocalEmergencyNumber4 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 4
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 13 }
+
+
+-- Local Emergency Number5
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.14
+ laLocalEmergencyNumber5 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 5
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 14 }
+
+
+-- Local Emergency Number6
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.15
+ laLocalEmergencyNumber6 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 6
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 15 }
+
+
+-- Local Emergency Number7
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.16
+ laLocalEmergencyNumber7 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 7
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 16 }
+
+
+-- Cell
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.17
+ laCreateEntryCell OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { locationAreaEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.18
+ laCellEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Cell Entries
+ Remark:The total number of configured Cells in this Location Area."
+ ::= { locationAreaEntry 18 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.19
+ laRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { locationAreaEntry 19 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2
+ cellTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF CellEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { locationArea 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1
+ cellEntry OBJECT-TYPE
+ SYNTAX CellEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { cellIndex, cellLAIndex }
+ ::= { cellTable 1 }
+
+
+ CellEntry ::=
+ SEQUENCE {
+ cellLAIndex
+ INTEGER,
+ cellIndex
+ INTEGER,
+ cellTitle
+ DisplayString16,
+ cellCreateTimeStamp
+ TimeStamp,
+ cellRoutingZoneID
+ INTEGER,
+ cellRegionalSubscriptionZoneCode
+ INTEGER,
+ cellCellID
+ INTEGER,
+ cellLatitude
+ Opaque,
+ cellLongitude
+ Opaque,
+ cellLocalEmergencyNumber0
+ DisplayString16,
+ cellLocalEmergencyNumber1
+ DisplayString16,
+ cellLocalEmergencyNumber2
+ DisplayString16,
+ cellLocalEmergencyNumber3
+ DisplayString16,
+ cellLocalEmergencyNumber4
+ DisplayString16,
+ cellLocalEmergencyNumber5
+ DisplayString16,
+ cellLocalEmergencyNumber6
+ DisplayString16,
+ cellLocalEmergencyNumber7
+ DisplayString16,
+ cellRowStatus
+ RowStatus
+ }
+
+-- Cell Location Area Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.1
+ cellLAIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:LA Index
+ Remark:Location Area index number for this Cell."
+ ::= { cellEntry 1 }
+
+
+-- Cell Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.2
+ cellIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..16)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Cell index number ranges from 1 to 16."
+ ::= { cellEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.3
+ cellTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Cell name for identification purpose only."
+ DEFVAL { "CELL#" }
+ ::= { cellEntry 3 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.4
+ cellCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Cell."
+ ::= { cellEntry 4 }
+
+
+-- Rounting Zone ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.5
+ cellRoutingZoneID OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:RZS ID
+ Remark:Specify the Routing Zone Set to this Cell."
+ DEFVAL { 0 }
+ ::= { cellEntry 5 }
+
+
+-- Regional Subscription Zone Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.6
+ cellRegionalSubscriptionZoneCode OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:RSZC
+ Remark:Assign a Regional Subscription Zone Code (RSZC) to the LAC.
- RSZC = CC + NDC + Zone Code"
+ DEFVAL { 'FF'h }
+ ::= { cellEntry 6 }
+
+
+-- Cell ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.7
+ cellCellID OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Cell ID
+ Remark:Global Cell Identity defined in GSM 03.03.
- Range = 0 - 65535"
+ ::= { cellEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.8
+ cellLatitude OBJECT-TYPE
+ SYNTAX Opaque (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Latitude[u]00.0-03.7[u]input
+ [v]toLatitude-formula-pow(2,23)/90
+ [remark]
+ Specify the latitude of this cell for a location service use.
- Range = -90.00 - 90.00"
+ ::= { cellEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.9
+ cellLongitude OBJECT-TYPE
+ SYNTAX Opaque (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Longitude[u]00.0-03.7[u]input
+ [v]toLongitude-formula-pow(2,24)/360
+ [remark]
+ Specify the longitude of this cell for a location service use.
- Range = -180.00 - 180.00"
+ ::= { cellEntry 9 }
+
+
+-- Cell Local Emergency Number0
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.10
+ cellLocalEmergencyNumber0 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 0
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 10 }
+
+
+-- Cell Local Emergency Number1
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.11
+ cellLocalEmergencyNumber1 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 1
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 11 }
+
+
+-- Cell Local Emergency Number2
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.12
+ cellLocalEmergencyNumber2 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 2
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 12 }
+
+
+-- Cell Local Emergency Number3
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.13
+ cellLocalEmergencyNumber3 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 3
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 13 }
+
+
+-- Cell Local Emergency Number4
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.14
+ cellLocalEmergencyNumber4 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 4
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 14 }
+
+
+-- Cell Local Emergency Number5
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.15
+ cellLocalEmergencyNumber5 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 5
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 15 }
+
+
+-- Cell Local Emergency Number6
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.16
+ cellLocalEmergencyNumber6 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 6
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 16 }
+
+
+-- Cell Local Emergency Number7
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.17
+ cellLocalEmergencyNumber7 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 7
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 17 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.18
+ cellRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cellEntry 18 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6
+ mediaGateway OBJECT IDENTIFIER ::= { parameter 6 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1
+ mediaGatewayTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MediaGatewayEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mediaGateway 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1
+ mediaGatewayEntry OBJECT-TYPE
+ SYNTAX MediaGatewayEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { mgIndex }
+ ::= { mediaGatewayTable 1 }
+
+
+ MediaGatewayEntry ::=
+ SEQUENCE {
+ mgIndex
+ INTEGER,
+ mgTitle
+ DisplayString16,
+ mgCreateTimeStamp
+ TimeStamp,
+ mgAdministrationState
+ AdminStateChoices,
+ mgIP
+ IpAddress,
+ mgDomainName
+ DisplayString16,
+ mgSwitchingMode
+ INTEGER,
+ mgEndPoint
+ INTEGER,
+ mgToneGenCapability
+ INTEGER,
+ mgType
+ INTEGER,
+ mgMaxPhysicalPorts
+ INTEGER,
+ mgMaxChannels
+ INTEGER,
+ mgPacketizationPeriod
+ INTEGER,
+ mgPriorityLevel
+ INTEGER,
+ mgCodecType
+ Opaque,
+ mgAuditTimer
+ INTEGER,
+ mgPhysicalPortEntries
+ INTEGER,
+ mgRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.1
+ mgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Media Gateway index number ranges from 1 to 255."
+ ::= { mediaGatewayEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.2
+ mgTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Media Gateway name for identification purpose only."
+ DEFVAL { "MG#" }
+ ::= { mediaGatewayEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.3
+ mgCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the MG entry."
+ ::= { mediaGatewayEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.4
+ mgAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed Media Gateway."
+ ::= { mediaGatewayEntry 4 }
+
+
+-- IP
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.5
+ mgIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:IP
+ Remark:IP address of the Media Gateway."
+ ::= { mediaGatewayEntry 5 }
+
+
+-- Domain Name
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.6
+ mgDomainName OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Domain Name
+ Remark:Specify a domain name to the Media Gateway."
+ ::= { mediaGatewayEntry 6 }
+
+
+-- Switching Mode
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.7
+ mgSwitchingMode OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ mgcp(0),
+ eightECP(1),
+ megaco(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Switching Mode
+ Remark:Select the switching mode of the specific Media Gateway.
- 8ECP = Circuit Switch (8KE1 Card)
- MGCP = Soft Switch"
+ DEFVAL { mgcp }
+ ::= { mediaGatewayEntry 7 }
+
+
+-- End Point Description
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.8
+ mgEndPoint OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ structured(1),
+ unStructured(2),
+ unStructuredHex(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Endpoint
+ Remark:Specify the method of MGCP endpoint description."
+ DEFVAL { structured }
+ ::= { mediaGatewayEntry 8 }
+
+
+-- Tone Gen Capability
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.9
+ mgToneGenCapability OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Tone Generation Capacity
+ Remark:Enable if the Media Gateway has tone generation capability."
+ DEFVAL { enable }
+ ::= { mediaGatewayEntry 9 }
+
+
+-- MG Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.10
+ mgType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ audioCodes(1),
+ lgcMG(2),
+ lgcCS(3),
+ ipBSS(4),
+ analogLine(11),
+ vim(19),
+ tandem(20),
+ announcementServer(21),
+ iuupGW(23),
+ interactiveVoiceResponse(31),
+ conferenceBridge(41),
+ packetRelay(51),
+ wiretap(61),
+ atm(71)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Type
+ Remark:Select the type of Media Gateway endpoint."
+ DEFVAL { digitalChannel }
+ ::= { mediaGatewayEntry 10 }
+
+
+-- Max Physical Ports
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.11
+ mgMaxPhysicalPorts OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Ports
+ Remark:The total physical port number of the Media Gateway. Not applicable to virtual MG."
+ ::= { mediaGatewayEntry 11 }
+
+
+-- Max Channels
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.12
+ mgMaxChannels OBJECT-TYPE
+ SYNTAX INTEGER (0..1024)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Channels
+ Remark:The total channel number of the virtual Media Gateway. Applicable to virtual MG only."
+ ::= { mediaGatewayEntry 12 }
+
+
+-- Packetization Period
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.13
+ mgPacketizationPeriod OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ x20ms(20),
+ x40ms(40),
+ x60ms(60),
+ x80ms(80)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Packetization Period
+ Remark:The period over which encoded voice bits are collected for encapsulation in."
+ DEFVAL { x20ms }
+ ::= { mediaGatewayEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.14
+ mgPriorityLevel OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Priority Level
+ Remark:Set the priority level of the MG codec table:
- 0 = Lowest priority level
- 255 = Highest priority level"
+ ::= { mediaGatewayEntry 14 }
+
+
+-- Codec Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.15
+ mgCodecType OBJECT-TYPE
+ SYNTAX Opaque (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Codec 0[u]00.0-00.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 1[u]01.0-01.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 2[u]02.0-02.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 3[u]03.0-03.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 4[u]04.0-04.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 5[u]05.0-05.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 6[u]06.0-06.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 7[u]07.0-07.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 8[u]08.0-08.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 9[u]09.0-09.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 10[u]10.0-10.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 11[u]11.0-11.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 12[u]12.0-12.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 13[u]13.0-13.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 14[u]14.0-14.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 15[u]15.0-15.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [remark]
+ Specify the codec type of the Media Gateway. Entry 0 is the highest priority, entry 13 is the lowest."
+ ::= { mediaGatewayEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.16
+ mgAuditTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Audit Timer
+ Remark:The time interval between sending AUEP message from MGC to MGW to check the trunk status. Unit is second."
+ ::= { mediaGatewayEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.17
+ mgPhysicalPortEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Port Entries
+ Remark:The total number of the configured physical Ports of this Media Gateway."
+ ::= { mediaGatewayEntry 17 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.18
+ mgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mediaGatewayEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2
+ physicalPortTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PhysicalPortEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mediaGateway 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1
+ physicalPortEntry OBJECT-TYPE
+ SYNTAX PhysicalPortEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { ppIndex, ppMGIndex }
+ ::= { physicalPortTable 1 }
+
+
+ PhysicalPortEntry ::=
+ SEQUENCE {
+ ppMGIndex
+ INTEGER,
+ ppIndex
+ INTEGER,
+ ppUsedFlag
+ INTEGER,
+ ppStatus
+ INTEGER,
+ ppSeizure
+ OCTET STRING
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.1
+ ppMGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:MG Index
+ Remark:Media Gateway index number for this physical Port."
+ ::= { physicalPortEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.2
+ ppIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Port index number ranges from 1 to 32."
+ ::= { physicalPortEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.3
+ ppUsedFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ idle(0),
+ inUse(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Used Flag
+ Remark:(Read Only) This field indicates whether the port is in service."
+ ::= { physicalPortEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.4
+ ppStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notReady(0),
+ ready(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Status
+ Remark:(Read Only) The availability status of the physical port."
+ ::= { physicalPortEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.5
+ ppSeizure OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ RelationPoint:2.4.2.1
+ Remark:(Read Only) Hyperlink of the related Trunk Group and Trunk."
+ ::= { physicalPortEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3
+ csta OBJECT IDENTIFIER ::= { msc 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3
+ tgIncomingTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TgIncomingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3.1
+ tgIncomingEntry OBJECT-TYPE
+ SYNTAX TgIncomingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { tgIncomingTgndex, tgIncomingIndex }
+ ::= { tgIncomingTable 1 }
+
+
+ TgIncomingEntry ::=
+ SEQUENCE {
+ tgIncomingTgndex
+ INTEGER,
+ tgIncomingIndex
+ INTEGER,
+ tgIncomingData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3.1.1
+ tgIncomingTgndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgIncomingEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3.1.2
+ tgIncomingIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgIncomingEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3.1.3
+ tgIncomingData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgIncomingEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4
+ tgOutgoingTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TgOutgoingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4.1
+ tgOutgoingEntry OBJECT-TYPE
+ SYNTAX TgOutgoingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { tgOutgoingTgIndex, tgOutgoingIndex }
+ ::= { tgOutgoingTable 1 }
+
+
+ TgOutgoingEntry ::=
+ SEQUENCE {
+ tgOutgoingTgIndex
+ INTEGER,
+ tgOutgoingIndex
+ INTEGER,
+ tgOutgoingData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4.1.1
+ tgOutgoingTgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgOutgoingEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4.1.2
+ tgOutgoingIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgOutgoingEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4.1.3
+ tgOutgoingData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgOutgoingEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.5
+ subsToSubsTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SubsToSubsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.5.1
+ subsToSubsEntry OBJECT-TYPE
+ SYNTAX SubsToSubsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { subsToSubsIndex }
+ ::= { subsToSubsTable 1 }
+
+
+ SubsToSubsEntry ::=
+ SEQUENCE {
+ subsToSubsIndex
+ INTEGER,
+ subsToSubsData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.5.1.1
+ subsToSubsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToSubsEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.5.1.2
+ subsToSubsData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToSubsEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.6
+ subsToTrunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SubsToTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.6.1
+ subsToTrunkEntry OBJECT-TYPE
+ SYNTAX SubsToTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { subsToTrunkIndex }
+ ::= { subsToTrunkTable 1 }
+
+
+ SubsToTrunkEntry ::=
+ SEQUENCE {
+ subsToTrunkIndex
+ INTEGER,
+ subsToTrunkData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.6.1.1
+ subsToTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToTrunkEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.6.1.2
+ subsToTrunkData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToTrunkEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.7
+ trunkToSubsTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkToSubsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.7.1
+ trunkToSubsEntry OBJECT-TYPE
+ SYNTAX TrunkToSubsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { trunkToSubsIndex }
+ ::= { trunkToSubsTable 1 }
+
+
+ TrunkToSubsEntry ::=
+ SEQUENCE {
+ trunkToSubsIndex
+ INTEGER,
+ trunkToSubsData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.7.1.1
+ trunkToSubsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToSubsEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.7.1.2
+ trunkToSubsData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToSubsEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.8
+ trunkToTrunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkToTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.8.1
+ trunkToTrunkEntry OBJECT-TYPE
+ SYNTAX TrunkToTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { trunkToTrunkIndex }
+ ::= { trunkToTrunkTable 1 }
+
+
+ TrunkToTrunkEntry ::=
+ SEQUENCE {
+ trunkToTrunkIndex
+ INTEGER,
+ trunkToTrunkData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.8.1.1
+ trunkToTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToTrunkEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.8.1.2
+ trunkToTrunkData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToTrunkEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.9
+ intraconnectionTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF IntraconnectionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.9.1
+ intraconnectionEntry OBJECT-TYPE
+ SYNTAX IntraconnectionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { intraconnectionIndex }
+ ::= { intraconnectionTable 1 }
+
+
+ IntraconnectionEntry ::=
+ SEQUENCE {
+ intraconnectionIndex
+ INTEGER,
+ intraconnectionData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.9.1.1
+ intraconnectionIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { intraconnectionEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.9.1.2
+ intraconnectionData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { intraconnectionEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.10
+ subsToIpTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SubsToIpEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.10.1
+ subsToIpEntry OBJECT-TYPE
+ SYNTAX SubsToIpEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { subsToIpIndex }
+ ::= { subsToIpTable 1 }
+
+
+ SubsToIpEntry ::=
+ SEQUENCE {
+ subsToIpIndex
+ INTEGER,
+ subsToIpData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.10.1.1
+ subsToIpIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToIpEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.10.1.2
+ subsToIpData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToIpEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.11
+ trunkToIpTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkToIpEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.11.1
+ trunkToIpEntry OBJECT-TYPE
+ SYNTAX TrunkToIpEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { trunkToIpIndex }
+ ::= { trunkToIpTable 1 }
+
+
+ TrunkToIpEntry ::=
+ SEQUENCE {
+ trunkToIpIndex
+ INTEGER,
+ trunkToIpData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.11.1.1
+ trunkToIpIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToIpEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.11.1.2
+ trunkToIpData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToIpEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.12
+ mobileOriginatedTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MobileOriginatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.12.1
+ mobileOriginatedEntry OBJECT-TYPE
+ SYNTAX MobileOriginatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { mobileOriginatedIndex }
+ ::= { mobileOriginatedTable 1 }
+
+
+ MobileOriginatedEntry ::=
+ SEQUENCE {
+ mobileOriginatedIndex
+ INTEGER,
+ mobileOriginatedData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.12.1.1
+ mobileOriginatedIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mobileOriginatedEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.12.1.2
+ mobileOriginatedData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mobileOriginatedEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.13
+ mobileTerminatedTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MobileTerminatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.13.1
+ mobileTerminatedEntry OBJECT-TYPE
+ SYNTAX MobileTerminatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { mobileTerminatedIndex }
+ ::= { mobileTerminatedTable 1 }
+
+
+ MobileTerminatedEntry ::=
+ SEQUENCE {
+ mobileTerminatedIndex
+ INTEGER,
+ mobileTermiginatedData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.13.1.1
+ mobileTerminatedIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mobileTerminatedEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.13.1.2
+ mobileTermiginatedData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mobileTerminatedEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.14
+ inTrunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF InTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.14.1
+ inTrunkEntry OBJECT-TYPE
+ SYNTAX InTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { inTrunkIndex }
+ ::= { inTrunkTable 1 }
+
+
+ InTrunkEntry ::=
+ SEQUENCE {
+ inTrunkIndex
+ INTEGER,
+ inTrunkData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.14.1.1
+ inTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { inTrunkEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.14.1.2
+ inTrunkData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { inTrunkEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.15
+ outTrunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF OutTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.15.1
+ outTrunkEntry OBJECT-TYPE
+ SYNTAX OutTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { outTrunkIndex }
+ ::= { outTrunkTable 1 }
+
+
+ OutTrunkEntry ::=
+ SEQUENCE {
+ outTrunkIndex
+ INTEGER,
+ outTrunkData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.15.1.1
+ outTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { outTrunkEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.15.1.2
+ outTrunkData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { outTrunkEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.16
+ ipTerminatedTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF IpTerminatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.16.1
+ ipTerminatedEntry OBJECT-TYPE
+ SYNTAX IpTerminatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { ipTermiginatedIndex }
+ ::= { ipTerminatedTable 1 }
+
+
+ IpTerminatedEntry ::=
+ SEQUENCE {
+ ipTermiginatedIndex
+ INTEGER,
+ ipTermiginatedData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.16.1.1
+ ipTermiginatedIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { ipTerminatedEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.16.1.2
+ ipTermiginatedData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { ipTerminatedEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.4
+ cdr OBJECT IDENTIFIER ::= { msc 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.4.1
+ cdrHeadOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.4.2
+ cdrTailOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.4.3
+ cdrDataOid OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 3 }
+
+
+
+ END
+
+--
+-- LGC-SS-MSC-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-MSC-MIB_baknew.my b/omc/bin/mib/LGC-SS-MSC-MIB_baknew.my
new file mode 100644
index 0000000..14c4c8e
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-MSC-MIB_baknew.my
@@ -0,0 +1,4932 @@
+--
+-- LGC-SS-MSC-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Tuesday, March 20, 2012 at 10:02:43
+--
+
+ LGC-SS-MSC-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString16, TimeStamp, RowStatus, DisplayString8,
+ DisplayString, AdminStateChoices, OperStateChoices
+ FROM LGC-MIB
+ IpAddress, Opaque, Integer32, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1
+ msc MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 1 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { msc 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2
+ parameter OBJECT IDENTIFIER ::= { msc 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.1
+ cDROption OBJECT-TYPE
+ SYNTAX Opaque (SIZE (8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]MO Call[u]00.0-00.0[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]MT Call[u]00.1-00.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]In Gateway[u]00.2-00.2[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Out Gateway[u]00.3-00.3[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]MO SMS[u]00.4-00.4[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]MT SMS[u]00.5-00.5[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Transit Call[u]00.6-00.6[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Roaming[u]00.7-00.7[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Reserved[u]01.0-01.0[u]select
+ [unit]Common Equipment[u]01.1-01.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]SS Action[u]01.2-01.2[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Term CAMEL[u]01.3-01.3[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]IMEI White List[u]01.4-01.4[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]IMEI Black List[u]01.5-01.5[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]IMEI Grey List[u]01.6-01.6[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]IMEI Unknown[u]01.7-01.7[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Reserved[u]02.0-02.7[u]select
+ [unit]Reserved[u]03.0-03.7[u]select
+ [remark]Control the Call Detail Record generation for different call types."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.2
+ maxCallDurationMO OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MO Max Call Duration
+ Remark:Define the permitted maximum call duration for MO call. Any ongoing call reaching this threshold will be compulsively cut off.
- Set 0 to disable this function."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.3
+ maxCallDurationMT OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MT Max Call Duration
+ Remark:Define the permitted maximum call duration for MT call. Any incoming call reaching this threshold will be compulsively cut off.
- Set 0 to disable this function."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.4
+ locationNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Location Number
+ Remark:Specify the location routing number for MNP service."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.5
+ suspendTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Suspend Timer
+ Remark:If receives ISUP SUSPEND message in an ISUP call, then start the suspend timer to wait for the ISUP RESUME message. If time out, then send RELEASE to ISUP. Unit is second."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.6
+ emlppPciOption OBJECT-TYPE
+ SYNTAX Opaque (SIZE (1))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:eMLPP PCI Option
+ OPAQUE DECODE RULE:
+ [unit]Reserved[u]00.0-00.0[u]select
+ [unit]Level A[u]00.1-00.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level B[u]00.2-00.2[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 0[u]00.3-00.3[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 1[u]00.4-00.4[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 2[u]00.5-00.5[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 3[u]00.6-00.6[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 4[u]00.7-00.7[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [remark]
+ The enhanced Multi-Level Precedence and Preemption (eMLPP) service provides the capability to classify the mobile subscribers according to a subscriber specific priority.
The Preemption Capability Indicator (PCI) is set when the traffic channel to be assigned may preempt (forced release) an existing connection with a lower priority level (active preemption)."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.7
+ emlppPviOption OBJECT-TYPE
+ SYNTAX Opaque (SIZE (1))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:eMLPP PVI Option
+ OPAQUE DECODE RULE:
+ [unit]Reserved[u]00.0-00.0[u]select
+ [unit]Level A[u]00.1-00.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level B[u]00.2-00.2[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 0[u]00.3-00.3[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 1[u]00.4-00.4[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 2[u]00.5-00.5[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 3[u]00.6-00.6[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Level 4[u]00.7-00.7[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [remark]
+ The enhanced Multi-Level Precedence and Preemption (eMLPP) service provides the capability to classify the mobile subscribers according to a subscriber specific priority.
The Preemption Vulnerability Indicator (PVI) is set when the traffic channel to be assigned can be preempted by another connection that might be established later with a higher priority level (passive preemption)."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.8
+ assignmentTimer OBJECT-TYPE
+ SYNTAX INTEGER (10..250)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Assignment Timer
+ Remark:Specify the maximum waiting time for receiving Assignment Complete message after the Assignment Request message has been sent. Unit is 100ms."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.9
+ pagingTimer OBJECT-TYPE
+ SYNTAX INTEGER (10..40)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Paging Timer
+ Remark:Specify the maximum waiting time for receiving Paging Response message after the Paging message has been sent. Unit is 1 second."
+ ::= { system 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.1.10
+ splitEtcNumber OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Split ETC Number
+ Remark:Allow or forbid splitting the Correlation ID and SCF ID in the Establish Temporary Connection message."
+ ::= { system 10 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2
+ routingZoneSet OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1
+ routingZoneSetTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RoutingZoneSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { routingZoneSet 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1
+ routingZoneSetEntry OBJECT-TYPE
+ SYNTAX RoutingZoneSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { rzsIndex }
+ ::= { routingZoneSetTable 1 }
+
+
+ RoutingZoneSetEntry ::=
+ SEQUENCE {
+ rzsIndex
+ INTEGER,
+ rzsTitle
+ DisplayString16,
+ rzsCreateTimeStamp
+ TimeStamp,
+ rzsDialingPrefixSetID
+ INTEGER,
+ rzsAnnouncementSetID
+ INTEGER,
+ rzsMSRNRangeStart
+ DisplayString16,
+ rzsMSRNRangeEnd
+ DisplayString16,
+ rzsSRFNumber0
+ DisplayString16,
+ rzsSRFNumber1
+ DisplayString16,
+ rzsCreateEntryRoutingSelection
+ INTEGER,
+ rzsRoutingSelectionEntries
+ INTEGER,
+ rzsRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.1
+ rzsIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Routing Zone Set index number ranges from 1 to 31."
+ ::= { routingZoneSetEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.2
+ rzsTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Routing Zone Set name for identification purpose only."
+ DEFVAL { "RZS#" }
+ ::= { routingZoneSetEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.3
+ rzsCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Routing Zone Set."
+ ::= { routingZoneSetEntry 3 }
+
+
+-- Dialing Prefix Set ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.4
+ rzsDialingPrefixSetID OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Dialing Prefix Set ID
+ Remark:Specify the Dialing Prefix Set to this Routing Zone Set."
+ DEFVAL { 0 }
+ ::= { routingZoneSetEntry 4 }
+
+
+-- Announcement(CUA) Set ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.5
+ rzsAnnouncementSetID OBJECT-TYPE
+ SYNTAX INTEGER (0..256)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Announcement Set ID
+ Remark:Specify the Announcement Set to this Routing Zone Set."
+ ::= { routingZoneSetEntry 5 }
+
+
+-- MSRN Range Start
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.6
+ rzsMSRNRangeStart OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSRN Start
+ Remark:The beginning of the MSRN range for this Routing Zone Set."
+ ::= { routingZoneSetEntry 6 }
+
+
+-- MSRN Range End
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.7
+ rzsMSRNRangeEnd OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSRN End
+ Remark:The end of the MSRN range for this Routing Zone Set."
+ ::= { routingZoneSetEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.8
+ rzsSRFNumber0 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SRF 0 Number
+ Remark:The E.164 node address of the SRF connecting to MSS platform 0."
+ ::= { routingZoneSetEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.9
+ rzsSRFNumber1 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SRF 1 Number
+ Remark:The E.164 node address of the SRF connecting to MSS platform 1."
+ ::= { routingZoneSetEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.10
+ rzsCreateEntryRoutingSelection OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { routingZoneSetEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.11
+ rzsRoutingSelectionEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Routing Selection Entries
+ Remark:The total number of configured Routing Selections in this Routing Zone Set."
+ ::= { routingZoneSetEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.1.1.12
+ rzsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { routingZoneSetEntry 12 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2
+ routingSelectionTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RoutingSelectionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { routingZoneSet 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1
+ routingSelectionEntry OBJECT-TYPE
+ SYNTAX RoutingSelectionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { rsIndex, rsRZSIndex }
+ ::= { routingSelectionTable 1 }
+
+
+ RoutingSelectionEntry ::=
+ SEQUENCE {
+ rsRZSIndex
+ INTEGER,
+ rsIndex
+ INTEGER,
+ rsTitle
+ DisplayString16,
+ rsCreateTimeStamp
+ TimeStamp,
+ rsTrunkGroup
+ INTEGER,
+ rsAlternativeTrunkGroupOption
+ INTEGER,
+ rsAlternativeTrunkGroup
+ INTEGER,
+ rsNAIForOutgoingCall
+ INTEGER,
+ rsNumberOfDigitDeletion
+ INTEGER,
+ rsInsertionNumber
+ DisplayString16,
+ rsRowStatus
+ RowStatus
+ }
+
+-- Route Selection RZS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.1
+ rsRZSIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:RSZ Index
+ Remark:Routing Zone Set Index for the Routing Selection."
+ ::= { routingSelectionEntry 1 }
+
+
+-- Route Selection Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.2
+ rsIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Routing Selection index number range from 1 to 31."
+ ::= { routingSelectionEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.3
+ rsTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Routing Selection name for identification purpose only."
+ DEFVAL { "RS#" }
+ ::= { routingSelectionEntry 3 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.4
+ rsCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Routing Selection."
+ ::= { routingSelectionEntry 4 }
+
+
+-- Trunk Group
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.5
+ rsTrunkGroup OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Trunk Group
+ Remark:Select the Trunk Group for the outgoing routing."
+ DEFVAL { 0 }
+ ::= { routingSelectionEntry 5 }
+
+
+-- Alternative Trunk Group Option
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.6
+ rsAlternativeTrunkGroupOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Alternative TG Flag
+ Remark:Enable or disable alternative Trunk Group when the primary Trunk Group is unavailable."
+ DEFVAL { disable }
+ ::= { routingSelectionEntry 6 }
+
+
+-- Alternative Trunk Group
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.7
+ rsAlternativeTrunkGroup OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Alternative TG
+ Remark:Specify the alternative Trunk Group. It's available only when the previous Alternative TG Flag is enabled."
+ DEFVAL { 0 }
+ ::= { routingSelectionEntry 7 }
+
+
+-- NAI For Outgoing Call
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.8
+ rsNAIForOutgoingCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sub(1),
+ unknown(2),
+ ndd(3),
+ idd(4),
+ UKSpecific(126)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NAI for Outgoing Call
+ Remark:Select the required Network Address Identifier (NAI). The NAI option enables the MSC to perform call routing."
+ ::= { routingSelectionEntry 8 }
+
+
+-- Number Of Digit Deletion
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.9
+ rsNumberOfDigitDeletion OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Deletion Count
+ Remark:Number of digits to be deleted from the beginning of the dialed number."
+ DEFVAL { 0 }
+ ::= { routingSelectionEntry 9 }
+
+
+-- Insertion Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.10
+ rsInsertionNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Inserted Digits
+ Remark:The digits to be inserted to the front of the dialed number."
+ DEFVAL { "FFFFFFFFFFFFFFFF" }
+ ::= { routingSelectionEntry 10 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.2.2.1.11
+ rsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { routingSelectionEntry 11 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3
+ dialingPrefixSet OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1
+ dialingPrefixSetTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF DialingPrefixSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { dialingPrefixSet 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1
+ dialingPrefixSetEntry OBJECT-TYPE
+ SYNTAX DialingPrefixSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { dpsIndex }
+ ::= { dialingPrefixSetTable 1 }
+
+
+ DialingPrefixSetEntry ::=
+ SEQUENCE {
+ dpsIndex
+ INTEGER,
+ dpsTitle
+ DisplayString16,
+ dpsCreateTimeStamp
+ TimeStamp,
+ dpsCC
+ DisplayString8,
+ dpsNDC
+ DisplayString8,
+ dpsInternationalPrefix
+ DisplayString8,
+ dpsNationalPrefix
+ DisplayString8,
+ dpsHPLMNCC0
+ DisplayString16,
+ dpsHPLMNCC1
+ DisplayString16,
+ dpsHPLMNCC2
+ DisplayString16,
+ dpsHPLMNCC3
+ DisplayString16,
+ dpsHPLMNCC4
+ DisplayString16,
+ dpsHPLMNCC5
+ DisplayString16,
+ dpsHPLMNCC6
+ DisplayString16,
+ dpsHPLMNCC7
+ DisplayString16,
+ dpsNumberPlanArea
+ DisplayString8,
+ dpsCreateEntryDialingPrefix
+ INTEGER,
+ dpsDialingPrefixEntries
+ INTEGER,
+ dpsRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.1
+ dpsIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Dialing Prefix Set index number ranges from 1 to 15."
+ ::= { dialingPrefixSetEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.2
+ dpsTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Dialing Prefix Set name for identification purpose only."
+ DEFVAL { "DPS#" }
+ ::= { dialingPrefixSetEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.3
+ dpsCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Dialing Prefix Set."
+ ::= { dialingPrefixSetEntry 3 }
+
+
+-- Country Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.4
+ dpsCC OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CC
+ Remark:Country Code identifies the country's network."
+ ::= { dialingPrefixSetEntry 4 }
+
+
+-- National Destination Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.5
+ dpsNDC OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NDC
+ Remark:National Destination Code defines the national calling area or national network to which the subscriber belongs."
+ ::= { dialingPrefixSetEntry 5 }
+
+
+-- International Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.6
+ dpsInternationalPrefix OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:International Prefix
+ Remark:Access code for international network."
+ ::= { dialingPrefixSetEntry 6 }
+
+
+-- National Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.7
+ dpsNationalPrefix OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:National Prefix
+ Remark:National prefix for the operating country to make a national call."
+ DEFVAL { "0" }
+ ::= { dialingPrefixSetEntry 7 }
+
+
+-- HPLMN CC0
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.8
+ dpsHPLMNCC0 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 0
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 8 }
+
+
+-- HPLMN CC1
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.9
+ dpsHPLMNCC1 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 1
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 9 }
+
+
+-- HPLMN CC2
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.10
+ dpsHPLMNCC2 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 2
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 10 }
+
+
+-- HPLMN CC3
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.11
+ dpsHPLMNCC3 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 3
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 11 }
+
+
+-- HPLMN CC4
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.12
+ dpsHPLMNCC4 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 4
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 12 }
+
+
+-- HPLMN CC5
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.13
+ dpsHPLMNCC5 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 5
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 13 }
+
+
+-- HPLMN CC6
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.14
+ dpsHPLMNCC6 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 6
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 14 }
+
+
+-- HPLMN CC7
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.15
+ dpsHPLMNCC7 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:HPLMN CC 7
+ Remark:Assign up to 8 Country Code to the home PLMN."
+ ::= { dialingPrefixSetEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.16
+ dpsNumberPlanArea OBJECT-TYPE
+ SYNTAX DisplayString8
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Number Plan Area
+ Remark:Specify number plan area number for MNP outbound."
+ ::= { dialingPrefixSetEntry 16 }
+
+
+-- Dialing Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.17
+ dpsCreateEntryDialingPrefix OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { dialingPrefixSetEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.18
+ dpsDialingPrefixEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..1024)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Dialing Prefix Entries
+ Remark:The total number of the configured Dialing Prefixes in this Dialing Prefix Set."
+ ::= { dialingPrefixSetEntry 18 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.17
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.1.1.19
+ dpsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { dialingPrefixSetEntry 19 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2
+ dialingPrefixTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF DialingPrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { dialingPrefixSet 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1
+ dialingPrefixEntry OBJECT-TYPE
+ SYNTAX DialingPrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { dpIndex, dpDPSIndex }
+ ::= { dialingPrefixTable 1 }
+
+
+ DialingPrefixEntry ::=
+ SEQUENCE {
+ dpDPSIndex
+ INTEGER,
+ dpIndex
+ INTEGER,
+ dpTitle
+ DisplayString16,
+ dpLookupMethod
+ INTEGER,
+ dpCallNumberPrefix
+ DisplayString16,
+ dpStartNumber
+ DisplayString16,
+ dpEndNumber
+ DisplayString16,
+ dpCallNumberAttribute
+ INTEGER,
+ dpAdministrationState
+ AdminStateChoices,
+ dpCallNumberLength
+ INTEGER,
+ dpServiceType
+ INTEGER,
+ dpEmergencyType
+ INTEGER,
+ dpServiceKey
+ INTEGER,
+ dpNumberType
+ INTEGER,
+ dpCLIType
+ INTEGER,
+ dpRSC
+ INTEGER,
+ dpCDRFlag
+ INTEGER,
+ dpOptionForSRFMNP
+ INTEGER,
+ dpMSCOptionForINMNP
+ INTEGER,
+ dpGMSCOptionForINMNP
+ INTEGER,
+ dpPremiumCall
+ INTEGER,
+ dpOSB1Flag
+ INTEGER,
+ dpOSB2Flag
+ INTEGER,
+ dpNAIForOutgoingCall
+ INTEGER,
+ dpPSTNNumberOfDigitDeletion
+ INTEGER,
+ dpPSTNInsertionNumber
+ DisplayString16,
+ dpE164NumberOfDigitDeletion
+ INTEGER,
+ dpE164InsertionNumber
+ DisplayString16,
+ dpRowStatus
+ RowStatus
+ }
+
+-- DP DPS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.1
+ dpDPSIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..15)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:DPS Index
+ Remark:Dialing Prefix Set index number for this Dialing Prefix."
+ ::= { dialingPrefixEntry 1 }
+
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.2
+ dpIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..1024)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Dialing Prefix index number ranges from 1 to 1024."
+ ::= { dialingPrefixEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.3
+ dpTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Dialing Prefix name for identification purpose only."
+ ::= { dialingPrefixEntry 3 }
+
+
+-- Lookup Method
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.4
+ dpLookupMethod OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ prefixLookup(0),
+ groupLookup(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Lookup Method
+ Remark:Select a dialing plan lookup method. Group Lookup Method has a higher priority than Prefix Lookup Method."
+ DEFVAL { prefix }
+ ::= { dialingPrefixEntry 4 }
+
+
+-- Call Number Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.5
+ dpCallNumberPrefix OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Prefix
+ Remark:A combination digits that dial to originate a call. It's only valid when the lookup method selected Prefix."
+ ::= { dialingPrefixEntry 5 }
+
+
+-- Start Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.6
+ dpStartNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Group Prefix Start
+ Remark:The beginning of the group prefix range. It's only valid when the lookup method selected Group."
+ ::= { dialingPrefixEntry 6 }
+
+
+-- End Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.7
+ dpEndNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Group Prefix End
+ Remark:The end of the group prefix range. Start prefix and end prefix must have the same length."
+ ::= { dialingPrefixEntry 7 }
+
+
+-- Call Number Attribute
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.8
+ dpCallNumberAttribute OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sub(1),
+ unknown(2),
+ ndd(3),
+ idd(4),
+ UKSpecific(126)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Number Attribute
+ Remark:The original type of the incoming number. It is specified by originating node for terminating node to route this call with proper dialed number manipulation."
+ ::= { dialingPrefixEntry 8 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.9
+ dpAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:The state of the current Dialing Prefix entry."
+ ::= { dialingPrefixEntry 9 }
+
+
+-- Call Number Length
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.10
+ dpCallNumberLength OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Number Length
+ Remark:The length of the dialed number. Set 0 for uncertain length."
+ DEFVAL { 0 }
+ ::= { dialingPrefixEntry 10 }
+
+
+-- Service Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.11
+ dpServiceType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ normalCall(0),
+ emergencyCall(1),
+ intelligentCall(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Service Type
+ Remark:Service type of the outgoing call:
- Normal = No verification for MT
- Emergency Call = No verification for MO (free call)
- Intelligent Call = Calls to intelligent peripheral"
+ DEFVAL { normalCall }
+ ::= { dialingPrefixEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.12
+ dpEmergencyType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ zero(0),
+ one(1),
+ two(2),
+ three(3),
+ four(4),
+ five(5),
+ six(6),
+ seven(7)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Type
+ Remark:Specify index number which associated with the 8 emergency call numbers in Location Area or Cell setting."
+ DEFVAL { zero }
+ ::= { dialingPrefixEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.13
+ dpServiceKey OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Service Key
+ Remark:Specify service hot key which associated with the service key configuration in the PPS SRF setting."
+ ::= { dialingPrefixEntry 13 }
+
+
+-- Number Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.14
+ dpNumberType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ msisdn(0),
+ msrn(1),
+ pstn(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Number Type
+ Remark:It determines how the numbers are sent out."
+ DEFVAL { msisdn }
+ ::= { dialingPrefixEntry 14 }
+
+
+-- CLI Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.15
+ dpCLIType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sub(0),
+ ndd(1),
+ idd(2),
+ unknownSub(3),
+ unknownNdd(4),
+ unknownIdd(5)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CLI Type
+ Remark:It determines the format of the Caller Line ID (CLI).
- Sub = Unknown(Sub) = SN
- NDD = NDC+SN
- Unknown(NDD) = Nat Prefix+NDC+SN
- IDD = +CC+NDC+SN
- Unknown(IDD) = Int Prefix+CC+NDC+SN"
+ DEFVAL { ndd }
+ ::= { dialingPrefixEntry 15 }
+
+
+-- Routing Selection Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.16
+ dpRSC OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Routing Selection ID
+ Remark:Specify the Routing Selection ID to this Dialing Prefix."
+ DEFVAL { 0 }
+ ::= { dialingPrefixEntry 16 }
+
+
+-- CDR Flag
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.17
+ dpCDRFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CDR Flag
+ Remark:Enable or disable the Call Detail Record generation of this prefix."
+ DEFVAL { enable }
+ ::= { dialingPrefixEntry 17 }
+
+
+-- MNP Flag
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.18
+ dpOptionForSRFMNP OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ portableNumber(1),
+ portedNumber(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SRF-MNP Flag
+ Remark:Enable if this prefix relating to SRF MNP service."
+ DEFVAL { disable }
+ ::= { dialingPrefixEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.19
+ dpMSCOptionForINMNP OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ OQoD(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:IN-MNP Flag (MSC)
+ Remark:Enable or disable IN MNP service when the system performs as an MSC."
+ ::= { dialingPrefixEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.20
+ dpGMSCOptionForINMNP OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ TQoD(1),
+ QoHR(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:IN-MNP Flag (GMSC)
+ Remark:Enable or disable IN MNP service when the system performs as a GMSC."
+ ::= { dialingPrefixEntry 20 }
+
+
+-- Premium Call
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.21
+ dpPremiumCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ information(1),
+ entertainment(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Premium Call Flag
+ Remark:Enable if this prefix relating to Premium Call service."
+ DEFVAL { disable }
+ ::= { dialingPrefixEntry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.22
+ dpOSB1Flag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OSB 1 Flag
+ Remark:Subscribers with OSB type 1 can only make calls to this dialing prefix with Call Allow Flag enabled."
+ DEFVAL { disable }
+ ::= { dialingPrefixEntry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.23
+ dpOSB2Flag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OSB 2 Flag
+ Remark:Subscribers with OSB type 2 can't make calls to this dialing prefix with Call Bar Flag enabled."
+ DEFVAL { disable }
+ ::= { dialingPrefixEntry 23 }
+
+
+-- NAI For Outgoing Call
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.24
+ dpNAIForOutgoingCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sub(1),
+ unknown(2),
+ ndd(3),
+ idd(4),
+ UKSpecific(126)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NAI for Outgoing Call
+ Remark:Select the required Network Address Identifier (NAI). The transformed incoming number will be routed to the associated trunk group."
+ ::= { dialingPrefixEntry 24 }
+
+
+-- PSTN Number Of Digit Deletion
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.25
+ dpPSTNNumberOfDigitDeletion OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PSTN Deletion Count
+ Remark:Number of digits to be deleted from the beginning of the dialed number."
+ DEFVAL { 0 }
+ ::= { dialingPrefixEntry 25 }
+
+
+-- PSTN Insertion Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.26
+ dpPSTNInsertionNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PSTN Inserted Digits
+ Remark:Digits of the number to be added to the front of the dialed number."
+ DEFVAL { 'FFFFFFFFFFFFFFFF'h }
+ ::= { dialingPrefixEntry 26 }
+
+
+-- E164 Number Of Digit Deletion
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.17
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.27
+ dpE164NumberOfDigitDeletion OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:E.164 Deletion Count
+ Remark:Number of digits to be deleted from the beginning of the incoming number."
+ ::= { dialingPrefixEntry 27 }
+
+
+-- E164 Insertion Number
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.18
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.28
+ dpE164InsertionNumber OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:E.164 Inserted Digits
+ Remark:Digits of the number to be added to the front of the incoming number to convert it to an international E.164 format."
+ DEFVAL { 'FFFFFFFFFFFFFFFF'h }
+ ::= { dialingPrefixEntry 28 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.19
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.3.2.1.29
+ dpRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { dialingPrefixEntry 29 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4
+ trunkGroup OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1
+ trunkGroupTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkGroupEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkGroup 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1
+ trunkGroupEntry OBJECT-TYPE
+ SYNTAX TrunkGroupEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { tgIndex }
+ ::= { trunkGroupTable 1 }
+
+
+ TrunkGroupEntry ::=
+ SEQUENCE {
+ tgIndex
+ INTEGER,
+ tgTitle
+ DisplayString16,
+ tgCreateTimeStamp
+ TimeStamp,
+ tgAdministrationState
+ AdminStateChoices,
+ tgOperabilityStatus
+ OperStateChoices,
+ tgAvailabilityStatus
+ AvailStateChoices,
+ tgOPC
+ INTEGER,
+ tgDPC
+ INTEGER,
+ tgNetworkIndicator
+ INTEGER,
+ tgProtocolType
+ INTEGER,
+ tgProtocolVariant
+ INTEGER,
+ tgLocalDomain
+ OCTET STRING,
+ tgDestDomain
+ OCTET STRING,
+ tgDestIP0
+ IpAddress,
+ tgDestIP1
+ IpAddress,
+ tgDestPort
+ INTEGER,
+ tgRemoteProcessISUP
+ INTEGER,
+ tgTONIncomingSIPCall
+ INTEGER,
+ tgCircuitSelectionMode
+ INTEGER,
+ tgBackoffFlag
+ INTEGER,
+ tgTandemRestriction
+ INTEGER,
+ tgCDRFlag
+ INTEGER,
+ tgTrunkGroupType
+ INTEGER,
+ tgRoutingZoneID
+ INTEGER,
+ tgAlternativeRoutingTrigger
+ INTEGER,
+ tgIgnoreNumberPortabilityInformation
+ INTEGER,
+ tgSignalPortedNumber
+ INTEGER,
+ tgNFAS
+ INTEGER,
+ tgPrimaryLink
+ INTEGER,
+ tgBackupLink
+ INTEGER,
+ tgBSCCodec
+ Opaque,
+ tgEchoControlDeviceIndicator
+ INTEGER,
+ tgSatelliteIndicator
+ INTEGER,
+ tgCreateEntryTrunk
+ INTEGER,
+ tgTrunkEntries
+ INTEGER,
+ tgRowStatus
+ RowStatus,
+ tgEventLog
+ DisplayString
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.1
+ tgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Trunk Group index number ranges from 1 to 255."
+ ::= { trunkGroupEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.2
+ tgTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Trunk Group name for identification purpose only."
+ DEFVAL { "TG#" }
+ ::= { trunkGroupEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.3
+ tgCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Trunk Group."
+ ::= { trunkGroupEntry 3 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.4
+ tgAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed Trunk Group."
+ ::= { trunkGroupEntry 4 }
+
+
+-- Operability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.5
+ tgOperabilityStatus OBJECT-TYPE
+ SYNTAX OperStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Oper State
+ Remark:(Read Only) Indicate the current Trunk Group operation is qualified by Availability State."
+ ::= { trunkGroupEntry 5 }
+
+
+-- Availability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.6
+ tgAvailabilityStatus OBJECT-TYPE
+ SYNTAX AvailStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Avail State
+ Remark:(Read Only) Qualify Operation State providing details about the current operational state."
+ ::= { trunkGroupEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.7
+ tgOPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPC
+ Remark:The Originating Point Code of the current TG."
+ ::= { trunkGroupEntry 7 }
+
+
+-- DPC
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.8
+ tgDPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:DPC
+ Remark:The Destination Point Code of the current TG."
+ ::= { trunkGroupEntry 8 }
+
+
+-- Network Indication
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.9
+ tgNetworkIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ int(0),
+ intSpare(1),
+ nat(2),
+ natSpare(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NI
+ Remark:Network Indicator specifies the Trunk Group to a network."
+ DEFVAL { int }
+ ::= { trunkGroupEntry 9 }
+
+
+-- Protocol Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.10
+ tgProtocolType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ aif(0),
+ isup(1),
+ bicc(2),
+ isdn(3),
+ sip(5),
+ staticConnection(7),
+ iuCS(8)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Protocol Type
+ Remark:Select the protocol type for this Trunk Group."
+ ::= { trunkGroupEntry 10 }
+
+
+-- Protocol Variant
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.11
+ tgProtocolVariant OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ itu(0),
+ ansi(1),
+ etsi(2),
+ uk(3),
+ Qsig(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Protocol Variant
+ Remark:Select the protocol variant for this Trunk Group."
+ DEFVAL { itu }
+ ::= { trunkGroupEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.12
+ tgLocalDomain OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Local Domain
+ Remark:(For SIP) Define the local domain name for a SIP TG."
+ ::= { trunkGroupEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.13
+ tgDestDomain OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Dest Domain
+ Remark:(For SIP) Specify the destination domain name for a SIP TG."
+ ::= { trunkGroupEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.14
+ tgDestIP0 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Dest IP 0
+ Remark:(For SIP) Specify the destination IP address for a SIP TG."
+ ::= { trunkGroupEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.15
+ tgDestIP1 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Dest IP 1
+ Remark:(For SIP) Specify the destination IP address for a SIP TG."
+ ::= { trunkGroupEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.16
+ tgDestPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Dest Port
+ Remark:(For SIP) Specify the destination port for a SIP TG."
+ ::= { trunkGroupEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.17
+ tgRemoteProcessISUP OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notSupport(0),
+ support(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Remote Process ISUP
+ Remark:(For SIP) Indicate whether the remote SIP UA is able to process ISUP in SIP-ISUP interworking."
+ ::= { trunkGroupEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.18
+ tgTONIncomingSIPCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ CLIR(0),
+ Sub(1),
+ Unknown(2),
+ NDD(3),
+ IDD(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Incoming SIP Calls TON
+ Remark:(For SIP) Manipulate the type of calling number for a SIP TG. It doesn't take effect when the calling number's attribute is International. It is used for Calling Line Identification Presentation (CLIP) of incoming SIP calls."
+ ::= { trunkGroupEntry 18 }
+
+
+-- Circuit Selection Mode
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.19
+ tgCircuitSelectionMode OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ clockwise(0),
+ antiClockwise(1),
+ lowToHigh(128),
+ highToLow(129)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Circuit Selection
+ Remark:Circuit selection mode of the traffic channel connections."
+ DEFVAL { clockwise }
+ ::= { trunkGroupEntry 19 }
+
+
+-- Backoff Flag
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.20
+ tgBackoffFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Backoff Flag
+ Remark:Enable or disable back off when simultaneously select the same channel with the opposite side."
+ DEFVAL { enable }
+ ::= { trunkGroupEntry 20 }
+
+
+-- Tandem Restriction
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.21
+ tgTandemRestriction OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Tandem Restriction
+ Remark:Enable or disable Tandem to allow or prohibit transit calls from PSTN to PSTN via this trunk group."
+ DEFVAL { enable }
+ ::= { trunkGroupEntry 21 }
+
+
+-- CDR Flag
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.22
+ tgCDRFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CDR Flag
+ Remark:Enable or disable the Call Detail Record generation of this Trunk Group."
+ DEFVAL { enable }
+ ::= { trunkGroupEntry 22 }
+
+
+-- Trunk Group Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.23
+ tgTrunkGroupType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ normal(0),
+ interconnectionForMSS0(16),
+ interconnectionForMSS1(17)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:TG Type
+ Remark:Application type of this Trunk Group."
+ DEFVAL { normal }
+ ::= { trunkGroupEntry 23 }
+
+
+-- Routing Zone ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.24
+ tgRoutingZoneID OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:RZS ID
+ Remark:Specify the Trunk Group to a Routing Zone Set. Set 255 to apply this TG in all Routing Zone Sets."
+ DEFVAL { 0 }
+ ::= { trunkGroupEntry 24 }
+
+
+-- Alternative Routing Trigger
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.17
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.25
+ tgAlternativeRoutingTrigger OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Alternative RZS Trigger
+ Remark:Specify the Trunk Group to an alternative Routing Zone Set for backup purpose.
- 0 = Disable Alternative Routing Zone Set"
+ DEFVAL { 0 }
+ ::= { trunkGroupEntry 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.26
+ tgIgnoreNumberPortabilityInformation OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Ignore MNP Info
+ Remark:(For MNP) In the MNP port-in processing, enable to ignore the optional parameters in the incoming IAM message."
+ ::= { trunkGroupEntry 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.27
+ tgSignalPortedNumber OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Signal Ported Number
+ Remark:(For MNP) In the MNP port-out processing, enable to ignore the optional parameters in the outgoing IAM message."
+ ::= { trunkGroupEntry 27 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.28
+ tgNFAS OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NFAS Flag
+ Remark:(For ISDN) Enable or disable Non-Facility Associated Signaling (NFAS) with D Channel Backup feature."
+ ::= { trunkGroupEntry 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.29
+ tgPrimaryLink OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Primary Link
+ Remark:(For ISDN) Specify the primary D channel to control multiple trunks."
+ ::= { trunkGroupEntry 29 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.30
+ tgBackupLink OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Backup Link
+ Remark:(For ISDN) Specify a backup D channel for use when the primary NFAS D channel is unavailable."
+ ::= { trunkGroupEntry 30 }
+
+
+-- Codec Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.31
+ tgBSCCodec OBJECT-TYPE
+ SYNTAX Opaque (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Codec 0[u]00.0-00.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 1[u]01.0-01.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 2[u]02.0-02.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 3[u]03.0-03.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 4[u]04.0-04.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 5[u]05.0-05.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 6[u]06.0-06.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 7[u]07.0-07.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 8[u]08.0-08.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 9[u]09.0-09.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 10[u]10.0-10.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 11[u]11.0-11.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 12[u]12.0-12.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 13[u]13.0-13.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 14[u]14.0-14.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [unit]Codec 15[u]15.0-15.7[u]select
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_15
+ [v]11[opt]AMR_5_9
+ [v]12[opt]AMR_4_75
+ [v]255[opt]NULL
+ [remark]
+ Specify the codec type of the BSC. It is available only for circuit BSC.
Entry 0 is the highest priority, entry 13 is the lowest."
+ ::= { trunkGroupEntry 31 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.32
+ tgEchoControlDeviceIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Echo Control Device Indicator
+ Remark:Indicate including echo control device in outbound IAM message or not."
+ ::= { trunkGroupEntry 32 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.33
+ tgSatelliteIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ noSatelliteCircuit(0),
+ oneSatelliteCircuit(1),
+ twoSatelliteCircuit(2),
+ transit(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify the bearing value of the Satellite Indicator in the outgoing ISUP IAM message. For Transit, just adopts the same value from incoming ISUP IAM message."
+ ::= { trunkGroupEntry 33 }
+
+
+-- Trunk
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.18
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.34
+ tgCreateEntryTrunk OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { trunkGroupEntry 34 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.35
+ tgTrunkEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Trunk Entries
+ Remark:The total number of configured Trunks in this Trunk Group."
+ ::= { trunkGroupEntry 35 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.19
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.36
+ tgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { trunkGroupEntry 36 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.1.1.37
+ tgEventLog OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkGroupEntry 37 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2
+ trunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkGroup 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1
+ trunkEntry OBJECT-TYPE
+ SYNTAX TrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { trunkIndex, trunkTGIndex }
+ ::= { trunkTable 1 }
+
+
+ TrunkEntry ::=
+ SEQUENCE {
+ trunkTGIndex
+ INTEGER,
+ trunkIndex
+ INTEGER,
+ trunkTitle
+ DisplayString16,
+ trunkCreateTimeStamp
+ TimeStamp,
+ trunkAdministrationState
+ AdminStateChoices,
+ trunkOperabilityStatus
+ OperStateChoices,
+ trunkAvailabilityStatus
+ AvailStateChoices,
+ trunkMgID
+ INTEGER,
+ trunkPortID
+ INTEGER,
+ trunkPortType
+ INTEGER,
+ trunkGroupID
+ INTEGER,
+ trunkSupervisionMethod
+ INTEGER,
+ trunkLinkID
+ INTEGER,
+ trunkUserNetworkInterface
+ INTEGER,
+ trunkCICValueAssignment
+ INTEGER,
+ trunkChannelInUse
+ INTEGER,
+ trunkChannelEntries
+ INTEGER,
+ trunkRowStatus
+ RowStatus
+ }
+
+-- Trunk TG Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.1
+ trunkTGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:TG Index
+ Remark:Trunk Group index number for the Trunk."
+ ::= { trunkEntry 1 }
+
+
+-- Trunk Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.2
+ trunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Trunk index number ranges from 1 to 32."
+ ::= { trunkEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.3
+ trunkTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Trunk name for identification purpose only."
+ DEFVAL { "TK#" }
+ ::= { trunkEntry 3 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.4
+ trunkCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Trunk"
+ ::= { trunkEntry 4 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.5
+ trunkAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed Trunk."
+ ::= { trunkEntry 5 }
+
+
+-- Operability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.6
+ trunkOperabilityStatus OBJECT-TYPE
+ SYNTAX OperStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Oper State
+ Remark:(Read Only) Indicate the current Trunk operation is qualified by Availability Status."
+ ::= { trunkEntry 6 }
+
+
+-- Availability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.7
+ trunkAvailabilityStatus OBJECT-TYPE
+ SYNTAX AvailStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Avail State
+ Remark:(Read Only) Qualify Operation State providing details about the current operational state."
+ ::= { trunkEntry 7 }
+
+
+-- MG ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.8
+ trunkMgID OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MG ID
+ Remark:Specify the Trunk to a Media Gateway. Not applicable to virtual MG."
+ DEFVAL { 0 }
+ ::= { trunkEntry 8 }
+
+
+-- Port ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.9
+ trunkPortID OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Port ID
+ Remark:Specify the Trunk to a physical port of the selected Media Gateway. Not applicable to virtual MG."
+ ::= { trunkEntry 9 }
+
+
+-- Port Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.10
+ trunkPortType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ e1(0),
+ t1(1),
+ analogue(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Port Type
+ Remark:Specify the type of MG physical ports."
+ DEFVAL { enable }
+ ::= { trunkEntry 10 }
+
+
+-- Group ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.11
+ trunkGroupID OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ group0(0),
+ group1(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Group ID
+ Remark:Select the application group for the Trunk.
- Group0 = Master is MSC 0
- Group1 = Master is MSC1"
+ DEFVAL { group0 }
+ ::= { trunkEntry 11 }
+
+
+-- Typical CIC Assignment Plan
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.12
+ trunkSupervisionMethod OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ circuitGroup(0),
+ circuit(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Supervision Method
+ Remark:Specify the type of block request indication delivered in the ISUP trunk initialization process."
+ DEFVAL { enable }
+ ::= { trunkEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.13
+ trunkLinkID OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Link ID
+ Remark:(For ISDN) Specify the corresponding IUA link ID which is configured in the MTP3 setting."
+ ::= { trunkEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.14
+ trunkUserNetworkInterface OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ networkSide(0),
+ userSide(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:User Network Interface
+ Remark:(For ISDN) Select Q.931 switch type for ISDN call processing."
+ ::= { trunkEntry 14 }
+
+
+-- Typical CIC Value Assignment
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.15
+ trunkCICValueAssignment OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CIC Assignment
+ Remark:Specify the start CIC to the Trunk for typical mode.
- E1 = 0, 32, 64 ...
- T1 = 0, 24, 48 ..."
+ ::= { trunkEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.16
+ trunkChannelInUse OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Channel in Use
+ Remark:(Read Only) Display the quantity of occupied channels of this trunk in real-time."
+ ::= { trunkEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.17
+ trunkChannelEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Channel Entries
+ Remark:The total number of configured Channels in this Trunk."
+ ::= { trunkEntry 17 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.2.1.18
+ trunkRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { trunkEntry 18 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3
+ channelTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ChannelEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkGroup 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1
+ channelEntry OBJECT-TYPE
+ SYNTAX ChannelEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:3"
+ INDEX { tsTrunkIndex, tsIndex, tsTrunkTGIndex }
+ ::= { channelTable 1 }
+
+
+ ChannelEntry ::=
+ SEQUENCE {
+ tsTrunkTGIndex
+ INTEGER,
+ tsTrunkIndex
+ INTEGER,
+ tsIndex
+ INTEGER,
+ tsType
+ INTEGER,
+ tsChannelCIC
+ INTEGER,
+ tsChannelStatus
+ INTEGER,
+ tsLocalBlock
+ INTEGER,
+ tsRemoteBlock
+ INTEGER
+ }
+
+-- CIC Trunk TG Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.1
+ tsTrunkTGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:TG Index
+ Remark:Trunk Group index number for this Timeslot."
+ ::= { channelEntry 1 }
+
+
+-- CIC Trunk Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.2
+ tsTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Trunk Index
+ Remark:Trunk index number for this Timeslot."
+ ::= { channelEntry 2 }
+
+
+-- CIC Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.3
+ tsIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Timeslot index number ranges from 1 to 32."
+ ::= { channelEntry 3 }
+
+
+-- CIC Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.4
+ tsType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ incoming(1),
+ outgoing(2),
+ bidirectional(3),
+ leaseLine(4),
+ dChannel(5),
+ xChannel(6)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Type
+ Remark:Specify the type of the channel."
+ DEFVAL { bidirectiona }
+ ::= { channelEntry 4 }
+
+
+-- Channel CIC
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.5
+ tsChannelCIC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CIC
+ Remark:Assign a Circuit Identity Code (CIC) to the channel."
+ ::= { channelEntry 5 }
+
+
+-- Call Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.6
+ tsChannelStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ outOfService(0),
+ idle(1),
+ busy(2),
+ iPALIMUsed(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Status
+ Remark:(Read Only) The current status of the serving channel."
+ ::= { channelEntry 6 }
+
+
+-- Local Block
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.7
+ tsLocalBlock OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ unblocked(0),
+ localBlocked(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Local Block
+ Remark:(Read Only) Display the local block error if the channel is out of service."
+ ::= { channelEntry 7 }
+
+
+-- Remote Block
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.4.3.1.8
+ tsRemoteBlock OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ unblocked(0),
+ remoteBlocked(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Remote Block
+ Remark:(Read Only) Display the remote block error if the channel is out of service."
+ ::= { channelEntry 8 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5
+ locationArea OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1
+ locationAreaTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LocationAreaEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { locationArea 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1
+ locationAreaEntry OBJECT-TYPE
+ SYNTAX LocationAreaEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { laIndex }
+ ::= { locationAreaTable 1 }
+
+
+ LocationAreaEntry ::=
+ SEQUENCE {
+ laIndex
+ INTEGER,
+ laTitle
+ DisplayString16,
+ laCreateTimeStamp
+ TimeStamp,
+ laLAC
+ INTEGER,
+ laTrunkGroup
+ INTEGER,
+ laPageType
+ INTEGER,
+ laNumberOfRepeatPaging
+ INTEGER,
+ laNITZ
+ Opaque,
+ laLocalEmergencyNumber0
+ DisplayString16,
+ laLocalEmergencyNumber1
+ DisplayString16,
+ laLocalEmergencyNumber2
+ DisplayString16,
+ laLocalEmergencyNumber3
+ DisplayString16,
+ laLocalEmergencyNumber4
+ DisplayString16,
+ laLocalEmergencyNumber5
+ DisplayString16,
+ laLocalEmergencyNumber6
+ DisplayString16,
+ laLocalEmergencyNumber7
+ DisplayString16,
+ laCreateEntryCell
+ INTEGER,
+ laCellEntries
+ INTEGER,
+ laRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.1
+ laIndex OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Location Area index number ranges from 1 to 1023."
+ ::= { locationAreaEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.2
+ laTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Location Area name for identification purpose only."
+ DEFVAL { "LA#" }
+ ::= { locationAreaEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.3
+ laCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Location Area."
+ ::= { locationAreaEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.4
+ laLAC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:LAC
+ Remark:Specify the Location Area Code of this location area.
- Range = 1 - 65535"
+ ::= { locationAreaEntry 4 }
+
+
+-- Trunk Group
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.5
+ laTrunkGroup OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Trunk Group
+ Remark:Specify the serving Trunk Group of this location area."
+ ::= { locationAreaEntry 5 }
+
+
+-- Page Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.6
+ laPageType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ byLAC(0),
+ byAllCell(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Paging Mode
+ Remark:Paging messages broadcast in the specified location area or in the whole network."
+ DEFVAL { byLAC }
+ ::= { locationAreaEntry 6 }
+
+
+-- Number Of Repeat Paging
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.7
+ laNumberOfRepeatPaging OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Repeat Paging Times
+ Remark:Specify the subsequent paging times if the initial paging fails."
+ DEFVAL { 2 }
+ ::= { locationAreaEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.8
+ laNITZ OBJECT-TYPE
+ SYNTAX Opaque (SIZE (35))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NITZ
+ Remark:Network Identity and Time Zone"
+ ::= { locationAreaEntry 8 }
+
+
+-- Local Emergency Number0
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.9
+ laLocalEmergencyNumber0 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 0
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 9 }
+
+
+-- Local Emergency Number1
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.10
+ laLocalEmergencyNumber1 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 1
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 10 }
+
+
+-- Local Emergency Number2
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.11
+ laLocalEmergencyNumber2 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 2
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 11 }
+
+
+-- Local Emergency Number3
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.12
+ laLocalEmergencyNumber3 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 3
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 12 }
+
+
+-- Local Emergency Number4
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.13
+ laLocalEmergencyNumber4 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 4
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 13 }
+
+
+-- Local Emergency Number5
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.14
+ laLocalEmergencyNumber5 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 5
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 14 }
+
+
+-- Local Emergency Number6
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.15
+ laLocalEmergencyNumber6 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 6
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 15 }
+
+
+-- Local Emergency Number7
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.16
+ laLocalEmergencyNumber7 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 7
+ Remark:The emergency number, which subscriber dialed in the specific Location Area, will be transformed to this number and route to the emergency center."
+ ::= { locationAreaEntry 16 }
+
+
+-- Cell
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.17
+ laCreateEntryCell OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { locationAreaEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.18
+ laCellEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Cell Entries
+ Remark:The total number of configured Cells in this Location Area."
+ ::= { locationAreaEntry 18 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.1.1.19
+ laRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { locationAreaEntry 19 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2
+ cellTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF CellEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { locationArea 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1
+ cellEntry OBJECT-TYPE
+ SYNTAX CellEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { cellIndex, cellLAIndex }
+ ::= { cellTable 1 }
+
+
+ CellEntry ::=
+ SEQUENCE {
+ cellLAIndex
+ INTEGER,
+ cellIndex
+ INTEGER,
+ cellTitle
+ DisplayString16,
+ cellCreateTimeStamp
+ TimeStamp,
+ cellRoutingZoneID
+ INTEGER,
+ cellRegionalSubscriptionZoneCode
+ INTEGER,
+ cellCellID
+ INTEGER,
+ cellLatitude
+ Opaque,
+ cellLongitude
+ Opaque,
+ cellLocalEmergencyNumber0
+ DisplayString16,
+ cellLocalEmergencyNumber1
+ DisplayString16,
+ cellLocalEmergencyNumber2
+ DisplayString16,
+ cellLocalEmergencyNumber3
+ DisplayString16,
+ cellLocalEmergencyNumber4
+ DisplayString16,
+ cellLocalEmergencyNumber5
+ DisplayString16,
+ cellLocalEmergencyNumber6
+ DisplayString16,
+ cellLocalEmergencyNumber7
+ DisplayString16,
+ cellTgId
+ Integer32,
+ cellRowStatus
+ RowStatus
+ }
+
+-- Cell Location Area Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.1
+ cellLAIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:LA Index
+ Remark:Location Area index number for this Cell."
+ ::= { cellEntry 1 }
+
+
+-- Cell Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.2
+ cellIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..16)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Cell index number ranges from 1 to 16."
+ ::= { cellEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.3
+ cellTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Cell name for identification purpose only."
+ DEFVAL { "CELL#" }
+ ::= { cellEntry 3 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.4
+ cellCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the Cell."
+ ::= { cellEntry 4 }
+
+
+-- Rounting Zone ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.5
+ cellRoutingZoneID OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:RZS ID
+ Remark:Specify the Routing Zone Set to this Cell."
+ DEFVAL { 0 }
+ ::= { cellEntry 5 }
+
+
+-- Regional Subscription Zone Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.6
+ cellRegionalSubscriptionZoneCode OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:RSZC
+ Remark:Assign a Regional Subscription Zone Code (RSZC) to the LAC.
- RSZC = CC + NDC + Zone Code"
+ DEFVAL { 'FF'h }
+ ::= { cellEntry 6 }
+
+
+-- Cell ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.7
+ cellCellID OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Cell ID
+ Remark:Global Cell Identity defined in GSM 03.03.
- Range = 0 - 65535"
+ ::= { cellEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.8
+ cellLatitude OBJECT-TYPE
+ SYNTAX Opaque (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Latitude[u]00.0-03.7[u]input
+ [v]toLatitude-formula-pow(2,23)/90
+ [remark]
+ Specify the latitude of this cell for a location service use.
- Range = -90.00 - 90.00"
+ ::= { cellEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.9
+ cellLongitude OBJECT-TYPE
+ SYNTAX Opaque (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Longitude[u]00.0-03.7[u]input
+ [v]toLongitude-formula-pow(2,24)/360
+ [remark]
+ Specify the longitude of this cell for a location service use.
- Range = -180.00 - 180.00"
+ ::= { cellEntry 9 }
+
+
+-- Cell Local Emergency Number0
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.10
+ cellLocalEmergencyNumber0 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 0
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 10 }
+
+
+-- Cell Local Emergency Number1
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.11
+ cellLocalEmergencyNumber1 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 1
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 11 }
+
+
+-- Cell Local Emergency Number2
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.12
+ cellLocalEmergencyNumber2 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 2
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 12 }
+
+
+-- Cell Local Emergency Number3
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.13
+ cellLocalEmergencyNumber3 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 3
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 13 }
+
+
+-- Cell Local Emergency Number4
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.14
+ cellLocalEmergencyNumber4 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 4
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 14 }
+
+
+-- Cell Local Emergency Number5
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.15
+ cellLocalEmergencyNumber5 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 5
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 15 }
+
+
+-- Cell Local Emergency Number6
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.16
+ cellLocalEmergencyNumber6 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 6
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 16 }
+
+
+-- Cell Local Emergency Number7
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.17
+ cellLocalEmergencyNumber7 OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Emergency Number 7
+ Remark:The emergency number, which subscriber dialed in the specific Cell, will be transformed to this number and route to the emergency center."
+ ::= { cellEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.18
+ cellTgId OBJECT-TYPE
+ SYNTAX Integer32 (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:TG ID"
+ ::= { cellEntry 18 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.5.2.1.19
+ cellRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cellEntry 19 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6
+ mediaGateway OBJECT IDENTIFIER ::= { parameter 6 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1
+ mediaGatewayTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MediaGatewayEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mediaGateway 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1
+ mediaGatewayEntry OBJECT-TYPE
+ SYNTAX MediaGatewayEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { mgIndex }
+ ::= { mediaGatewayTable 1 }
+
+
+ MediaGatewayEntry ::=
+ SEQUENCE {
+ mgIndex
+ INTEGER,
+ mgTitle
+ DisplayString16,
+ mgCreateTimeStamp
+ TimeStamp,
+ mgAdministrationState
+ AdminStateChoices,
+ mgIP
+ IpAddress,
+ mgDomainName
+ DisplayString16,
+ mgSwitchingMode
+ INTEGER,
+ mgEndPoint
+ INTEGER,
+ mgToneGenCapability
+ INTEGER,
+ mgType
+ INTEGER,
+ mgMaxPhysicalPorts
+ INTEGER,
+ mgMaxChannels
+ INTEGER,
+ mgPacketizationPeriod
+ INTEGER,
+ mgPriorityLevel
+ INTEGER,
+ mgCodecType
+ Opaque,
+ mgAuditTimer
+ INTEGER,
+ mgPhysicalPortEntries
+ INTEGER,
+ mgRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.1
+ mgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Media Gateway index number ranges from 1 to 255."
+ ::= { mediaGatewayEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.2
+ mgTitle OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Media Gateway name for identification purpose only."
+ DEFVAL { "MG#" }
+ ::= { mediaGatewayEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.3
+ mgCreateTimeStamp OBJECT-TYPE
+ SYNTAX TimeStamp
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Creation date and time of the MG entry."
+ ::= { mediaGatewayEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.4
+ mgAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed Media Gateway."
+ ::= { mediaGatewayEntry 4 }
+
+
+-- IP
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.5
+ mgIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:IP
+ Remark:IP address of the Media Gateway."
+ ::= { mediaGatewayEntry 5 }
+
+
+-- Domain Name
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.6
+ mgDomainName OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Domain Name
+ Remark:Specify a domain name to the Media Gateway."
+ ::= { mediaGatewayEntry 6 }
+
+
+-- Switching Mode
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.7
+ mgSwitchingMode OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ mgcp(0),
+ eightECP(1),
+ megaco(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Switching Mode
+ Remark:Select the switching mode of the specific Media Gateway.
- 8ECP = Circuit Switch (8KE1 Card)
- MGCP = Soft Switch"
+ DEFVAL { mgcp }
+ ::= { mediaGatewayEntry 7 }
+
+
+-- End Point Description
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.8
+ mgEndPoint OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ structured(1),
+ unStructured(2),
+ unStructuredHex(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Endpoint
+ Remark:Specify the method of MGCP endpoint description."
+ DEFVAL { structured }
+ ::= { mediaGatewayEntry 8 }
+
+
+-- Tone Gen Capability
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.9
+ mgToneGenCapability OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Tone Generation Capacity
+ Remark:Enable if the Media Gateway has tone generation capability."
+ DEFVAL { enable }
+ ::= { mediaGatewayEntry 9 }
+
+
+-- MG Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.10
+ mgType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ audioCodes(1),
+ lgcMG(2),
+ lgcCS(3),
+ ipBSS(4),
+ analogLine(11),
+ vim(19),
+ tandem(20),
+ announcementServer(21),
+ iuupGW(23),
+ interactiveVoiceResponse(31),
+ conferenceBridge(41),
+ packetRelay(51),
+ wiretap(61),
+ atm(71)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Type
+ Remark:Select the type of Media Gateway endpoint."
+ DEFVAL { digitalChannel }
+ ::= { mediaGatewayEntry 10 }
+
+
+-- Max Physical Ports
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.11
+ mgMaxPhysicalPorts OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Ports
+ Remark:The total physical port number of the Media Gateway. Not applicable to virtual MG."
+ ::= { mediaGatewayEntry 11 }
+
+
+-- Max Channels
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.12
+ mgMaxChannels OBJECT-TYPE
+ SYNTAX INTEGER (0..1024)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Channels
+ Remark:The total channel number of the virtual Media Gateway. Applicable to virtual MG only."
+ ::= { mediaGatewayEntry 12 }
+
+
+-- Packetization Period
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.13
+ mgPacketizationPeriod OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ x20ms(20),
+ x40ms(40),
+ x60ms(60),
+ x80ms(80)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Packetization Period
+ Remark:The period over which encoded voice bits are collected for encapsulation in."
+ DEFVAL { x20ms }
+ ::= { mediaGatewayEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.14
+ mgPriorityLevel OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Priority Level
+ Remark:Set the priority level of the MG codec table:
- 0 = Lowest priority level
- 255 = Highest priority level"
+ ::= { mediaGatewayEntry 14 }
+
+
+-- Codec Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.15
+ mgCodecType OBJECT-TYPE
+ SYNTAX Opaque (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Codec 0[u]00.0-00.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 1[u]01.0-01.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 2[u]02.0-02.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 3[u]03.0-03.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 4[u]04.0-04.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 5[u]05.0-05.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 6[u]06.0-06.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 7[u]07.0-07.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 8[u]08.0-08.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 9[u]09.0-09.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 10[u]10.0-10.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 11[u]11.0-11.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 12[u]12.0-12.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 13[u]13.0-13.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 14[u]14.0-14.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 15[u]15.0-15.7[u]select
+ [v]0[opt]aLaw
+ [v]1[opt]uLaw
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [remark]
+ Specify the codec type of the Media Gateway. Entry 0 is the highest priority, entry 13 is the lowest."
+ ::= { mediaGatewayEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.16
+ mgAuditTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Audit Timer
+ Remark:The time interval between sending AUEP message from MGC to MGW to check the trunk status. Unit is second."
+ ::= { mediaGatewayEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.17
+ mgPhysicalPortEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Port Entries
+ Remark:The total number of the configured physical Ports of this Media Gateway."
+ ::= { mediaGatewayEntry 17 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.1.1.18
+ mgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mediaGatewayEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2
+ physicalPortTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PhysicalPortEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mediaGateway 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1
+ physicalPortEntry OBJECT-TYPE
+ SYNTAX PhysicalPortEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { ppIndex, ppMGIndex }
+ ::= { physicalPortTable 1 }
+
+
+ PhysicalPortEntry ::=
+ SEQUENCE {
+ ppMGIndex
+ INTEGER,
+ ppIndex
+ INTEGER,
+ ppUsedFlag
+ INTEGER,
+ ppStatus
+ INTEGER,
+ ppSeizure
+ OCTET STRING
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.1
+ ppMGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:MG Index
+ Remark:Media Gateway index number for this physical Port."
+ ::= { physicalPortEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.2
+ ppIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Port index number ranges from 1 to 32."
+ ::= { physicalPortEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.3
+ ppUsedFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ idle(0),
+ inUse(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Used Flag
+ Remark:(Read Only) This field indicates whether the port is in service."
+ ::= { physicalPortEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.4
+ ppStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notReady(0),
+ ready(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Status
+ Remark:(Read Only) The availability status of the physical port."
+ ::= { physicalPortEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.2.6.2.1.5
+ ppSeizure OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ RelationPoint:2.4.2.1
+ Remark:(Read Only) Hyperlink of the related Trunk Group and Trunk."
+ ::= { physicalPortEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3
+ csta OBJECT IDENTIFIER ::= { msc 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3
+ tgIncomingTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TgIncomingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3.1
+ tgIncomingEntry OBJECT-TYPE
+ SYNTAX TgIncomingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { tgIncomingTgndex, tgIncomingIndex }
+ ::= { tgIncomingTable 1 }
+
+
+ TgIncomingEntry ::=
+ SEQUENCE {
+ tgIncomingTgndex
+ INTEGER,
+ tgIncomingIndex
+ INTEGER,
+ tgIncomingData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3.1.1
+ tgIncomingTgndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgIncomingEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3.1.2
+ tgIncomingIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgIncomingEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.3.1.3
+ tgIncomingData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgIncomingEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4
+ tgOutgoingTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TgOutgoingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4.1
+ tgOutgoingEntry OBJECT-TYPE
+ SYNTAX TgOutgoingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { tgOutgoingTgIndex, tgOutgoingIndex }
+ ::= { tgOutgoingTable 1 }
+
+
+ TgOutgoingEntry ::=
+ SEQUENCE {
+ tgOutgoingTgIndex
+ INTEGER,
+ tgOutgoingIndex
+ INTEGER,
+ tgOutgoingData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4.1.1
+ tgOutgoingTgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgOutgoingEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4.1.2
+ tgOutgoingIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgOutgoingEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.4.1.3
+ tgOutgoingData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tgOutgoingEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.5
+ subsToSubsTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SubsToSubsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.5.1
+ subsToSubsEntry OBJECT-TYPE
+ SYNTAX SubsToSubsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { subsToSubsIndex }
+ ::= { subsToSubsTable 1 }
+
+
+ SubsToSubsEntry ::=
+ SEQUENCE {
+ subsToSubsIndex
+ INTEGER,
+ subsToSubsData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.5.1.1
+ subsToSubsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToSubsEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.5.1.2
+ subsToSubsData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToSubsEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.6
+ subsToTrunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SubsToTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.6.1
+ subsToTrunkEntry OBJECT-TYPE
+ SYNTAX SubsToTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { subsToTrunkIndex }
+ ::= { subsToTrunkTable 1 }
+
+
+ SubsToTrunkEntry ::=
+ SEQUENCE {
+ subsToTrunkIndex
+ INTEGER,
+ subsToTrunkData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.6.1.1
+ subsToTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToTrunkEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.6.1.2
+ subsToTrunkData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToTrunkEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.7
+ trunkToSubsTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkToSubsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.7.1
+ trunkToSubsEntry OBJECT-TYPE
+ SYNTAX TrunkToSubsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { trunkToSubsIndex }
+ ::= { trunkToSubsTable 1 }
+
+
+ TrunkToSubsEntry ::=
+ SEQUENCE {
+ trunkToSubsIndex
+ INTEGER,
+ trunkToSubsData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.7.1.1
+ trunkToSubsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToSubsEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.7.1.2
+ trunkToSubsData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToSubsEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.8
+ trunkToTrunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkToTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.8.1
+ trunkToTrunkEntry OBJECT-TYPE
+ SYNTAX TrunkToTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { trunkToTrunkIndex }
+ ::= { trunkToTrunkTable 1 }
+
+
+ TrunkToTrunkEntry ::=
+ SEQUENCE {
+ trunkToTrunkIndex
+ INTEGER,
+ trunkToTrunkData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.8.1.1
+ trunkToTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToTrunkEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.8.1.2
+ trunkToTrunkData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToTrunkEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.9
+ intraconnectionTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF IntraconnectionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.9.1
+ intraconnectionEntry OBJECT-TYPE
+ SYNTAX IntraconnectionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { intraconnectionIndex }
+ ::= { intraconnectionTable 1 }
+
+
+ IntraconnectionEntry ::=
+ SEQUENCE {
+ intraconnectionIndex
+ INTEGER,
+ intraconnectionData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.9.1.1
+ intraconnectionIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { intraconnectionEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.9.1.2
+ intraconnectionData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { intraconnectionEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.10
+ subsToIpTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SubsToIpEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.10.1
+ subsToIpEntry OBJECT-TYPE
+ SYNTAX SubsToIpEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { subsToIpIndex }
+ ::= { subsToIpTable 1 }
+
+
+ SubsToIpEntry ::=
+ SEQUENCE {
+ subsToIpIndex
+ INTEGER,
+ subsToIpData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.10.1.1
+ subsToIpIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToIpEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.10.1.2
+ subsToIpData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsToIpEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.11
+ trunkToIpTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkToIpEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.11.1
+ trunkToIpEntry OBJECT-TYPE
+ SYNTAX TrunkToIpEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { trunkToIpIndex }
+ ::= { trunkToIpTable 1 }
+
+
+ TrunkToIpEntry ::=
+ SEQUENCE {
+ trunkToIpIndex
+ INTEGER,
+ trunkToIpData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.11.1.1
+ trunkToIpIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToIpEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.11.1.2
+ trunkToIpData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { trunkToIpEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.12
+ mobileOriginatedTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MobileOriginatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.12.1
+ mobileOriginatedEntry OBJECT-TYPE
+ SYNTAX MobileOriginatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { mobileOriginatedIndex }
+ ::= { mobileOriginatedTable 1 }
+
+
+ MobileOriginatedEntry ::=
+ SEQUENCE {
+ mobileOriginatedIndex
+ INTEGER,
+ mobileOriginatedData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.12.1.1
+ mobileOriginatedIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mobileOriginatedEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.12.1.2
+ mobileOriginatedData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mobileOriginatedEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.13
+ mobileTerminatedTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MobileTerminatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.13.1
+ mobileTerminatedEntry OBJECT-TYPE
+ SYNTAX MobileTerminatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { mobileTerminatedIndex }
+ ::= { mobileTerminatedTable 1 }
+
+
+ MobileTerminatedEntry ::=
+ SEQUENCE {
+ mobileTerminatedIndex
+ INTEGER,
+ mobileTermiginatedData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.13.1.1
+ mobileTerminatedIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mobileTerminatedEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.13.1.2
+ mobileTermiginatedData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mobileTerminatedEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.14
+ inTrunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF InTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.14.1
+ inTrunkEntry OBJECT-TYPE
+ SYNTAX InTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { inTrunkIndex }
+ ::= { inTrunkTable 1 }
+
+
+ InTrunkEntry ::=
+ SEQUENCE {
+ inTrunkIndex
+ INTEGER,
+ inTrunkData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.14.1.1
+ inTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { inTrunkEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.14.1.2
+ inTrunkData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { inTrunkEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.15
+ outTrunkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF OutTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.15.1
+ outTrunkEntry OBJECT-TYPE
+ SYNTAX OutTrunkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { outTrunkIndex }
+ ::= { outTrunkTable 1 }
+
+
+ OutTrunkEntry ::=
+ SEQUENCE {
+ outTrunkIndex
+ INTEGER,
+ outTrunkData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.15.1.1
+ outTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { outTrunkEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.15.1.2
+ outTrunkData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { outTrunkEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.16
+ ipTerminatedTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF IpTerminatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.16.1
+ ipTerminatedEntry OBJECT-TYPE
+ SYNTAX IpTerminatedEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { ipTermiginatedIndex }
+ ::= { ipTerminatedTable 1 }
+
+
+ IpTerminatedEntry ::=
+ SEQUENCE {
+ ipTermiginatedIndex
+ INTEGER,
+ ipTermiginatedData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.16.1.1
+ ipTermiginatedIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { ipTerminatedEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.3.16.1.2
+ ipTermiginatedData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { ipTerminatedEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.4
+ cdr OBJECT IDENTIFIER ::= { msc 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.4.1
+ cdrHeadOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.4.2
+ cdrTailOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.1.4.3
+ cdrDataOid OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 3 }
+
+
+
+ END
+
+--
+-- LGC-SS-MSC-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-MTP3-MIB.my b/omc/bin/mib/LGC-SS-MTP3-MIB.my
new file mode 100644
index 0000000..ae2f601
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-MTP3-MIB.my
@@ -0,0 +1,2414 @@
+--
+-- LGC-SS-MTP3-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Friday, April 29, 2011 at 11:05:40
+--
+
+ LGC-SS-MTP3-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, RowStatus, AdminStateChoices
+ FROM LGC-MIB
+ IpAddress, Opaque, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2
+ mtp3 MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { platplatform 2 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.2
+ platplatform OBJECT IDENTIFIER ::= { wxc2 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2
+ parameter OBJECT IDENTIFIER ::= { mtp3 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.1.1
+ tCPPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:TCP Port
+ Remark:Specify a TCP port for the SCCP-Lite protocol."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.1.2
+ systemCommand OBJECT-TYPE
+ SYNTAX INTEGER { reset(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2
+ intNetwork OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.1
+ intOPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPC
+ Remark:Assign a default Point Code to the local MSC. This OPC is applicable only to the international signaling network."
+ ::= { intNetwork 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.2
+ intPointCodeLength OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bit14(0),
+ bit24(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PC Length
+ Remark:Specify the length of Point Code using in the international signaling network. It can be 14 bits or 24 bits."
+ ::= { intNetwork 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.3
+ intPointCodeType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ itu(0),
+ ansi(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PC Type
+ Remark:Specify the protocol stack using in the international signaling network. It can be ITU or ANSI."
+ ::= { intNetwork 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.4
+ intLocalACN OBJECT-TYPE
+ SYNTAX Opaque (SIZE (36))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Location Updating[u]0.0-0.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Cancellation[u]1.0-1.7[u]select
+ [v]3[opt]Version 3
+ [unit]Roaming Number Enquiry[u]2.0-2.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Info Retrieval[u]3.0-3.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Reset Context[u]4.0-4.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Handover Control[u]5.0-5.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Equipment Management[u]6.0-6.7[u]select
+ [v]2[opt]Version 2
+ [unit]Info Retrieval[u]7.0-7.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Inter-VLR Info Retrieval[u]8.0-8.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Subscriber Data Management[u]9.0-9.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Tracing[u]10.0-10.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Functional SS[u]11.0-11.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Unstructured SS[u]12.0-12.7[u]select
+ [v]2[opt]Version 2
+ [unit]Short Message Gateway[u]13.0-13.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MO Short Message Relay[u]14.0-14.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Short Message Alert[u]15.0-15.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Short Message Waiting Data Management[u]16.0-16.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MT Short Message Relay[u]17.0-17.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]IMSI Retrieval[u]18.0-18.7[u]select
+ [v]2[opt]Version 2
+ [unit]MS Purging[u]19.0-19.7[u]select
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Subscriber Info Enquiry[u]20.0-20.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Any Time Info Enquiry[u]21.0-21.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Control Transfer[u]22.0-22.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]SS Invocation Notification[u]23.0-23.7[u]select
+ [v]3[opt]Version 3
+ [unit]Group Call Control[u]25.0-25.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Updating[u]26.0-26.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Info Retrieval[u]27.0-27.7[u]select
+ [v]3[opt]Version 3
+ [unit]Failure Reporting[u]28.0-28.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Notifying[u]29.0-29.7[u]select
+ [v]3[opt]Version 3
+ [unit]Reporting[u]30.0-30.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Completion[u]31.0-31.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Internal SIWFS Allocation[u]24.0-24.7[u]select
+ [v]3[opt]Version 3
+ [unit]Internal Security Triplets[u]32.0-32.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal Subscriber Interrogating[u]33.0-33.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Subscriber Management[u]34.0-34.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Ping AUC[u]35.0-35.7[u]select
+ [v]2[opt]Version 2
+ [remark]
+ Define the default application context version for each MAP operation which is supported by the local MSC in the international signaling network."
+ ::= { intNetwork 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.5
+ intRoutingTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF IntRoutingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { intNetwork 5 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.5.1
+ intRoutingEntry OBJECT-TYPE
+ SYNTAX IntRoutingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { intIndex }
+ ::= { intRoutingTable 1 }
+
+
+ IntRoutingEntry ::=
+ SEQUENCE {
+ intIndex
+ INTEGER,
+ intTitle
+ OCTET STRING,
+ intDPC
+ INTEGER,
+ intOPCMultiple
+ INTEGER,
+ intNormalLinkset
+ INTEGER,
+ intAlternativeLinkset
+ INTEGER,
+ intM3uaRoutingContext
+ INTEGER,
+ intACN
+ Opaque,
+ intRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.5.1.1
+ intIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1023)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Routing entry index number ranges from 0 to 1023."
+ ::= { intRoutingEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.5.1.2
+ intTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Routing destination name for identification purpose only."
+ DEFVAL { "-" }
+ ::= { intRoutingEntry 2 }
+
+
+-- MSRN Range Start
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.5.1.3
+ intDPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:DPC
+ Remark:Decimal Point Code of the routing destination node."
+ ::= { intRoutingEntry 3 }
+
+
+-- MSRN Range End
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.5.1.4
+ intOPCMultiple OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPC
+ Remark:Specify a virtual Point Code to the local MSC. This OPC will be transmitted between the local MSC and the destination node.
From the destination node's perspective, it's the unique Point Code of the local MSC.
The compulsory OPC makes the system more compatible with other networks by means of supporting multiple point codes.
Set 0 to use the default OPC for this routing entry."
+ ::= { intRoutingEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.5.1.5
+ intNormalLinkset OBJECT-TYPE
+ SYNTAX INTEGER (0..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Normal Linkset
+ Remark:Specify the primary linkset to the routing entry for signaling addressing."
+ ::= { intRoutingEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.5.1.6
+ intAlternativeLinkset OBJECT-TYPE
+ SYNTAX INTEGER (0..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Alternative Linkset
+ Remark:Specify a secondary linkset to the routing entry for signaling addressing when the primary linkset is unavailable."
+ ::= { intRoutingEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.5.1.7
+ intM3uaRoutingContext OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:M3UA Routing Context
+ Remark:Define routing context to identify M3UA traffic transmitted between the local MSC and the destination node.
The routing context must be unique for each M3UA application defined."
+ ::= { intRoutingEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.5.1.8
+ intACN OBJECT-TYPE
+ SYNTAX Opaque (SIZE (36))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Location Updating[u]0.0-0.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Cancellation[u]1.0-1.7[u]select
+ [v]3[opt]Version 3
+ [unit]Roaming Number Enquiry[u]2.0-2.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Info Retrieval[u]3.0-3.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Reset Context[u]4.0-4.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Handover Control[u]5.0-5.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Equipment Management[u]6.0-6.7[u]select
+ [v]2[opt]Version 2
+ [unit]Info Retrieval[u]7.0-7.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Inter-VLR Info Retrieval[u]8.0-8.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Subscriber Data Management[u]9.0-9.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Tracing[u]10.0-10.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Functional SS[u]11.0-11.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Unstructured SS[u]12.0-12.7[u]select
+ [v]2[opt]Version 2
+ [unit]Short Message Gateway[u]13.0-13.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MO Short Message Relay[u]14.0-14.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Short Message Alert[u]15.0-15.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Short Message Waiting Data Management[u]16.0-16.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MT Short Message Relay[u]17.0-17.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]IMSI Retrieval[u]18.0-18.7[u]select
+ [v]2[opt]Version 2
+ [unit]MS Purging[u]19.0-19.7[u]select
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Subscriber Info Enquiry[u]20.0-20.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Any Time Info Enquiry[u]21.0-21.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Control Transfer[u]22.0-22.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]SS Invocation Notification[u]23.0-23.7[u]select
+ [v]3[opt]Version 3
+ [unit]Group Call Control[u]25.0-25.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Updating[u]26.0-26.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Info Retrieval[u]27.0-27.7[u]select
+ [v]3[opt]Version 3
+ [unit]Failure Reporting[u]28.0-28.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Notifying[u]29.0-29.7[u]select
+ [v]3[opt]Version 3
+ [unit]Reporting[u]30.0-30.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Completion[u]31.0-31.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Internal SIWFS Allocation[u]24.0-24.7[u]select
+ [v]3[opt]Version 3
+ [unit]Internal Security Triplets[u]32.0-32.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal Subscriber Interrogating[u]33.0-33.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Subscriber Management[u]34.0-34.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Ping AUC[u]35.0-35.7[u]select
+ [v]2[opt]Version 2
+ [remark]
+ Define specific application context version for each MAP operation which is applying between the local MSC and the destination node.
The compulsory application context version makes the system more compatible with other networks by means of flexible MAP version adjustment."
+ ::= { intRoutingEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.2.5.1.9
+ intRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { intRoutingEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3
+ intSNetwork OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.1
+ intsOPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPC
+ Remark:Assign a default Point Code to the local MSC. This OPC is applicable only to the international-spare signaling network."
+ ::= { intSNetwork 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.2
+ intsPointCodeLength OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bit14(0),
+ bit24(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PC Length
+ Remark:Specify the length of Point Code using in the international-spare signaling network. It can be 14 bits or 24 bits."
+ ::= { intSNetwork 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.3
+ intsPointCodeType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ itu(0),
+ ansi(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PC Type
+ Remark:Specify the protocol stack using in the international-spare signaling network. It can be ITU or ANSI."
+ ::= { intSNetwork 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.4
+ intsLocalACN OBJECT-TYPE
+ SYNTAX Opaque (SIZE (36))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Location Updating[u]0.0-0.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Cancellation[u]1.0-1.7[u]select
+ [v]3[opt]Version 3
+ [unit]Roaming Number Enquiry[u]2.0-2.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Info Retrieval[u]3.0-3.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Reset Context[u]4.0-4.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Handover Control[u]5.0-5.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Equipment Management[u]6.0-6.7[u]select
+ [v]2[opt]Version 2
+ [unit]Info Retrieval[u]7.0-7.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Inter-VLR Info Retrieval[u]8.0-8.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Subscriber Data Management[u]9.0-9.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Tracing[u]10.0-10.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Functional SS[u]11.0-11.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Unstructured SS[u]12.0-12.7[u]select
+ [v]2[opt]Version 2
+ [unit]Short Message Gateway[u]13.0-13.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MO Short Message Relay[u]14.0-14.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Short Message Alert[u]15.0-15.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Short Message Waiting Data Management[u]16.0-16.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MT Short Message Relay[u]17.0-17.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]IMSI Retrieval[u]18.0-18.7[u]select
+ [v]2[opt]Version 2
+ [unit]MS Purging[u]19.0-19.7[u]select
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Subscriber Info Enquiry[u]20.0-20.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Any Time Info Enquiry[u]21.0-21.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Control Transfer[u]22.0-22.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]SS Invocation Notification[u]23.0-23.7[u]select
+ [v]3[opt]Version 3
+ [unit]Group Call Control[u]25.0-25.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Updating[u]26.0-26.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Info Retrieval[u]27.0-27.7[u]select
+ [v]3[opt]Version 3
+ [unit]Failure Reporting[u]28.0-28.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Notifying[u]29.0-29.7[u]select
+ [v]3[opt]Version 3
+ [unit]Reporting[u]30.0-30.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Completion[u]31.0-31.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Internal SIWFS Allocation[u]24.0-24.7[u]select
+ [v]3[opt]Version 3
+ [unit]Internal Security Triplets[u]32.0-32.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal Subscriber Interrogating[u]33.0-33.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Subscriber Management[u]34.0-34.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Ping AUC[u]35.0-35.7[u]select
+ [v]2[opt]Version 2
+ [remark]
+ Define the default application context version for each MAP operation which is supported by the local MSC in the international-spare signaling network."
+ ::= { intSNetwork 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.5
+ intSRoutingTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF IntSRoutingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { intSNetwork 5 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.5.1
+ intSRoutingEntry OBJECT-TYPE
+ SYNTAX IntSRoutingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { intsIndex }
+ ::= { intSRoutingTable 1 }
+
+
+ IntSRoutingEntry ::=
+ SEQUENCE {
+ intsIndex
+ INTEGER,
+ intsTitle
+ OCTET STRING,
+ intsDPC
+ INTEGER,
+ intsOPCMultiple
+ INTEGER,
+ intsNormalLinkset
+ INTEGER,
+ intsAlternativeLinkset
+ INTEGER,
+ intsM3uaRoutingContext
+ INTEGER,
+ intsACN
+ Opaque,
+ intsRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.5.1.1
+ intsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1023)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Routing entry index number ranges from 0 to 1023."
+ ::= { intSRoutingEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.5.1.2
+ intsTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Routing destination name for identification purpose only."
+ DEFVAL { "-" }
+ ::= { intSRoutingEntry 2 }
+
+
+-- MSRN Range Start
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.5.1.3
+ intsDPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:DPC
+ Remark:Decimal Point Code of the routing destination node."
+ ::= { intSRoutingEntry 3 }
+
+
+-- MSRN Range End
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.5.1.4
+ intsOPCMultiple OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPC
+ Remark:Specify a virtual Point Code to the local MSC. This OPC will be transmitted between the local MSC and the destination node.
From the destination node's perspective, it's the unique Point Code of the local MSC.
The compulsory OPC makes the system more compatible with other networks by means of supporting multiple point codes.
Set 0 to use the default OPC for this routing entry."
+ ::= { intSRoutingEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.5.1.5
+ intsNormalLinkset OBJECT-TYPE
+ SYNTAX INTEGER (0..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Normal Linkset
+ Remark:Specify the primary linkset to the routing entry for signaling addressing."
+ ::= { intSRoutingEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.5.1.6
+ intsAlternativeLinkset OBJECT-TYPE
+ SYNTAX INTEGER (0..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Alternative Linkset
+ Remark:Specify a secondary linkset to the routing entry for signaling addressing when the primary linkset is unavailable."
+ ::= { intSRoutingEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.5.1.7
+ intsM3uaRoutingContext OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:M3UA Routing Context
+ Remark:Define routing context to identify M3UA traffic transmitted between the local MSC and the destination node.
The routing context must be unique for each M3UA application defined."
+ ::= { intSRoutingEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.5.1.8
+ intsACN OBJECT-TYPE
+ SYNTAX Opaque (SIZE (36))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Location Updating[u]0.0-0.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Cancellation[u]1.0-1.7[u]select
+ [v]3[opt]Version 3
+ [unit]Roaming Number Enquiry[u]2.0-2.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Info Retrieval[u]3.0-3.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Reset Context[u]4.0-4.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Handover Control[u]5.0-5.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Equipment Management[u]6.0-6.7[u]select
+ [v]2[opt]Version 2
+ [unit]Info Retrieval[u]7.0-7.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Inter-VLR Info Retrieval[u]8.0-8.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Subscriber Data Management[u]9.0-9.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Tracing[u]10.0-10.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Functional SS[u]11.0-11.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Unstructured SS[u]12.0-12.7[u]select
+ [v]2[opt]Version 2
+ [unit]Short Message Gateway[u]13.0-13.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MO Short Message Relay[u]14.0-14.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Short Message Alert[u]15.0-15.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Short Message Waiting Data Management[u]16.0-16.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MT Short Message Relay[u]17.0-17.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]IMSI Retrieval[u]18.0-18.7[u]select
+ [v]2[opt]Version 2
+ [unit]MS Purging[u]19.0-19.7[u]select
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Subscriber Info Enquiry[u]20.0-20.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Any Time Info Enquiry[u]21.0-21.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Control Transfer[u]22.0-22.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]SS Invocation Notification[u]23.0-23.7[u]select
+ [v]3[opt]Version 3
+ [unit]Group Call Control[u]25.0-25.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Updating[u]26.0-26.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Info Retrieval[u]27.0-27.7[u]select
+ [v]3[opt]Version 3
+ [unit]Failure Reporting[u]28.0-28.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Notifying[u]29.0-29.7[u]select
+ [v]3[opt]Version 3
+ [unit]Reporting[u]30.0-30.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Completion[u]31.0-31.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Internal SIWFS Allocation[u]24.0-24.7[u]select
+ [v]3[opt]Version 3
+ [unit]Internal Security Triplets[u]32.0-32.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal Subscriber Interrogating[u]33.0-33.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Subscriber Management[u]34.0-34.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Ping AUC[u]35.0-35.7[u]select
+ [v]2[opt]Version 2
+ [remark]
+ Define specific application context version for each MAP operation which is applying between the local MSC and the destination node.
The compulsory application context version makes the system more compatible with other networks by means of flexible MAP version adjustment."
+ ::= { intSRoutingEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.3.5.1.9
+ intsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { intSRoutingEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4
+ natNetwork OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.1
+ natOPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPC
+ Remark:Assign a default Point Code to the local MSC. This OPC is applicable only to the national signaling network."
+ ::= { natNetwork 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.2
+ natPointCodeLength OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bit14(0),
+ bit24(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PC Length
+ Remark:Specify the length of Point Code using in the national signaling network. It can be 14 bits or 24 bits."
+ ::= { natNetwork 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.3
+ natPointCodeType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ itu(0),
+ ansi(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PC Type
+ Remark:Specify the protocol stack using in the national signaling network. It can be ITU or ANSI."
+ ::= { natNetwork 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.4
+ natLocalACN OBJECT-TYPE
+ SYNTAX Opaque (SIZE (36))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Location Updating[u]0.0-0.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Cancellation[u]1.0-1.7[u]select
+ [v]3[opt]Version 3
+ [unit]Roaming Number Enquiry[u]2.0-2.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Info Retrieval[u]3.0-3.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Reset Context[u]4.0-4.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Handover Control[u]5.0-5.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Equipment Management[u]6.0-6.7[u]select
+ [v]2[opt]Version 2
+ [unit]Info Retrieval[u]7.0-7.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Inter-VLR Info Retrieval[u]8.0-8.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Subscriber Data Management[u]9.0-9.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Tracing[u]10.0-10.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Functional SS[u]11.0-11.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Unstructured SS[u]12.0-12.7[u]select
+ [v]2[opt]Version 2
+ [unit]Short Message Gateway[u]13.0-13.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MO Short Message Relay[u]14.0-14.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Short Message Alert[u]15.0-15.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Short Message Waiting Data Management[u]16.0-16.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MT Short Message Relay[u]17.0-17.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]IMSI Retrieval[u]18.0-18.7[u]select
+ [v]2[opt]Version 2
+ [unit]MS Purging[u]19.0-19.7[u]select
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Subscriber Info Enquiry[u]20.0-20.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Any Time Info Enquiry[u]21.0-21.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Control Transfer[u]22.0-22.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]SS Invocation Notification[u]23.0-23.7[u]select
+ [v]3[opt]Version 3
+ [unit]Group Call Control[u]25.0-25.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Updating[u]26.0-26.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Info Retrieval[u]27.0-27.7[u]select
+ [v]3[opt]Version 3
+ [unit]Failure Reporting[u]28.0-28.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Notifying[u]29.0-29.7[u]select
+ [v]3[opt]Version 3
+ [unit]Reporting[u]30.0-30.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Completion[u]31.0-31.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Internal SIWFS Allocation[u]24.0-24.7[u]select
+ [v]3[opt]Version 3
+ [unit]Internal Security Triplets[u]32.0-32.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal Subscriber Interrogating[u]33.0-33.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Subscriber Management[u]34.0-34.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Ping AUC[u]35.0-35.7[u]select
+ [v]2[opt]Version 2
+ [remark]
+ Define the default application context version for each MAP operation which is supported by the local MSC in the national signaling network."
+ ::= { natNetwork 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.5
+ natRoutingTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF NatRoutingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { natNetwork 5 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.5.1
+ natRoutingEntry OBJECT-TYPE
+ SYNTAX NatRoutingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { natIndex }
+ ::= { natRoutingTable 1 }
+
+
+ NatRoutingEntry ::=
+ SEQUENCE {
+ natIndex
+ INTEGER,
+ natTitle
+ OCTET STRING,
+ natDPC
+ INTEGER,
+ natOPCMultiple
+ INTEGER,
+ natNormalLinkset
+ INTEGER,
+ natAlternativeLinkset
+ INTEGER,
+ natM3uaRoutingContext
+ INTEGER,
+ natACN
+ Opaque,
+ natRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.5.1.1
+ natIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1023)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Routing entry index number ranges from 0 to 1023."
+ ::= { natRoutingEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.5.1.2
+ natTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Routing destination name for identification purpose only."
+ DEFVAL { "-" }
+ ::= { natRoutingEntry 2 }
+
+
+-- MSRN Range Start
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.5.1.3
+ natDPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:DPC
+ Remark:Decimal Point Code of the routing destination node."
+ ::= { natRoutingEntry 3 }
+
+
+-- MSRN Range End
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.5.1.4
+ natOPCMultiple OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPC
+ Remark:Specify a virtual Point Code to the local MSC. This OPC will be transmitted between the local MSC and the destination node.
From the destination node's perspective, it's the unique Point Code of the local MSC.
The compulsory OPC makes the system more compatible with other networks by means of supporting multiple point codes.
Set 0 to use the default OPC for this routing entry."
+ ::= { natRoutingEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.5.1.5
+ natNormalLinkset OBJECT-TYPE
+ SYNTAX INTEGER (0..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Normal Linkset
+ Remark:Specify the primary linkset to the routing entry for signaling addressing."
+ ::= { natRoutingEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.5.1.6
+ natAlternativeLinkset OBJECT-TYPE
+ SYNTAX INTEGER (0..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Alternative Linkset
+ Remark:Specify a secondary linkset to the routing entry for signaling addressing when the primary linkset is unavailable."
+ ::= { natRoutingEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.5.1.7
+ natM3uaRoutingContext OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:M3UA Routing Context
+ Remark:Define routing context to identify M3UA traffic transmitted between the local MSC and the destination node.
The routing context must be unique for each M3UA application defined."
+ ::= { natRoutingEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.5.1.8
+ natACN OBJECT-TYPE
+ SYNTAX Opaque (SIZE (36))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Location Updating[u]0.0-0.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Cancellation[u]1.0-1.7[u]select
+ [v]3[opt]Version 3
+ [unit]Roaming Number Enquiry[u]2.0-2.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Info Retrieval[u]3.0-3.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Reset Context[u]4.0-4.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Handover Control[u]5.0-5.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Equipment Management[u]6.0-6.7[u]select
+ [v]2[opt]Version 2
+ [unit]Info Retrieval[u]7.0-7.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Inter-VLR Info Retrieval[u]8.0-8.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Subscriber Data Management[u]9.0-9.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Tracing[u]10.0-10.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Functional SS[u]11.0-11.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Unstructured SS[u]12.0-12.7[u]select
+ [v]2[opt]Version 2
+ [unit]Short Message Gateway[u]13.0-13.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MO Short Message Relay[u]14.0-14.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Short Message Alert[u]15.0-15.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Short Message Waiting Data Management[u]16.0-16.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MT Short Message Relay[u]17.0-17.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]IMSI Retrieval[u]18.0-18.7[u]select
+ [v]2[opt]Version 2
+ [unit]MS Purging[u]19.0-19.7[u]select
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Subscriber Info Enquiry[u]20.0-20.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Any Time Info Enquiry[u]21.0-21.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Control Transfer[u]22.0-22.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]SS Invocation Notification[u]23.0-23.7[u]select
+ [v]3[opt]Version 3
+ [unit]Group Call Control[u]25.0-25.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Updating[u]26.0-26.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Info Retrieval[u]27.0-27.7[u]select
+ [v]3[opt]Version 3
+ [unit]Failure Reporting[u]28.0-28.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Notifying[u]29.0-29.7[u]select
+ [v]3[opt]Version 3
+ [unit]Reporting[u]30.0-30.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Completion[u]31.0-31.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Internal SIWFS Allocation[u]24.0-24.7[u]select
+ [v]3[opt]Version 3
+ [unit]Internal Security Triplets[u]32.0-32.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal Subscriber Interrogating[u]33.0-33.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Subscriber Management[u]34.0-34.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Ping AUC[u]35.0-35.7[u]select
+ [v]2[opt]Version 2
+ [remark]
+ Define specific application context version for each MAP operation which is applying between the local MSC and the destination node.
The compulsory application context version makes the system more compatible with other networks by means of flexible MAP version adjustment."
+ ::= { natRoutingEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.4.5.1.9
+ natRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { natRoutingEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5
+ natSNetwork OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.1
+ natSpareOPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPC
+ Remark:Assign a default Point Code to the local MSC. This OPC is applicable only to the national-spare signaling network."
+ ::= { natSNetwork 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.2
+ natSparePointCodeLength OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bit14(0),
+ bit24(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PC Length
+ Remark:Specify the length of Point Code using in the national-spare signaling network. It can be 14 bits or 24 bits."
+ ::= { natSNetwork 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.3
+ natSparePointCodeType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ itu(0),
+ ansi(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PC Type
+ Remark:Specify the protocol stack using in the national-spare signaling network. It can be ITU or ANSI."
+ ::= { natSNetwork 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.4
+ natSpareLocalACN OBJECT-TYPE
+ SYNTAX Opaque (SIZE (36))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Location Updating[u]0.0-0.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Cancellation[u]1.0-1.7[u]select
+ [v]3[opt]Version 3
+ [unit]Roaming Number Enquiry[u]2.0-2.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Info Retrieval[u]3.0-3.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Reset Context[u]4.0-4.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Handover Control[u]5.0-5.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Equipment Management[u]6.0-6.7[u]select
+ [v]2[opt]Version 2
+ [unit]Info Retrieval[u]7.0-7.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Inter-VLR Info Retrieval[u]8.0-8.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Subscriber Data Management[u]9.0-9.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Tracing[u]10.0-10.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Functional SS[u]11.0-11.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Unstructured SS[u]12.0-12.7[u]select
+ [v]2[opt]Version 2
+ [unit]Short Message Gateway[u]13.0-13.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MO Short Message Relay[u]14.0-14.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Short Message Alert[u]15.0-15.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Short Message Waiting Data Management[u]16.0-16.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MT Short Message Relay[u]17.0-17.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]IMSI Retrieval[u]18.0-18.7[u]select
+ [v]2[opt]Version 2
+ [unit]MS Purging[u]19.0-19.7[u]select
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Subscriber Info Enquiry[u]20.0-20.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Any Time Info Enquiry[u]21.0-21.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Control Transfer[u]22.0-22.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]SS Invocation Notification[u]23.0-23.7[u]select
+ [v]3[opt]Version 3
+ [unit]Group Call Control[u]25.0-25.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Updating[u]26.0-26.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Info Retrieval[u]27.0-27.7[u]select
+ [v]3[opt]Version 3
+ [unit]Failure Reporting[u]28.0-28.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Notifying[u]29.0-29.7[u]select
+ [v]3[opt]Version 3
+ [unit]Reporting[u]30.0-30.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Completion[u]31.0-31.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Internal SIWFS Allocation[u]24.0-24.7[u]select
+ [v]3[opt]Version 3
+ [unit]Internal Security Triplets[u]32.0-32.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal Subscriber Interrogating[u]33.0-33.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Subscriber Management[u]34.0-34.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Ping AUC[u]35.0-35.7[u]select
+ [v]2[opt]Version 2
+ [remark]
+ Define the default application context version for each MAP operation which is supported by the local MSC in the national-spare signaling network."
+ ::= { natSNetwork 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.5
+ natSRoutingTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF NatSRoutingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { natSNetwork 5 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.5.1
+ natSRoutingEntry OBJECT-TYPE
+ SYNTAX NatSRoutingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { natsIndex }
+ ::= { natSRoutingTable 1 }
+
+
+ NatSRoutingEntry ::=
+ SEQUENCE {
+ natsIndex
+ INTEGER,
+ natsTitle
+ OCTET STRING,
+ natsDPC
+ INTEGER,
+ natsOPCMultiple
+ INTEGER,
+ natsNormalLinkset
+ INTEGER,
+ natsAlternativeLinkset
+ INTEGER,
+ natsM3uaRoutingContext
+ INTEGER,
+ natsACN
+ Opaque,
+ natsRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.5.1.1
+ natsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1023)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Routing entry index number ranges from 0 to 1023."
+ ::= { natSRoutingEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.5.1.2
+ natsTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Routing destination name for identification purpose only."
+ DEFVAL { "-" }
+ ::= { natSRoutingEntry 2 }
+
+
+-- MSRN Range Start
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.5.1.3
+ natsDPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:DPC
+ Remark:Decimal Point Code of the routing destination node."
+ ::= { natSRoutingEntry 3 }
+
+
+-- MSRN Range End
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.5.1.4
+ natsOPCMultiple OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPC
+ Remark:Specify a virtual Point Code to the local MSC. This OPC will be transmitted between the local MSC and the destination node.
From the destination node's perspective, it's the unique Point Code of the local MSC.
The compulsory OPC makes the system more compatible with other networks by means of supporting multiple point codes.
Set 0 to use the default OPC for this routing entry."
+ ::= { natSRoutingEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.5.1.5
+ natsNormalLinkset OBJECT-TYPE
+ SYNTAX INTEGER (0..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Normal Linkset
+ Remark:Specify the primary linkset to the routing entry for signaling addressing."
+ ::= { natSRoutingEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.5.1.6
+ natsAlternativeLinkset OBJECT-TYPE
+ SYNTAX INTEGER (0..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Alternative Linkset
+ Remark:Specify a secondary linkset to the routing entry for signaling addressing when the primary linkset is unavailable."
+ ::= { natSRoutingEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.5.1.7
+ natsM3uaRoutingContext OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:M3UA Routing Context
+ Remark:Define routing context to identify M3UA traffic transmitted between the local MSC and the destination node.
The routing context must be unique for each M3UA application defined."
+ ::= { natSRoutingEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.5.1.8
+ natsACN OBJECT-TYPE
+ SYNTAX Opaque (SIZE (36))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Location Updating[u]0.0-0.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Cancellation[u]1.0-1.7[u]select
+ [v]3[opt]Version 3
+ [unit]Roaming Number Enquiry[u]2.0-2.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Location Info Retrieval[u]3.0-3.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Reset Context[u]4.0-4.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Handover Control[u]5.0-5.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Equipment Management[u]6.0-6.7[u]select
+ [v]2[opt]Version 2
+ [unit]Info Retrieval[u]7.0-7.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Inter-VLR Info Retrieval[u]8.0-8.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Subscriber Data Management[u]9.0-9.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Tracing[u]10.0-10.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Functional SS[u]11.0-11.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Network Unstructured SS[u]12.0-12.7[u]select
+ [v]2[opt]Version 2
+ [unit]Short Message Gateway[u]13.0-13.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MO Short Message Relay[u]14.0-14.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Short Message Alert[u]15.0-15.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [unit]Short Message Waiting Data Management[u]16.0-16.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]MT Short Message Relay[u]17.0-17.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]IMSI Retrieval[u]18.0-18.7[u]select
+ [v]2[opt]Version 2
+ [unit]MS Purging[u]19.0-19.7[u]select
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Subscriber Info Enquiry[u]20.0-20.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Any Time Info Enquiry[u]21.0-21.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Control Transfer[u]22.0-22.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]SS Invocation Notification[u]23.0-23.7[u]select
+ [v]3[opt]Version 3
+ [unit]Group Call Control[u]25.0-25.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Updating[u]26.0-26.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Location Info Retrieval[u]27.0-27.7[u]select
+ [v]3[opt]Version 3
+ [unit]Failure Reporting[u]28.0-28.7[u]select
+ [v]3[opt]Version 3
+ [unit]GPRS Notifying[u]29.0-29.7[u]select
+ [v]3[opt]Version 3
+ [unit]Reporting[u]30.0-30.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Call Completion[u]31.0-31.7[u]select
+ [v]1[opt]Version 1
+ [v]2[opt]Version 2
+ [v]3[opt]Version 3
+ [unit]Internal SIWFS Allocation[u]24.0-24.7[u]select
+ [v]3[opt]Version 3
+ [unit]Internal Security Triplets[u]32.0-32.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal Subscriber Interrogating[u]33.0-33.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Subscriber Management[u]34.0-34.7[u]select
+ [v]2[opt]Version 2
+ [unit]Internal HLR Ping AUC[u]35.0-35.7[u]select
+ [v]2[opt]Version 2
+ [remark]
+ Define specific application context version for each MAP operation which is applying between the local MSC and the destination node.
The compulsory application context version makes the system more compatible with other networks by means of flexible MAP version adjustment."
+ ::= { natSRoutingEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.5.5.1.9
+ natsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { natSRoutingEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.6
+ linkSet OBJECT IDENTIFIER ::= { parameter 6 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.6.1
+ linkSetTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LinkSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { linkSet 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.6.1.1
+ linkSetEntry OBJECT-TYPE
+ SYNTAX LinkSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { lsIndex }
+ ::= { linkSetTable 1 }
+
+
+ LinkSetEntry ::=
+ SEQUENCE {
+ lsIndex
+ INTEGER,
+ lsTitle
+ OCTET STRING,
+ lsAdministrationState
+ AdminStateChoices,
+ lsStatus
+ INTEGER,
+ lsNetworkIndicate
+ INTEGER,
+ lsDPC
+ INTEGER,
+ lsLoopbackOption
+ INTEGER,
+ lsOPCMultiple
+ INTEGER,
+ lsRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.6.1.1.1
+ lsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..511)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Linkset index number ranges from 0 to 511."
+ ::= { linkSetEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.6.1.1.2
+ lsTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Linkset destination name for identification purpose only."
+ DEFVAL { "-" }
+ ::= { linkSetEntry 2 }
+
+
+-- Country Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.6.1.1.3
+ lsAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed linkset by lock and unlock commands."
+ ::= { linkSetEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.6.1.1.4
+ lsStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ offline(0),
+ online(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Linkset Status
+ Remark:(Read Only) The current status of the serving linkset."
+ ::= { linkSetEntry 4 }
+
+
+-- National Destination Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.6.1.1.5
+ lsNetworkIndicate OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ international(0),
+ internationalSpare(1),
+ national(2),
+ nationalSpare(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NI
+ Remark:Identify the Network Indicator of this linkset."
+ ::= { linkSetEntry 5 }
+
+
+-- International Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.6.1.1.6
+ lsDPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:DPC
+ Remark:Decimal Point Code of the linkset destination node."
+ ::= { linkSetEntry 6 }
+
+
+-- National Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.6.1.1.7
+ lsLoopbackOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Loopback Flag
+ Remark:Enable to loop all data on this linkset from transmit side back to receive side.
Enable it on the linksets connected between two MSS platforms."
+ ::= { linkSetEntry 7 }
+
+
+-- HPLMN CC0
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.6.1.1.8
+ lsOPCMultiple OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPC
+ Remark:Specify a virtual Point Code to the local MSC. This OPC will be transmitted between the local MSC and the destination node.
From the destination node's perspective, it's the unique Point Code of the local MSC.
The compulsory OPC makes the system more compatible with other networks by means of supporting multiple point codes.
Set 0 to use the default OPC of the specific signaling network."
+ ::= { linkSetEntry 8 }
+
+
+-- HPLMN CC1
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.6.1.1.9
+ lsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { linkSetEntry 9 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7
+ link OBJECT IDENTIFIER ::= { parameter 7 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1
+ linkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LinkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { link 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1
+ linkEntry OBJECT-TYPE
+ SYNTAX LinkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { lkIndex }
+ ::= { linkTable 1 }
+
+
+ LinkEntry ::=
+ SEQUENCE {
+ lkIndex
+ INTEGER,
+ lkTitle
+ OCTET STRING,
+ lkAdministrationState
+ AdminStateChoices,
+ lkLinkStatus
+ INTEGER,
+ lkType
+ INTEGER,
+ lkLinkSetID
+ INTEGER,
+ lkSLC
+ INTEGER,
+ lkHostIP
+ IpAddress,
+ lkAlternativeHostIP
+ IpAddress,
+ lkSgID
+ INTEGER,
+ lkM2uaInterfaceID
+ INTEGER,
+ lkMTP3LiteApplicationMode
+ INTEGER,
+ lkMTP3LiteRemoteIP
+ IpAddress,
+ lkMTP3LiteInactivityTimeout
+ INTEGER,
+ lkMTP3LiteAllowedTimeoutTimes
+ INTEGER,
+ lkRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.1
+ lkIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1023)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Link index number ranges from 0 to 1023."
+ ::= { linkEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.2
+ lkTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Link destination name for identification purpose only."
+ DEFVAL { "-" }
+ ::= { linkEntry 2 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.3
+ lkAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed link by lock and unlock commands."
+ ::= { linkEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.4
+ lkLinkStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ offline(0),
+ online(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Link Status
+ Remark:(Read Only) The current status of the serving link."
+ ::= { linkEntry 4 }
+
+
+-- Operability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.5
+ lkType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ circuit-8ecp(0),
+ m2ua(1),
+ mtp3-lite(2),
+ iua(3),
+ m3ua(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Signaling Type
+ Remark:Specify the signaling type of this link.
- ECP = 8KE1 Control Protocol defined for circuit switch applications.
- M2UA = Signaling transport over MTP2 User Adaptation Layer.
- M3UA = Signaling transport over MTP3 User Adaptation Layer.
- IUA = Signaling transport over ISDN User Adaptation Layer.
- MTP3-Lite = Protocol definded for IPA BSS or AMG connections."
+ DEFVAL { m2ua }
+ ::= { linkEntry 5 }
+
+
+-- Availability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.6
+ lkLinkSetID OBJECT-TYPE
+ SYNTAX INTEGER (0..511)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Linkset ID
+ Remark:Specify the index number of the associated linkset to this link.
- Range = 0 - 511."
+ ::= { linkEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.7
+ lkSLC OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SLC
+ Remark:Signaling Link Code ranges from 0 to 15. The SLC must be unique for each link within the same linkset."
+ ::= { linkEntry 7 }
+
+
+-- DPC
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.8
+ lkHostIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Primary Host IP
+ Remark:Specify the primary management server of this link. Enter the IP address of MSC-0 or MSC-1."
+ ::= { linkEntry 8 }
+
+
+-- Protocol Variant
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.9
+ lkAlternativeHostIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Alternative Host IP
+ Remark:Specify a secondary mangement server of this link just in case the primary server is unavailable. Enter the IP address of MSC-1 or MSC-0."
+ ::= { linkEntry 9 }
+
+
+-- Network Indication
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.10
+ lkSgID OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SG ID
+ Remark:Specify the index number of the relevant signaling gateway to this link.
- Range = 0 - 255."
+ ::= { linkEntry 10 }
+
+
+-- Protocol Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.11
+ lkM2uaInterfaceID OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:M2UA IID
+ Remark:Specify the M2UA Interface Identifier (IID) to this link. The IID must be unique for each link connected to the same signaling gateway."
+ ::= { linkEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.12
+ lkMTP3LiteApplicationMode OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ server(0),
+ client(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MTP3-Lite Application Mode
+ Remark:Specify the application mode of the local MSC when connecting to the IPA BSS or AMG."
+ ::= { linkEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.13
+ lkMTP3LiteRemoteIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MTP3-Lite Remote IP
+ Remark:IP address of the connected IPA BSS or AMG."
+ ::= { linkEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.14
+ lkMTP3LiteInactivityTimeout OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MTP3-Lite Inactivity Timeout
+ Remark:Specify the allowable interval of time without receiving a heartbeat from IPA BSS or AMG. Unit is second."
+ ::= { linkEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.15
+ lkMTP3LiteAllowedTimeoutTimes OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MTP3-Lite Allowed Timeout Times
+ Remark:Define the maximum number of allowed inactivity timeout."
+ ::= { linkEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.7.1.1.16
+ lkRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { linkEntry 16 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.8
+ sG OBJECT IDENTIFIER ::= { parameter 8 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.8.1
+ signalingGatewayTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SignalingGatewayEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sG 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.8.1.1
+ signalingGatewayEntry OBJECT-TYPE
+ SYNTAX SignalingGatewayEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { sgIndex }
+ ::= { signalingGatewayTable 1 }
+
+
+ SignalingGatewayEntry ::=
+ SEQUENCE {
+ sgIndex
+ INTEGER,
+ sgAdministrationState
+ AdminStateChoices,
+ sgApplicationMode
+ INTEGER,
+ sgAckOption
+ INTEGER,
+ sgSignalingType
+ INTEGER,
+ sgRemoteIP
+ IpAddress,
+ sgRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.8.1.1.1
+ sgIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Signaling gateway index number ranges from 0 to 255."
+ ::= { signalingGatewayEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.8.1.1.2
+ sgAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed SG entry by lock and unlock commands."
+ ::= { signalingGatewayEntry 2 }
+
+
+-- IP
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.8.1.1.3
+ sgApplicationMode OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ client(0),
+ server(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Application Mode
+ Remark:Specify the application mode of the connected signaling gateway."
+ ::= { signalingGatewayEntry 3 }
+
+
+-- Domain Name
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.8.1.1.4
+ sgAckOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ allow(0),
+ forbid(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:ACK Option
+ Remark:Enable or disable ACK message delivery on this SG entry."
+ ::= { signalingGatewayEntry 4 }
+
+
+-- Switching Mode
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.8.1.1.5
+ sgSignalingType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ m2ua(0),
+ iua(1),
+ m3ua(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Signaling Type
+ Remark:Specify the signaling type of this signaling gateway.
- M2UA = Signaling transport over MTP2 User Adaptation Layer.
- M3UA = Signaling transport over MTP3 User Adaptation Layer.
- IUA = Signaling transport over ISDN User Adaptation Layer."
+ ::= { signalingGatewayEntry 5 }
+
+
+-- End Point Description
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.8.1.1.6
+ sgRemoteIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Remote IP
+ Remark:IP address of the signaling gateway destination."
+ ::= { signalingGatewayEntry 6 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.2.2.2.8.1.1.7
+ sgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { signalingGatewayEntry 7 }
+
+
+
+ END
+
+--
+-- LGC-SS-MTP3-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-OPPS-MIB.my b/omc/bin/mib/LGC-SS-OPPS-MIB.my
new file mode 100644
index 0000000..50b14b2
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-OPPS-MIB.my
@@ -0,0 +1,538 @@
+--
+-- LGC-SS-OPPS-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Wednesday, September 15, 2010 at 17:02:41
+--
+
+ LGC-SS-OPPS-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString16, RowStatus, DisplayString
+ FROM LGC-MIB
+ Opaque, Integer32, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12
+ opps MODULE-IDENTITY
+ LAST-UPDATED "200810201438Z" -- October 20, 2008 at 14:38 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ ::= { application 12 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { opps 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2
+ parameter OBJECT IDENTIFIER ::= { opps 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.1
+ sysControl OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.1.1
+ license OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:License
+ Remark:(Read Only) The maximum subscriber capacity of OPPS determined by License Control."
+ DEFVAL { "" }
+ ::= { sysControl 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.1.2
+ oPRStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:OPR Status
+ Remark:(Read Only) The administration state of OPR service which determined by License Control."
+ ::= { sysControl 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.1.3
+ iMDXStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:IMDX Status
+ Remark:(Read Only) The administration state of IMDX service which determined by License Control."
+ ::= { sysControl 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.1.4
+ cDROption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CDR Flag
+ Remark:Enable or disable OPR CDR generation."
+ ::= { sysControl 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.1.5
+ replaceOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Replace Option
+ Remark:Enable or disable overwrite the existing OPPS subscriber data when create an OPPS subscriber with the same MSISDN."
+ ::= { sysControl 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.1.6
+ command OBJECT-TYPE
+ SYNTAX INTEGER { saveUserData(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sysControl 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.1.7
+ importSubs OBJECT-TYPE
+ SYNTAX Opaque (SIZE (7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes
+ OPAQUE DECODE RULE:
+ [unit]Progress Report[u]00.0-00.7[u]select
+ [v]0[opt]Idle
+ [v]1[opt]Requesting
+ [v]2[opt]Processing
+ [v]3[opt]Succeeded
+ [v]4[opt]Failed
+ [unit]Total IMEIs[u]01.0-03.7[u]input
+ [v]toDec-high-0
+ [unit]Imported IMEIs[u]04.0-06.7[u]input
+ [v]toDec-high-0"
+ ::= { sysControl 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.2
+ oPR OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.2.1
+ cosID OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:COS ID
+ Remark:Specify index of a Class of Service (COS) to the OPR applications for charging purpose."
+ ::= { oPR 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.2.2
+ autoRegisterOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Auto-Registration Option
+ Remark:Enable or disable auto-registration function to the OPR subscribers from the PLMN without roaming agreement."
+ ::= { oPR 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.2.3
+ autoCleanupThreshold OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Auto-Cleanup Threshold
+ Remark:The OPPS will send a warning alarm and clean up database by deleting the trial accounts when the OPR license utilization level reaches this threshold.
- Range = 0.50 - 0.99"
+ ::= { oPR 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.2.4
+ welcomeSMS OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..120))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Welcome SMS
+ Remark:Customize the text format in a welcome short message. It is sent to the user when he successfully registered to the OPR service and informs him his local phone number and PIN."
+ DEFVAL { "" }
+ ::= { oPR 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.2.5
+ pLMNListOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ allow(0),
+ bar(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PLMN List Option
+ Remark:Allow or reject the mobile subscribers from the specific PLMNs to register to the local network.
- Allow = The following PLMN list is a white-list.
- Bar = The following PLMN list is a black-list."
+ ::= { oPR 5 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.2.20
+ pLMNListTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PLMNListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:This table is controled by plmnListOption.The MccMnc is not allowed to register OPR service When plmnListOption is allow and MccMnc is not exist in the table;he MccMnc is not allowed to register OPR service When plmnListOption is bar and MccMnc is exist in the table;The MccMnc is allowed to register OPR service When plmnListOption is allow and MccMnc is exist in the table;The MccMnc is allowed to register OPR service When plmnListOption is bar and MccMnc is not exist in the table;"
+ ::= { oPR 20 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.2.20.1
+ pLMNListEntry OBJECT-TYPE
+ SYNTAX PLMNListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { plIndex }
+ ::= { pLMNListTable 1 }
+
+
+ PLMNListEntry ::=
+ SEQUENCE {
+ plIndex
+ INTEGER,
+ plTitle
+ OCTET STRING,
+ plMCCAndMNC
+ OCTET STRING,
+ plRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.2.20.1.1
+ plIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:PLMN index number ranges from 1 to 32."
+ ::= { pLMNListEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.2.20.1.2
+ plTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..15))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:PLMN name for identification purpose only."
+ ::= { pLMNListEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.2.20.1.3
+ plMCCAndMNC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (5))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MCC & MNC
+ Remark:Mobile Country Code and Mobile Network Code of this PLMN."
+ ::= { pLMNListEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.2.20.1.4
+ plRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { pLMNListEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.3
+ iMDX OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.3.1
+ exclusiveLevel OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ normal(0),
+ exclusiveHalf(1),
+ exclusiveFull(2),
+ shutdown(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Exclusive Level
+ Remark:Exclusive access provides solutions to restrict the IMDX registration from a predefined range of users:
- Normal = Full IMDX functions.
- Exclusive Half = Prohibit the public (roaming) users from registration.
- Exclusive Full = Prohibit both public (roaming) and hybrid users from registration.
- Shutdown = Shutdown IMDX. Forbid all users from registration."
+ ::= { iMDX 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.3.2
+ exclusiveRejectionCause OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ c11(0),
+ c12(1),
+ c13(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Exclusive Rejection Cause
+ Remark:In the exclusive access mode, the network sends a Location Area Updating Reject message to MS to indicate the cause of rejection:
- C11 = PLMN not allowed
- C12 = LA not allowed
- C13 = Roaming not allowed in this LA"
+ ::= { iMDX 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.3.20
+ privateDialingPrefixTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PrivateDialingPrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:MT is a private user if any prefix of MT MSISDN is exist in this table."
+ ::= { iMDX 20 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.3.20.1
+ privateDialingPrefixEntry OBJECT-TYPE
+ SYNTAX PrivateDialingPrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { pdpIndex }
+ ::= { privateDialingPrefixTable 1 }
+
+
+ PrivateDialingPrefixEntry ::=
+ SEQUENCE {
+ pdpIndex
+ INTEGER,
+ pdpTitle
+ OCTET STRING,
+ pdpAttribution
+ OCTET STRING,
+ pdpPrivateDialingPrefix
+ OCTET STRING,
+ pdpRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.3.20.1.1
+ pdpIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Private dialing prefix index number ranges from 1 to 16."
+ ::= { privateDialingPrefixEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.3.20.1.2
+ pdpTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..15))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Private dialing prefix name for identification purpose only."
+ ::= { privateDialingPrefixEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.3.20.1.3
+ pdpAttribution OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..2))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Attribution
+ Remark:Specify number plan of the the incoming private calls.
- 80 = Unknown
- 81 = National number
- 91 = International number"
+ ::= { privateDialingPrefixEntry 3 }
+
+
+-- Call Number Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.3.20.1.4
+ pdpPrivateDialingPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Prefix
+ Remark:Specify dialing prefix of the incoming private call. Originating call with this prefix will be treated as private call."
+ ::= { privateDialingPrefixEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.2.3.20.1.5
+ pdpRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { privateDialingPrefixEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.3
+ csta OBJECT IDENTIFIER ::= { opps 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.4
+ cdr OBJECT IDENTIFIER ::= { opps 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.4.1
+ cdrHeadOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.4.2
+ cdrTailOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.4.3
+ cdrDataOid OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.5
+ userDataOperation OBJECT IDENTIFIER ::= { opps 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.5.1
+ index OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { userDataOperation 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.12.5.2
+ operationUserData OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { userDataOperation 2 }
+
+
+
+ END
+
+--
+-- LGC-SS-OPPS-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-PALIM-MIB.my b/omc/bin/mib/LGC-SS-PALIM-MIB.my
new file mode 100644
index 0000000..9941d65
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-PALIM-MIB.my
@@ -0,0 +1,4985 @@
+--
+-- LGC-SS-PALIM-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Friday, June 21, 2019 at 09:44:52
+--
+
+ LGC-SS-PALIM-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString16, RowStatus, DisplayString8, DisplayString,
+ AdminStateChoices, OperStateChoices
+ FROM LGC-MIB
+ IpAddress, Opaque, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14
+ palim MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 14 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2
+ parameter OBJECT IDENTIFIER ::= { palim 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1.5
+ idlePeriodToPurge OBJECT-TYPE
+ SYNTAX INTEGER (0..1440)
+ UNITS "hours"
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:How long to purge the inactive user."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1.10
+ maxLicense OBJECT-TYPE
+ SYNTAX INTEGER (0..200000)
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Max number of user in VBSC."
+ ::= { system 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1.11
+ pagingOptimization OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:If enabled, VBSC will page all pods of the cluster user last logged in."
+ ::= { system 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1.12
+ lUHandling OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Switch of LU handling function."
+ ::= { system 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1.13
+ firstPageTimer OBJECT-TYPE
+ SYNTAX INTEGER (1..30)
+ UNITS "seconds"
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Paging cluster timer, it is for the first page."
+ ::= { system 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1.14
+ secondPageTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..30)
+ UNITS "seconds"
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Paging all timer, it is for the second page."
+ ::= { system 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1.15
+ timeIntervalBetweenPingpongHandovers OBJECT-TYPE
+ SYNTAX INTEGER (0..60)
+ UNITS "seconds"
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Time Interval between Pingpong Handovers."
+ ::= { system 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1.16
+ inactivityTestInterval OBJECT-TYPE
+ SYNTAX INTEGER (0..3600)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Inactivity test interval of altoPOD. Name:altoGateway MF Heart Beat Interval"
+ ::= { system 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1.17
+ lIForAllCalls OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:If enabled, VBSC will do call intercept for all calls."
+ ::= { system 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1.18
+ switchingMechanism OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ null(0),
+ user2UserInSetup(1),
+ colp(2),
+ callingSubAddressSetup(3),
+ user2UserInConnect(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Tagging method for LCP in GCS."
+ ::= { system 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1.19
+ resetSrrFlagForMoSms OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Reset SRR Flag for MO SMS
+ Remark:Reset Status Report Request Flag for MO SMS."
+ ::= { system 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1.23
+ multiplexIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { system 23 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1.24
+ mocn OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Switch of MO-CN function."
+ ::= { system 24 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.1.25
+ defaultMocnMscId OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:default MO-CN MSC id."
+ ::= { system 25 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4
+ tGToMSC OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1
+ tGToMSCTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TGToMSCEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:TG to MSC"
+ ::= { tGToMSC 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1
+ tGToMSCEntry OBJECT-TYPE
+ SYNTAX TGToMSCEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:TG to MSC"
+ INDEX { tgIndex }
+ ::= { tGToMSCTable 1 }
+
+
+ TGToMSCEntry ::=
+ SEQUENCE {
+ tgIndex
+ INTEGER,
+ tgTitle
+ OCTET STRING,
+ tgAdministrationState
+ AdminStateChoices,
+ tgOperabilityStatus
+ OperStateChoices,
+ tgAvailabilityStatus
+ INTEGER,
+ tgOPC
+ INTEGER,
+ tgDPC
+ INTEGER,
+ tgNetworkIndicator
+ INTEGER,
+ tgProtocolType
+ INTEGER,
+ tgCircuitSelectionMode
+ INTEGER,
+ tgTrunkGroupType
+ INTEGER,
+ tgNetworkName
+ OCTET STRING,
+ tgMOCNMcc
+ OCTET STRING,
+ tgMOCNMnc
+ OCTET STRING,
+ tgMOCNLac
+ INTEGER,
+ tgCreateEntryTrunkToMSC
+ INTEGER,
+ tgTrunkToMSCEntries
+ INTEGER,
+ tgRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.1
+ tgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 8."
+ ::= { tGToMSCEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.2
+ tgTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Title of the selected Trunk Group (max 64 characters)."
+ ::= { tGToMSCEntry 2 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.3
+ tgAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Control the operation of the managed Trunk Group."
+ ::= { tGToMSCEntry 3 }
+
+
+-- Operability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.4
+ tgOperabilityStatus OBJECT-TYPE
+ SYNTAX OperStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark: (Read Only) Indicate whether the externalities (such as MSC configuration, MG configuration, physical connection) are qualified."
+ ::= { tGToMSCEntry 4 }
+
+
+-- Availability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.5
+ tgAvailabilityStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ offLine(0),
+ onLine(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:(Read Only) Indicate whether the internalities (such as Trunk and TG configuration) are qualified."
+ ::= { tGToMSCEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.6
+ tgOPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:The Originating Point Code of the current TG."
+ ::= { tGToMSCEntry 6 }
+
+
+-- DPC
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.7
+ tgDPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:The Destination Point Code of the current TG."
+ ::= { tGToMSCEntry 7 }
+
+
+-- Network Indication
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.8
+ tgNetworkIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ int(0),
+ intSpare(1),
+ nat(2),
+ natSpare(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify the Trunk Group to a network."
+ DEFVAL { int }
+ ::= { tGToMSCEntry 8 }
+
+
+-- Protocol Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.9
+ tgProtocolType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ aif(0),
+ aoip(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Select the protocol type for this Trunk Group. "
+ ::= { tGToMSCEntry 9 }
+
+
+-- Circuit Selection Mode
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.10
+ tgCircuitSelectionMode OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ clockwise(0),
+ antiClockwise(1),
+ odd(2),
+ even(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Circuit selection mode of the traffic channel connections."
+ DEFVAL { clockwise }
+ ::= { tGToMSCEntry 10 }
+
+
+-- Trunk Group Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.11
+ tgTrunkGroupType OBJECT-TYPE
+ SYNTAX INTEGER { out(0) }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Application type of this Trunk Group."
+ DEFVAL { normal }
+ ::= { tGToMSCEntry 11 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.15
+ tgNetworkName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Network Name."
+ ::= { tGToMSCEntry 15 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.16
+ tgMOCNMcc OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MOCN MCC
+ Remark:used for MOCN only."
+ ::= { tGToMSCEntry 16 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.17
+ tgMOCNMnc OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (2..3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MOCN MNC
+ Remark:used for MOCN only."
+ ::= { tGToMSCEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.18
+ tgMOCNLac OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MOCN LAC
+ Remark:used for MOCN only."
+ ::= { tGToMSCEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.28
+ tgCreateEntryTrunkToMSC OBJECT-TYPE
+ SYNTAX INTEGER (1..128)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Create Trunk Entry"
+ ::= { tGToMSCEntry 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.29
+ tgTrunkToMSCEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..128)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Trunk Entries
+ Remark:The total number of configured Trunks in this Trunk Group."
+ ::= { tGToMSCEntry 29 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.1.1.30
+ tgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { tGToMSCEntry 30 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2
+ trunkToMSCTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkToMSCEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Trunk to MSC"
+ ::= { tGToMSC 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1
+ trunkToMSCEntry OBJECT-TYPE
+ SYNTAX TrunkToMSCEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2 Name:Trunk to MSC"
+ INDEX { trunkIndex, trunkTGIndex }
+ ::= { trunkToMSCTable 1 }
+
+
+ TrunkToMSCEntry ::=
+ SEQUENCE {
+ trunkTGIndex
+ INTEGER,
+ trunkIndex
+ INTEGER,
+ trunkTitle
+ OCTET STRING,
+ trunkAdministrationState
+ AdminStateChoices,
+ trunkOperabilityStatus
+ OperStateChoices,
+ trunkAvailabilityStatus
+ INTEGER,
+ trunkMgID
+ INTEGER,
+ trunkPortID
+ INTEGER,
+ trunkPortType
+ INTEGER,
+ trunkGroupID
+ INTEGER,
+ trunkCICValueAssignment
+ INTEGER,
+ trunkChannelInUse
+ INTEGER,
+ trunkChannelToMSCEntries
+ INTEGER,
+ trunkRowStatus
+ RowStatus
+ }
+
+-- Trunk TG Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1.1
+ trunkTGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..8)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Trunk Group Index for the Trunk."
+ ::= { trunkToMSCEntry 1 }
+
+
+-- Trunk Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1.2
+ trunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..128)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 32."
+ ::= { trunkToMSCEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1.3
+ trunkTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Title of the selected Trunk (max 64 characters)."
+ ::= { trunkToMSCEntry 3 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1.4
+ trunkAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Control the operation of the managed Trunk."
+ ::= { trunkToMSCEntry 4 }
+
+
+-- Operability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1.5
+ trunkOperabilityStatus OBJECT-TYPE
+ SYNTAX OperStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:(Read Only) Indicate whether the externalities (such as MSC configuration, MG configuration, physical connection) are qualified."
+ ::= { trunkToMSCEntry 5 }
+
+
+-- Availability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1.6
+ trunkAvailabilityStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ offLine(0),
+ onLine(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:(Read Only) Indicate whether the internalities (such as Trunk and TG configuration) are qualified."
+ ::= { trunkToMSCEntry 6 }
+
+
+-- MG ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1.7
+ trunkMgID OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MG ID
+ Remark:Specify the Trunk to a Media Gateway.
Not applicable to virtual MG."
+ DEFVAL { 0 }
+ ::= { trunkToMSCEntry 7 }
+
+
+-- Port ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1.8
+ trunkPortID OBJECT-TYPE
+ SYNTAX INTEGER (0..128)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify the Trunk to a physical port of the selected Media
Gateway. Not applicable to virtual MG."
+ ::= { trunkToMSCEntry 8 }
+
+
+-- Port Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1.9
+ trunkPortType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ e1(0),
+ t1(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify the type of MG physical ports."
+ DEFVAL { enable }
+ ::= { trunkToMSCEntry 9 }
+
+
+-- Group ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1.10
+ trunkGroupID OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ group0(0),
+ group1(1)
+ }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Select the application group of the Trunk
for redundancy backup."
+ DEFVAL { group0 }
+ ::= { trunkToMSCEntry 10 }
+
+
+-- Typical CIC Value Assignment
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1.11
+ trunkCICValueAssignment OBJECT-TYPE
+ SYNTAX INTEGER (0..4096)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify the start CIC to the Trunk for typical mode."
+ ::= { trunkToMSCEntry 11 }
+
+
+-- Port ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1.12
+ trunkChannelInUse OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Channel number in use."
+ ::= { trunkToMSCEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1.17
+ trunkChannelToMSCEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Channel Entries"
+ ::= { trunkToMSCEntry 17 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.2.1.18
+ trunkRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { trunkToMSCEntry 18 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.3
+ channelToMSCTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ChannelToMSCEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Channel to MSC"
+ ::= { tGToMSC 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.3.1
+ channelToMSCEntry OBJECT-TYPE
+ SYNTAX ChannelToMSCEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:3 Name:Channel to MSC"
+ INDEX { tsTrunkIndex, tsIndex, tsTrunkTGIndex }
+ ::= { channelToMSCTable 1 }
+
+
+ ChannelToMSCEntry ::=
+ SEQUENCE {
+ tsTrunkTGIndex
+ INTEGER,
+ tsTrunkIndex
+ INTEGER,
+ tsIndex
+ INTEGER,
+ tsChannelCIC
+ INTEGER,
+ tsChannelStatus
+ INTEGER,
+ tsBlock
+ INTEGER
+ }
+
+-- CIC Trunk TG Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.3.1.1
+ tsTrunkTGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..8)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:TG Index
+ Remark:Trunk Group Index for the Time Slot."
+ ::= { channelToMSCEntry 1 }
+
+
+-- CIC Trunk Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.3.1.2
+ tsTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..128)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Trunk Index for the Time Slot."
+ ::= { channelToMSCEntry 2 }
+
+
+-- CIC Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.3.1.3
+ tsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 32."
+ ::= { channelToMSCEntry 3 }
+
+
+-- Channel CIC
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.3.1.4
+ tsChannelCIC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Assign a Circuit Identity Code to the channel."
+ ::= { channelToMSCEntry 4 }
+
+
+-- Call Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.3.1.5
+ tsChannelStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ outOfService(0),
+ idle(1),
+ busy(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:The status of the channel."
+ ::= { channelToMSCEntry 5 }
+
+
+-- Local Block
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.4.3.1.6
+ tsBlock OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ unblocked(0),
+ localBlocked(1),
+ remoteBlocked(2)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Local block."
+ ::= { channelToMSCEntry 6 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5
+ mGToMSC OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1
+ mGToMSCTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MGToMSCEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:MG to MSC"
+ ::= { mGToMSC 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1
+ mGToMSCEntry OBJECT-TYPE
+ SYNTAX MGToMSCEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:MG to MSC"
+ INDEX { mgIndex }
+ ::= { mGToMSCTable 1 }
+
+
+ MGToMSCEntry ::=
+ SEQUENCE {
+ mgIndex
+ INTEGER,
+ mgTitle
+ OCTET STRING,
+ mgAdministrationState
+ AdminStateChoices,
+ mgIP
+ IpAddress,
+ mgDomainName
+ DisplayString16,
+ mgSwitchingMode
+ INTEGER,
+ mgEndPoint
+ INTEGER,
+ mgType
+ INTEGER,
+ mgMaxPhysicalPorts
+ INTEGER,
+ mgMaxChannels
+ INTEGER,
+ mgPacketizationPeriod
+ INTEGER,
+ mgCodecType
+ Opaque,
+ mgAuditTimer
+ INTEGER,
+ mgPhysicalPortToMSCEntries
+ INTEGER,
+ mgRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.1
+ mgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 32."
+ ::= { mGToMSCEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.2
+ mgTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Title of the selected Media Gateway (max 64 characters)."
+ ::= { mGToMSCEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.3
+ mgAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Control the operation of the managed Media Gateway."
+ ::= { mGToMSCEntry 3 }
+
+
+-- IP
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.4
+ mgIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:IP address of the Media Gateway or 8KE1 Card."
+ ::= { mGToMSCEntry 4 }
+
+
+-- Domain Name
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.5
+ mgDomainName OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify a domain name to the Media Gateway."
+ ::= { mGToMSCEntry 5 }
+
+
+-- Switching Mode
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.6
+ mgSwitchingMode OBJECT-TYPE
+ SYNTAX INTEGER { mgcp(0) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Select the switching mode of the specified MG."
+ DEFVAL { mgcp }
+ ::= { mGToMSCEntry 6 }
+
+
+-- End Point Description
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.7
+ mgEndPoint OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ structured(1),
+ unstructured(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify the method of MGCP endpoint description."
+ DEFVAL { structured }
+ ::= { mGToMSCEntry 7 }
+
+
+-- MG Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.9
+ mgType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ audioCodes(1),
+ tandem(20),
+ imptandem(23),
+ aoip(24)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Select the type of MG endpoint."
+ DEFVAL { 1 }
+ ::= { mGToMSCEntry 9 }
+
+
+-- Max Physical Ports
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.10
+ mgMaxPhysicalPorts OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:The total physical port number of the MG.
Not applicable to virtual MG."
+ ::= { mGToMSCEntry 10 }
+
+
+-- Max Channels
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.11
+ mgMaxChannels OBJECT-TYPE
+ SYNTAX INTEGER (0..1024)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:The total channel number of the virtual MG.
Applicable to virtual MG only."
+ ::= { mGToMSCEntry 11 }
+
+
+-- Packetization Period
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.12
+ mgPacketizationPeriod OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ x20ms(20),
+ x40ms(40),
+ x60ms(60),
+ x80ms(80)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:The period over which encoded voice bits are
collected for encapsulation in."
+ DEFVAL { x20ms }
+ ::= { mGToMSCEntry 12 }
+
+
+-- Codec Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.14
+ mgCodecType OBJECT-TYPE
+ SYNTAX Opaque (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Codec 0[u]00.0-00.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 1[u]01.0-01.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 2[u]02.0-02.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 3[u]03.0-03.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 4[u]04.0-04.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 5[u]05.0-05.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 6[u]06.0-06.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 7[u]07.0-07.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 8[u]08.0-08.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 9[u]09.0-09.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 10[u]10.0-10.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 11[u]11.0-11.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 12[u]12.0-12.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 13[u]13.0-13.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 14[u]14.0-14.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 15[u]15.0-15.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [remark]Codec Type."
+ ::= { mGToMSCEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.15
+ mgAuditTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ UNITS "seconds"
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Audit Timer."
+ ::= { mGToMSCEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.16
+ mgPhysicalPortToMSCEntries OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Physical Port Entries
+ Remark:The total number of the configured Physical
Ports in this Media Gateway."
+ ::= { mGToMSCEntry 16 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.1.1.17
+ mgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mGToMSCEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.2
+ physicalPortToMSCTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PhysicalPortToMSCEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Physical Port to MSC"
+ ::= { mGToMSC 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.2.1
+ physicalPortToMSCEntry OBJECT-TYPE
+ SYNTAX PhysicalPortToMSCEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2 Name:Physical Port to MSC"
+ INDEX { ppIndex, ppMGIndex }
+ ::= { physicalPortToMSCTable 1 }
+
+
+ PhysicalPortToMSCEntry ::=
+ SEQUENCE {
+ ppMGIndex
+ INTEGER,
+ ppIndex
+ INTEGER,
+ ppUsedFlag
+ INTEGER,
+ ppStatus
+ INTEGER
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.2.1.1
+ ppMGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Media Gateway Index for the Physical Port."
+ ::= { physicalPortToMSCEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.2.1.2
+ ppIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 32."
+ ::= { physicalPortToMSCEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.2.1.3
+ ppUsedFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ idle(0),
+ inUse(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Used flag."
+ ::= { physicalPortToMSCEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.5.2.1.4
+ ppStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notReady(0),
+ ready(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:The status of the physical port."
+ ::= { physicalPortToMSCEntry 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6
+ locationArea OBJECT IDENTIFIER ::= { parameter 6 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.1
+ locationAreaTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LocationAreaEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { locationArea 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.1.1
+ locationAreaEntry OBJECT-TYPE
+ SYNTAX LocationAreaEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { laIndex }
+ ::= { locationAreaTable 1 }
+
+
+ LocationAreaEntry ::=
+ SEQUENCE {
+ laIndex
+ INTEGER,
+ laType
+ INTEGER,
+ laLAC
+ INTEGER,
+ laMCC
+ OCTET STRING,
+ laMNC
+ OCTET STRING,
+ laNRILength
+ INTEGER,
+ laCreateEntryCell
+ INTEGER,
+ laCellEntries
+ INTEGER,
+ laRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.1.1.1
+ laIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 256."
+ ::= { locationAreaEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.1.1.2
+ laType OBJECT-TYPE
+ SYNTAX INTEGER { out(1) }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Title of the selected Location Area (max 16 characters)."
+ ::= { locationAreaEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.1.1.3
+ laLAC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Local area code."
+ ::= { locationAreaEntry 3 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.1.1.4
+ laMCC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Mobile Country Code,the length is 3."
+ ::= { locationAreaEntry 4 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.1.1.5
+ laMNC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Mobile National Code,the length is 2 to 3."
+ ::= { locationAreaEntry 5 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.1.1.6
+ laNRILength OBJECT-TYPE
+ SYNTAX INTEGER (0..10)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:NRI Length from 0 to 10, NRI routing will be disabled when NRI Length is 0."
+ ::= { locationAreaEntry 6 }
+
+
+-- Cell
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.1.1.16
+ laCreateEntryCell OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { locationAreaEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.1.1.17
+ laCellEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Cell or NRI Entries
+ Key Parameter:Yes
+ Remark:The total number of configured Cells in this LAC."
+ ::= { locationAreaEntry 17 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.1.1.18
+ laRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { locationAreaEntry 18 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.2
+ cellTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF CellEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Cell or NRI"
+ ::= { locationArea 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.2.1
+ cellEntry OBJECT-TYPE
+ SYNTAX CellEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { cellIndex, cellLAIndex }
+ ::= { cellTable 1 }
+
+
+ CellEntry ::=
+ SEQUENCE {
+ cellLAIndex
+ INTEGER,
+ cellIndex
+ INTEGER,
+ cellCellID
+ INTEGER,
+ cellTgID
+ INTEGER,
+ cellNRI
+ INTEGER,
+ cellNBMCC
+ OCTET STRING,
+ cellNBMNC
+ OCTET STRING,
+ cellNBLAC
+ INTEGER,
+ cellNRIRouteAdministration
+ INTEGER,
+ cellRowStatus
+ RowStatus
+ }
+
+-- Cell Location Area Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.2.1.1
+ cellLAIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Location Area Index for the Cell."
+ ::= { cellEntry 1 }
+
+
+-- Cell Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.2.1.2
+ cellIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 0 to 255."
+ ::= { cellEntry 2 }
+
+
+-- Cell ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.2.1.3
+ cellCellID OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Global Cell Identity defined in GSM 03.03."
+ ::= { cellEntry 3 }
+
+
+-- Cell ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.2.1.4
+ cellTgID OBJECT-TYPE
+ SYNTAX INTEGER (1..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:TG ID
+ Remark:Trunk Group id configured in TG to MSC."
+ ::= { cellEntry 4 }
+
+
+-- Cell ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.2.1.5
+ cellNRI OBJECT-TYPE
+ SYNTAX INTEGER (0..1023)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Network Resource Indication."
+ ::= { cellEntry 5 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.2.1.6
+ cellNBMCC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Non-Broacast MCC, the length is 3."
+ ::= { cellEntry 6 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.2.1.7
+ cellNBMNC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Non-Broacast MNC,the length is 2 to 3."
+ ::= { cellEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.2.1.8
+ cellNBLAC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Non-Broacast LAC."
+ ::= { cellEntry 8 }
+
+
+-- Cell ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.2.1.9
+ cellNRIRouteAdministration OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ block(0),
+ unblock(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Administration State of NRI Routing."
+ ::= { cellEntry 9 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.6.2.1.10
+ cellRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cellEntry 10 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.7
+ mocnControl OBJECT IDENTIFIER ::= { parameter 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.7.1
+ status OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disabled(0),
+ blackList(1),
+ whiteList(2)
+ }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:The type of the user registration control table."
+ ::= { mocnControl 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.7.2
+ lURejectCause OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ pLMNnotallowed(11),
+ lACnotallowed(12),
+ roamingnotallowed(13)
+ }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:The LU reject cause returned to MS."
+ ::= { mocnControl 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.7.3
+ mocnControlTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MocnControlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mocnControl 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.7.3.1
+ mocnControlEntry OBJECT-TYPE
+ SYNTAX MocnControlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { rcIndex }
+ ::= { mocnControlTable 1 }
+
+
+ MocnControlEntry ::=
+ SEQUENCE {
+ rcIndex
+ INTEGER,
+ rcIMSIPrefix
+ OCTET STRING,
+ rcTgToMsc
+ INTEGER,
+ rcRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.7.3.1.1
+ rcIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 256."
+ ::= { mocnControlEntry 1 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.7.3.1.2
+ rcIMSIPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..15))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:IMSI prefix."
+ ::= { mocnControlEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.7.3.1.3
+ rcTgToMsc OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Tg to MSC."
+ ::= { mocnControlEntry 3 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.7.3.1.10
+ rcRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mocnControlEntry 10 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8
+ tGToRGW OBJECT IDENTIFIER ::= { parameter 8 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1
+ tGToRGWTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TGToRGWEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:TG to RGW"
+ ::= { tGToRGW 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1
+ tGToRGWEntry OBJECT-TYPE
+ SYNTAX TGToRGWEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:TG to RGW"
+ INDEX { tgmIndex }
+ ::= { tGToRGWTable 1 }
+
+
+ TGToRGWEntry ::=
+ SEQUENCE {
+ tgmIndex
+ INTEGER,
+ tgmTitle
+ OCTET STRING,
+ tgmAdministrationState
+ AdminStateChoices,
+ tgmOperabilityStatus
+ OperStateChoices,
+ tgmAvailabilityStatus
+ INTEGER,
+ tgmOPC
+ INTEGER,
+ tgmDPC
+ INTEGER,
+ tgmNetworkIndicator
+ INTEGER,
+ tgmProtocolType
+ INTEGER,
+ tgmCircuitSelectionMode
+ INTEGER,
+ tgmTrunkGroupType
+ INTEGER,
+ tgmLac
+ INTEGER,
+ tgmCellId
+ INTEGER,
+ tgmChannelQuench
+ INTEGER,
+ tgmIPEndPoint
+ INTEGER,
+ tgmQuietTimeInactivityTest
+ Opaque,
+ tgmLatitude
+ OCTET STRING,
+ tgmLongitude
+ OCTET STRING,
+ tgmCreateEntryTrunkToRGW
+ INTEGER,
+ tgmTrunkToRGWEntries
+ INTEGER,
+ tgmRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.1
+ tgmIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 256."
+ ::= { tGToRGWEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.2
+ tgmTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Title of the selected Trunk Group (max 64 characters)."
+ ::= { tGToRGWEntry 2 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.3
+ tgmAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Control the operation of the managed Trunk Group."
+ ::= { tGToRGWEntry 3 }
+
+
+-- Operability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.4
+ tgmOperabilityStatus OBJECT-TYPE
+ SYNTAX OperStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:(Read Only) Indicate the current Trunk Group operation
is qualified by Availability Status."
+ ::= { tGToRGWEntry 4 }
+
+
+-- Availability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.5
+ tgmAvailabilityStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ offLine(0),
+ onLine(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:(Read Only) Qualify Operation State providing details
about the current operational status."
+ ::= { tGToRGWEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.6
+ tgmOPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:The Originating Point Code of the current TG."
+ ::= { tGToRGWEntry 6 }
+
+
+-- DPC
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.7
+ tgmDPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:The Destination Point Code of the current TG."
+ ::= { tGToRGWEntry 7 }
+
+
+-- Network Indication
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.8
+ tgmNetworkIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ int(0),
+ intSpare(1),
+ nat(2),
+ natSpare(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify the Trunk Group to a network."
+ DEFVAL { int }
+ ::= { tGToRGWEntry 8 }
+
+
+-- Protocol Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.9
+ tgmProtocolType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ aif(0),
+ mf(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Select the protocol type for this Trunk Group. "
+ ::= { tGToRGWEntry 9 }
+
+
+-- Circuit Selection Mode
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.10
+ tgmCircuitSelectionMode OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ clockwise(0),
+ antiClockwise(1),
+ odd(2),
+ even(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Circuit selection mode of the traffic channel connections."
+ DEFVAL { clockwise }
+ ::= { tGToRGWEntry 10 }
+
+
+-- Trunk Group Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.11
+ tgmTrunkGroupType OBJECT-TYPE
+ SYNTAX INTEGER { in(1) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Application type of this Trunk Group."
+ DEFVAL { normal }
+ ::= { tGToRGWEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.13
+ tgmLac OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Lac."
+ ::= { tGToRGWEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.14
+ tgmCellId OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Cell Id."
+ ::= { tGToRGWEntry 14 }
+
+
+-- Protocol Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.15
+ tgmChannelQuench OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disabled(0),
+ enabled(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Channel Quench flag. "
+ ::= { tGToRGWEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.16
+ tgmIPEndPoint OBJECT-TYPE
+ SYNTAX INTEGER (0..4)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Stream IP End Point in RtpProxy."
+ ::= { tGToRGWEntry 16 }
+
+
+-- Inactivity Test
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.17
+ tgmQuietTimeInactivityTest OBJECT-TYPE
+ SYNTAX Opaque (SIZE (3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Inactivity Test[u]00.0-00.7[u]select
+ [v]0[opt]disabled completely
+ [v]1[opt]disabled specific time
+ [v]2[opt]enabled completely
+ [unit]disabled start time[u]01.0-01.7[u]select
+ [v]0[opt]AM 00:00
+ [v]1[opt]AM 00:30
+ [v]2[opt]AM 01:00
+ [v]3[opt]AM 01:30
+ [v]4[opt]AM 02:00
+ [v]5[opt]AM 02:30
+ [v]6[opt]AM 03:00
+ [v]7[opt]AM 03:30
+ [v]8[opt]AM 04:00
+ [v]9[opt]AM 04:30
+ [v]10[opt]AM 05:00
+ [v]11[opt]AM 05:30
+ [v]12[opt]AM 06:00
+ [v]13[opt]AM 06:30
+ [v]14[opt]AM 07:00
+ [v]15[opt]AM 07:30
+ [v]16[opt]AM 08:00
+ [v]17[opt]AM 08:30
+ [v]18[opt]AM 09:00
+ [v]19[opt]AM 09:30
+ [v]20[opt]AM 10:00
+ [v]21[opt]AM 10:30
+ [v]22[opt]AM 11:00
+ [v]23[opt]AM 11:30
+ [v]24[opt]AM 12:00
+ [v]25[opt]PM 00:30
+ [v]26[opt]PM 01:00
+ [v]27[opt]PM 01:30
+ [v]28[opt]PM 02:00
+ [v]29[opt]PM 02:30
+ [v]30[opt]PM 03:00
+ [v]31[opt]PM 03:30
+ [v]32[opt]PM 04:00
+ [v]33[opt]PM 04:30
+ [v]34[opt]PM 05:00
+ [v]35[opt]PM 05:30
+ [v]36[opt]PM 06:00
+ [v]37[opt]PM 06:30
+ [v]38[opt]PM 07:00
+ [v]39[opt]PM 07:30
+ [v]40[opt]PM 08:00
+ [v]41[opt]PM 08:30
+ [v]42[opt]PM 09:00
+ [v]43[opt]PM 09:30
+ [v]44[opt]PM 10:00
+ [v]45[opt]PM 10:30
+ [v]46[opt]PM 11:00
+ [v]47[opt]PM 11:30
+ [unit]disabled end time[u]02.0-02.7[u]select
+ [v]0[opt]AM 00:00
+ [v]1[opt]AM 00:30
+ [v]2[opt]AM 01:00
+ [v]3[opt]AM 01:30
+ [v]4[opt]AM 02:00
+ [v]5[opt]AM 02:30
+ [v]6[opt]AM 03:00
+ [v]7[opt]AM 03:30
+ [v]8[opt]AM 04:00
+ [v]9[opt]AM 04:30
+ [v]10[opt]AM 05:00
+ [v]11[opt]AM 05:30
+ [v]12[opt]AM 06:00
+ [v]13[opt]AM 06:30
+ [v]14[opt]AM 07:00
+ [v]15[opt]AM 07:30
+ [v]16[opt]AM 08:00
+ [v]17[opt]AM 08:30
+ [v]18[opt]AM 09:00
+ [v]19[opt]AM 09:30
+ [v]20[opt]AM 10:00
+ [v]21[opt]AM 10:30
+ [v]22[opt]AM 11:00
+ [v]23[opt]AM 11:30
+ [v]24[opt]AM 12:00
+ [v]25[opt]PM 00:30
+ [v]26[opt]PM 01:00
+ [v]27[opt]PM 01:30
+ [v]28[opt]PM 02:00
+ [v]29[opt]PM 02:30
+ [v]30[opt]PM 03:00
+ [v]31[opt]PM 03:30
+ [v]32[opt]PM 04:00
+ [v]33[opt]PM 04:30
+ [v]34[opt]PM 05:00
+ [v]35[opt]PM 05:30
+ [v]36[opt]PM 06:00
+ [v]37[opt]PM 06:30
+ [v]38[opt]PM 07:00
+ [v]39[opt]PM 07:30
+ [v]40[opt]PM 08:00
+ [v]41[opt]PM 08:30
+ [v]42[opt]PM 09:00
+ [v]43[opt]PM 09:30
+ [v]44[opt]PM 10:00
+ [v]45[opt]PM 10:30
+ [v]46[opt]PM 11:00
+ [v]47[opt]PM 11:30
+ [remark]Quiet Time Inactivity test of altoPOD."
+ ::= { tGToRGWEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.18
+ tgmLatitude OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..12))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Latitude of altoPod (-90, 90), indicate south if less than 0."
+ ::= { tGToRGWEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.19
+ tgmLongitude OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..12))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Longitude of altoPod (0, 360), indicate west when more than 180."
+ ::= { tGToRGWEntry 19 }
+
+
+-- Trunk
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.18
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.28
+ tgmCreateEntryTrunkToRGW OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Create Trunk Entry"
+ ::= { tGToRGWEntry 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.29
+ tgmTrunkToRGWEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Trunk Entries
+ Remark:The total number of configured Trunks in this Trunk Group."
+ ::= { tGToRGWEntry 29 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.19
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.1.1.30
+ tgmRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { tGToRGWEntry 30 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2
+ trunkToRGWTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TrunkToRGWEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Trunk to RGW"
+ ::= { tGToRGW 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1
+ trunkToRGWEntry OBJECT-TYPE
+ SYNTAX TrunkToRGWEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2 Name:Trunk to RGW"
+ INDEX { trunkmIndex, trunkmTGIndex }
+ ::= { trunkToRGWTable 1 }
+
+
+ TrunkToRGWEntry ::=
+ SEQUENCE {
+ trunkmTGIndex
+ INTEGER,
+ trunkmIndex
+ INTEGER,
+ trunkmTitle
+ OCTET STRING,
+ trunkmAdministrationState
+ AdminStateChoices,
+ trunkmOperabilityStatus
+ OperStateChoices,
+ trunkmAvailabilityStatus
+ INTEGER,
+ trunkmMgID
+ INTEGER,
+ trunkmPortID
+ INTEGER,
+ trunkmPortType
+ INTEGER,
+ trunkmGroupID
+ INTEGER,
+ trunkmCICValueAssignment
+ INTEGER,
+ trunkmChannelInUse
+ INTEGER,
+ trunkmChannelToRGWEntries
+ INTEGER,
+ trunkmRowStatus
+ RowStatus
+ }
+
+-- Trunk TG Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1.1
+ trunkmTGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Trunk Group Index for the Trunk."
+ ::= { trunkToRGWEntry 1 }
+
+
+-- Trunk Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1.2
+ trunkmIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 32."
+ ::= { trunkToRGWEntry 2 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1.3
+ trunkmTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Title of the selected Trunk (max 64 characters)."
+ ::= { trunkToRGWEntry 3 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1.4
+ trunkmAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Control the operation of the managed Trunk."
+ ::= { trunkToRGWEntry 4 }
+
+
+-- Operability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1.5
+ trunkmOperabilityStatus OBJECT-TYPE
+ SYNTAX OperStateChoices
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:(Read Only) Indicate the current linkset operation
is qualified by Availability Status."
+ ::= { trunkToRGWEntry 5 }
+
+
+-- Availability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1.6
+ trunkmAvailabilityStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ offLine(0),
+ onLine(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:(Read Only) Qualify Operation State providing details
about the current operational status."
+ ::= { trunkToRGWEntry 6 }
+
+
+-- MG ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1.7
+ trunkmMgID OBJECT-TYPE
+ SYNTAX INTEGER (0..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Specify the Trunk to a Media Gateway.
Not applicable to virtual MG."
+ DEFVAL { 0 }
+ ::= { trunkToRGWEntry 7 }
+
+
+-- Port ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1.8
+ trunkmPortID OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify the Trunk to a physical port of the selected Media
Gateway. Not applicable to virtual MG."
+ ::= { trunkToRGWEntry 8 }
+
+
+-- Port Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1.9
+ trunkmPortType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ e1(0),
+ t1(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify the type of MG physical ports."
+ DEFVAL { enable }
+ ::= { trunkToRGWEntry 9 }
+
+
+-- Group ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1.10
+ trunkmGroupID OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ group0(0),
+ group1(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Select the application group of the Trunk
for redundancy backup."
+ DEFVAL { group0 }
+ ::= { trunkToRGWEntry 10 }
+
+
+-- Typical CIC Value Assignment
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1.11
+ trunkmCICValueAssignment OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify the start CIC to the Trunk for typical mode."
+ ::= { trunkToRGWEntry 11 }
+
+
+-- Port ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1.12
+ trunkmChannelInUse OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Channel number in use."
+ ::= { trunkToRGWEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1.17
+ trunkmChannelToRGWEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Channel Entries"
+ ::= { trunkToRGWEntry 17 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.2.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.2.1.18
+ trunkmRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { trunkToRGWEntry 18 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.3
+ channelToRGWTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ChannelToRGWEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Channel to RGW"
+ ::= { tGToRGW 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.3.1
+ channelToRGWEntry OBJECT-TYPE
+ SYNTAX ChannelToRGWEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:3 Name:Channel to RGW"
+ INDEX { tsmIndex, tsmTrunkIndex, tsmTrunkTGIndex }
+ ::= { channelToRGWTable 1 }
+
+
+ ChannelToRGWEntry ::=
+ SEQUENCE {
+ tsmTrunkTGIndex
+ INTEGER,
+ tsmTrunkIndex
+ INTEGER,
+ tsmIndex
+ INTEGER,
+ tsmChannelCIC
+ INTEGER,
+ tsmChannelStatus
+ INTEGER,
+ tsmBlock
+ INTEGER
+ }
+
+-- CIC Trunk TG Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.3.1.1
+ tsmTrunkTGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Trunk Group Index for the Channel."
+ ::= { channelToRGWEntry 1 }
+
+
+-- CIC Trunk Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.3.1.2
+ tsmTrunkIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Trunk Index for the Time Slot."
+ ::= { channelToRGWEntry 2 }
+
+
+-- CIC Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.3.1.3
+ tsmIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 32."
+ ::= { channelToRGWEntry 3 }
+
+
+-- Channel CIC
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.3.1.4
+ tsmChannelCIC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Assign a Circuit Identity Code to the channel."
+ ::= { channelToRGWEntry 4 }
+
+
+-- Call Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.3.1.5
+ tsmChannelStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ outOfService(0),
+ idle(1),
+ busy(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:The status of the channel."
+ ::= { channelToRGWEntry 5 }
+
+
+-- Local Block
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.8.3.1.6
+ tsmBlock OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ unblocked(0),
+ localBlocked(1),
+ remoteBlocked(2)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Local block."
+ ::= { channelToRGWEntry 6 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9
+ mGToRGW OBJECT IDENTIFIER ::= { parameter 9 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1
+ mGToRGWTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MGToRGWEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:MG to RGW"
+ ::= { mGToRGW 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.5.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1
+ mGToRGWEntry OBJECT-TYPE
+ SYNTAX MGToRGWEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:MG to RGW"
+ INDEX { mgmIndex }
+ ::= { mGToRGWTable 1 }
+
+
+ MGToRGWEntry ::=
+ SEQUENCE {
+ mgmIndex
+ INTEGER,
+ mgmTitle
+ OCTET STRING,
+ mgmAdministrationState
+ AdminStateChoices,
+ mgmIP
+ IpAddress,
+ mgmDomainName
+ DisplayString16,
+ mgmSwitchingMode
+ INTEGER,
+ mgmEndPoint
+ INTEGER,
+ mgmType
+ INTEGER,
+ mgmMaxPhysicalPorts
+ INTEGER,
+ mgmMaxChannels
+ INTEGER,
+ mgmPacketizationPeriod
+ INTEGER,
+ mgmChannelType
+ INTEGER,
+ mgmCodecType
+ Opaque,
+ mgmSilenceSuppression
+ INTEGER,
+ mgmRtpMultiplex
+ INTEGER,
+ mgmAuditTimer
+ INTEGER,
+ mgmPhysicalPortToRGWEntries
+ INTEGER,
+ mgmRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.1
+ mgmIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 256."
+ ::= { mGToRGWEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.2
+ mgmTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Title of the selected Media Gateway (max 64 characters)."
+ ::= { mGToRGWEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.3
+ mgmAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Control the operation of the managed Media Gateway."
+ ::= { mGToRGWEntry 3 }
+
+
+-- IP
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.4
+ mgmIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:IP address of the Media Gateway or 8KE1 Card."
+ ::= { mGToRGWEntry 4 }
+
+
+-- Domain Name
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.5
+ mgmDomainName OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify a domain name to the Media Gateway."
+ ::= { mGToRGWEntry 5 }
+
+
+-- Switching Mode
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.6
+ mgmSwitchingMode OBJECT-TYPE
+ SYNTAX INTEGER { mgcp(0) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Select the switching mode of the specified MG."
+ DEFVAL { mgcp }
+ ::= { mGToRGWEntry 6 }
+
+
+-- End Point Description
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.7
+ mgmEndPoint OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ structured(1),
+ unstructured(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Specify the method of MGCP endpoint description."
+ DEFVAL { structured }
+ ::= { mGToRGWEntry 7 }
+
+
+-- MG Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.9
+ mgmType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ internal(0),
+ audioCodes(1),
+ lgcMG(2),
+ lgcCS(3),
+ ipBSS(4),
+ rgwMG(5),
+ analogLine(11),
+ tandem(20),
+ announcementServer(21)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Select the type of MG endpoint."
+ DEFVAL { digitalChannel }
+ ::= { mGToRGWEntry 9 }
+
+
+-- Max Physical Ports
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.10
+ mgmMaxPhysicalPorts OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:The total physical port number of the MG.
Not applicable to virtual MG."
+ ::= { mGToRGWEntry 10 }
+
+
+-- Max Channels
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.11
+ mgmMaxChannels OBJECT-TYPE
+ SYNTAX INTEGER (0..1024)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:The total channel number of the virtual MG.
Applicable to virtual MG only."
+ ::= { mGToRGWEntry 11 }
+
+
+-- Packetization Period
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.12
+ mgmPacketizationPeriod OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ x20ms(20),
+ x40ms(40),
+ x60ms(60),
+ x80ms(80),
+ x100ms(100)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:The period over which encoded voice bits are
collected for encapsulation in."
+ DEFVAL { x20ms }
+ ::= { mGToRGWEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.13
+ mgmChannelType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ rtp(0),
+ udp(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Channel Type."
+ ::= { mGToRGWEntry 13 }
+
+
+-- Codec Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.14
+ mgmCodecType OBJECT-TYPE
+ SYNTAX Opaque (SIZE (16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Codec 0[u]00.0-00.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 1[u]01.0-01.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 2[u]02.0-02.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 3[u]03.0-03.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 4[u]04.0-04.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 5[u]05.0-05.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 6[u]06.0-06.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 7[u]07.0-07.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 8[u]08.0-08.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 9[u]09.0-09.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 10[u]10.0-10.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 11[u]11.0-11.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 12[u]12.0-12.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 13[u]13.0-13.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 14[u]14.0-14.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [unit]Codec 15[u]15.0-15.7[u]select
+ [v]0[opt]A_Law
+ [v]1[opt]Mu_Law
+ [v]2[opt]FR
+ [v]3[opt]EFR
+ [v]4[opt]AMR_12_2
+ [v]5[opt]G729b
+ [v]6[opt]AMR_10_2
+ [v]7[opt]AMR_7_95
+ [v]8[opt]AMR_7_4
+ [v]9[opt]AMR_6_7
+ [v]10[opt]AMR_5_9
+ [v]11[opt]AMR_5_15
+ [v]12[opt]AMR_4_75
+ [v]13[opt]G729
+ [v]255[opt]NULL
+ [remark]Codec Type."
+ ::= { mGToRGWEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.15
+ mgmSilenceSuppression OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ enable(0),
+ disable(1)
+ }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Silence Suppression."
+ ::= { mGToRGWEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.16
+ mgmRtpMultiplex OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Rtp Multiplex."
+ ::= { mGToRGWEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.18
+ mgmAuditTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:The time interval between sending AUEP message from MGC to MGW to check the trunk status. Set 0 to disable."
+ ::= { mGToRGWEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.19
+ mgmPhysicalPortToRGWEntries OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Physical Port Entries
+ Remark:The total number of the configured Physical
Ports in this Media Gateway."
+ ::= { mGToRGWEntry 19 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.14
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.1.1.20
+ mgmRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mGToRGWEntry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.2
+ physicalPortToRGWTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PhysicalPortToRGWEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Physical Port to RGW"
+ ::= { mGToRGW 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.2.1
+ physicalPortToRGWEntry OBJECT-TYPE
+ SYNTAX PhysicalPortToRGWEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2 Name:Physical Port to RGW"
+ INDEX { ppmIndex, ppmMGIndex }
+ ::= { physicalPortToRGWTable 1 }
+
+
+ PhysicalPortToRGWEntry ::=
+ SEQUENCE {
+ ppmMGIndex
+ INTEGER,
+ ppmIndex
+ INTEGER,
+ ppmUsedFlag
+ INTEGER,
+ ppmStatus
+ INTEGER
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.2.1.1
+ ppmMGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Media Gateway Index for the Physical Port."
+ ::= { physicalPortToRGWEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.2.1.2
+ ppmIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 32."
+ ::= { physicalPortToRGWEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.2.1.3
+ ppmUsedFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ idle(0),
+ inUse(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Used flag."
+ ::= { physicalPortToRGWEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.9.2.1.4
+ ppmStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notReady(0),
+ ready(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:The status of the physical port."
+ ::= { physicalPortToRGWEntry 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10
+ localSwitchingArea OBJECT IDENTIFIER ::= { parameter 10 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.1
+ localSwitchingAreaTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LocalSwitchingAreaEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { localSwitchingArea 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.1.1
+ localSwitchingAreaEntry OBJECT-TYPE
+ SYNTAX LocalSwitchingAreaEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { lsaIndex }
+ ::= { localSwitchingAreaTable 1 }
+
+
+ LocalSwitchingAreaEntry ::=
+ SEQUENCE {
+ lsaIndex
+ INTEGER,
+ lsaTitle
+ OCTET STRING,
+ lsaLCPOption
+ INTEGER,
+ lsaCreateEntryLsaPod
+ INTEGER,
+ lsaLsaPodEntries
+ INTEGER,
+ lsaRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.1.1.1
+ lsaIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 512."
+ ::= { localSwitchingAreaEntry 1 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.1.1.2
+ lsaTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Title of the Local Switching Area (max 64 characters)."
+ ::= { localSwitchingAreaEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.1.1.3
+ lsaLCPOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { localSwitchingAreaEntry 3 }
+
+
+-- Cell
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.1.1.8
+ lsaCreateEntryLsaPod OBJECT-TYPE
+ SYNTAX INTEGER (0..511)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { localSwitchingAreaEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.1.1.9
+ lsaLsaPodEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..511)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:altoPod Entries
+ Remark:The total number of configured Pods in this LSA."
+ ::= { localSwitchingAreaEntry 9 }
+-- Name:altoPod Entries
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.1.1.10
+ lsaRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { localSwitchingAreaEntry 10 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.2
+ lsaPodTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LsaPodEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { localSwitchingArea 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.2.1
+ lsaPodEntry OBJECT-TYPE
+ SYNTAX LsaPodEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { lsapodPodIndex, lsapodLSAIndex }
+ ::= { lsaPodTable 1 }
+
+
+ LsaPodEntry ::=
+ SEQUENCE {
+ lsapodLSAIndex
+ INTEGER,
+ lsapodPodIndex
+ INTEGER,
+ lsapodTitle
+ OCTET STRING,
+ lsapodTgID
+ INTEGER,
+ lsapodRowStatus
+ RowStatus
+ }
+
+-- Cell Location Area Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.2.1.1
+ lsapodLSAIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:LSA Index for the Pod."
+ ::= { lsaPodEntry 1 }
+
+
+-- Cell Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.2.1.2
+ lsapodPodIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..511)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index number range from 0 to 511."
+ ::= { lsaPodEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.2.1.3
+ lsapodTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Title of this LSA Pod (max 64 characters)."
+ ::= { lsaPodEntry 3 }
+
+
+-- Cell ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.2.1.4
+ lsapodTgID OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:altoPod ID
+ Remark:Tg Index."
+ ::= { lsaPodEntry 4 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.10.2.1.10
+ lsapodRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { lsaPodEntry 10 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11
+ cluster OBJECT IDENTIFIER ::= { parameter 11 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.1
+ clusterTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ClusterEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cluster 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.1.1
+ clusterEntry OBJECT-TYPE
+ SYNTAX ClusterEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { clsIndex }
+ ::= { clusterTable 1 }
+
+
+ ClusterEntry ::=
+ SEQUENCE {
+ clsIndex
+ INTEGER,
+ clsTitle
+ OCTET STRING,
+ clsLUTimeTableId
+ INTEGER,
+ clsCreateEntryClusterPod
+ INTEGER,
+ clsClusterPodEntries
+ INTEGER,
+ clsRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.1.1.1
+ clsIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 512."
+ ::= { clusterEntry 1 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.1.1.2
+ clsTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Title of this Cluster (max 64 characters)."
+ ::= { clusterEntry 2 }
+
+
+-- Cell ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.1.1.3
+ clsLUTimeTableId OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:LU time table id."
+ ::= { clusterEntry 3 }
+
+
+-- Cell
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.15
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.1.1.8
+ clsCreateEntryClusterPod OBJECT-TYPE
+ SYNTAX INTEGER (0..511)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { clusterEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.1.1.9
+ clsClusterPodEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..511)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:altoPod Entries
+ Remark:The total number of configured Pods in this Cluster."
+ ::= { clusterEntry 9 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.1.1.10
+ clsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { clusterEntry 10 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.2
+ clusterPodTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ClusterPodEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Cluster Pod"
+ ::= { cluster 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.2.1
+ clusterPodEntry OBJECT-TYPE
+ SYNTAX ClusterPodEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2 Name:Cluster Pod"
+ INDEX { clpClusterIndex, clpPodIndex }
+ ::= { clusterPodTable 1 }
+
+
+ ClusterPodEntry ::=
+ SEQUENCE {
+ clpClusterIndex
+ INTEGER,
+ clpPodIndex
+ INTEGER,
+ clpTitle
+ OCTET STRING,
+ clpTgID
+ INTEGER,
+ clpRowStatus
+ RowStatus
+ }
+
+-- Cell Location Area Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.2.1.1
+ clpClusterIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Cluster Index for the Pod."
+ ::= { clusterPodEntry 1 }
+
+
+-- Cell Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.2.1.2
+ clpPodIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..511)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index number range from 0 to 511."
+ ::= { clusterPodEntry 2 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.2.1.3
+ clpTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Title of this Cluster Pod (max 64 characters)."
+ ::= { clusterPodEntry 3 }
+
+
+-- Cell ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.2.1.4
+ clpTgID OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:altoPod ID
+ Remark:Tg Index."
+ ::= { clusterPodEntry 4 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.3.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.11.2.1.10
+ clpRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { clusterPodEntry 10 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.12
+ lUTimeControl OBJECT IDENTIFIER ::= { parameter 12 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.12.1
+ lUTimeTableTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LUTimeTableEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:LU Time Table"
+ ::= { lUTimeControl 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.12.1.1
+ lUTimeTableEntry OBJECT-TYPE
+ SYNTAX LUTimeTableEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:LU Time Table"
+ INDEX { luttIndex }
+ ::= { lUTimeTableTable 1 }
+
+
+ LUTimeTableEntry ::=
+ SEQUENCE {
+ luttIndex
+ INTEGER,
+ luttTimeSlots
+ Opaque,
+ luttRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.12.1.1.1
+ luttIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 16."
+ ::= { lUTimeTableEntry 1 }
+
+
+-- Creation Time Stamp
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.12.1.1.2
+ luttTimeSlots OBJECT-TYPE
+ SYNTAX Opaque (SIZE (4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]00:00-00:30[u]00.0-00.0[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]00:30-01:00[u]00.1-00.1[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]01:00-01:30[u]00.2-00.2[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]01:30-02:00[u]00.3-00.3[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]02:00-02:30[u]00.4-00.4[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]02:30-03:00[u]00.5-00.5[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]03:00-03:30[u]00.6-00.6[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]03:30-04:00[u]00.7-00.7[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]04:00-04:30[u]01.0-01.0[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]04:30-05:00[u]01.1-01.1[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]05:00-05:30[u]01.2-01.2[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]05:30-06:00[u]01.3-01.3[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]06:00-06:30[u]01.4-01.4[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]06:30-07:00[u]01.5-01.5[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]07:00-07:30[u]01.6-01.6[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]07:30-08:00[u]01.7-01.7[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]08:00-08:30[u]02.0-02.0[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]08:30-09:00[u]02.1-02.1[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]09:00-09:30[u]02.2-02.2[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]09:30-10:00[u]02.3-02.3[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]10:00-10:30[u]02.4-02.4[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]10:30-11:00[u]02.5-02.5[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]11:00-11:30[u]02.6-02.6[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]11:30-12:00[u]02.7-02.7[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]12:00-12:30[u]03.0-03.0[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]12:30-13:00[u]03.1-03.1[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]13:00-13:30[u]03.2-03.2[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]13:30-14:00[u]03.3-03.3[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]14:00-14:30[u]03.4-03.4[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]14:30-15:00[u]03.5-03.5[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]15:00-15:30[u]03.6-03.6[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]15:30-16:00[u]03.7-03.7[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]16:00-16:30[u]04.0-04.0[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]16:30-17:00[u]04.1-04.1[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]17:00-17:30[u]04.2-04.2[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]17:30-18:00[u]04.3-04.3[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]18:00-18:30[u]04.4-04.4[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]18:30-19:00[u]04.5-04.5[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]19:00-19:30[u]04.6-04.6[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]19:30-20:00[u]04.7-04.7[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]20:00-20:30[u]05.0-05.0[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]20:30-21:00[u]05.1-05.1[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]21:00-21:30[u]05.2-05.2[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]21:30-22:00[u]05.3-05.3[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]22:00-22:30[u]05.4-05.4[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]22:30-23:00[u]05.5-05.5[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]23:00-23:30[u]05.6-05.6[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked
+ [unit]23:30-00:00[u]05.7-05.7[u]select
+ [v]0[opt]Non Blocked
+ [v]1[opt]Blocked"
+ ::= { lUTimeTableEntry 2 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.4.1.1.16
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.12.1.1.10
+ luttRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { lUTimeTableEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.13
+ mocnCellMapping OBJECT IDENTIFIER ::= { parameter 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.13.1
+ mocnCellMappingTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MocnCellMappingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:MOCN Cell Mapping"
+ ::= { mocnCellMapping 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.13.1.1
+ mocnCellMappingEntry OBJECT-TYPE
+ SYNTAX MocnCellMappingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:MOCN Cell Mapping"
+ INDEX { mocnCellMappingIndex }
+ ::= { mocnCellMappingTable 1 }
+
+
+ MocnCellMappingEntry ::=
+ SEQUENCE {
+ mocnCellMappingIndex
+ INTEGER,
+ mocnCellMappingTitle
+ OCTET STRING,
+ mocnCellMappingLacMSC1
+ INTEGER,
+ mocnCellMappingCellIdMSC1
+ INTEGER,
+ mocnCellMappingLacMSC2
+ INTEGER,
+ mocnCellMappingCellIdMSC2
+ INTEGER,
+ mocnCellMappingLacMSC3
+ INTEGER,
+ mocnCellMappingCellIdMSC3
+ INTEGER,
+ mocnCellMappingRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.13.1.1.1
+ mocnCellMappingIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index number range from 1 to 256."
+ ::= { mocnCellMappingEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.13.1.1.2
+ mocnCellMappingTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Title of the selected Trunk Group (max 64 characters)."
+ ::= { mocnCellMappingEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.13.1.1.3
+ mocnCellMappingLacMSC1 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSC 1 Lac"
+ ::= { mocnCellMappingEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.13.1.1.4
+ mocnCellMappingCellIdMSC1 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSC 1 Cell Id"
+ ::= { mocnCellMappingEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.13.1.1.5
+ mocnCellMappingLacMSC2 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSC 2 Lac"
+ ::= { mocnCellMappingEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.13.1.1.6
+ mocnCellMappingCellIdMSC2 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSC 2 Cell Id"
+ ::= { mocnCellMappingEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.13.1.1.7
+ mocnCellMappingLacMSC3 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSC 3 Lac"
+ ::= { mocnCellMappingEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.13.1.1.8
+ mocnCellMappingCellIdMSC3 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSC 3 Cell Id"
+ ::= { mocnCellMappingEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.2.13.1.1.20
+ mocnCellMappingRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mocnCellMappingEntry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3
+ csta OBJECT IDENTIFIER ::= { palim 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.1
+ luTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LuEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.1.1
+ luEntry OBJECT-TYPE
+ SYNTAX LuEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { luTgIndex, luIndex }
+ ::= { luTable 1 }
+
+
+ LuEntry ::=
+ SEQUENCE {
+ luTgIndex
+ INTEGER,
+ luIndex
+ INTEGER,
+ luData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.1.1.1
+ luTgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { luEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.1.1.2
+ luIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { luEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.1.1.3
+ luData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { luEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.2
+ moTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.2.1
+ moEntry OBJECT-TYPE
+ SYNTAX MoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { moTgIndex, moIndex }
+ ::= { moTable 1 }
+
+
+ MoEntry ::=
+ SEQUENCE {
+ moTgIndex
+ INTEGER,
+ moIndex
+ INTEGER,
+ moData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.2.1.1
+ moTgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { moEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.2.1.2
+ moIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { moEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.2.1.3
+ moData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { moEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.3
+ mtTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MtEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.3.1
+ mtEntry OBJECT-TYPE
+ SYNTAX MtEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { mtTgIndex, mtIndex }
+ ::= { mtTable 1 }
+
+
+ MtEntry ::=
+ SEQUENCE {
+ mtTgIndex
+ INTEGER,
+ mtIndex
+ INTEGER,
+ mtData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.3.1.1
+ mtTgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mtEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.3.1.2
+ mtIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mtEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.3.1.3
+ mtData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mtEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.4
+ smoTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SmoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.4.1
+ smoEntry OBJECT-TYPE
+ SYNTAX SmoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { smoTgIndex, smoIndex }
+ ::= { smoTable 1 }
+
+
+ SmoEntry ::=
+ SEQUENCE {
+ smoTgIndex
+ INTEGER,
+ smoIndex
+ INTEGER,
+ smoData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.4.1.1
+ smoTgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { smoEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.4.1.2
+ smoIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { smoEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.4.1.3
+ smoData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { smoEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.5
+ smtTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SmtEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.5.1
+ smtEntry OBJECT-TYPE
+ SYNTAX SmtEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { smtTgIndex, smtIndex }
+ ::= { smtTable 1 }
+
+
+ SmtEntry ::=
+ SEQUENCE {
+ smtTgIndex
+ INTEGER,
+ smtIndex
+ INTEGER,
+ smtData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.5.1.1
+ smtTgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { smtEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.5.1.2
+ smtIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { smtEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.5.1.3
+ smtData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { smtEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.6
+ bscTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF BscEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.6.1
+ bscEntry OBJECT-TYPE
+ SYNTAX BscEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { bscTgIndex, bscIndex }
+ ::= { bscTable 1 }
+
+
+ BscEntry ::=
+ SEQUENCE {
+ bscTgIndex
+ INTEGER,
+ bscIndex
+ INTEGER,
+ bscData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.6.1.1
+ bscTgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..256)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { bscEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.6.1.2
+ bscIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { bscEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.6.1.3
+ bscData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { bscEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.7
+ intraHOTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF IntraHOEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.7.1
+ intraHOEntry OBJECT-TYPE
+ SYNTAX IntraHOEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { intraHoTgIndex, intraHoIndex }
+ ::= { intraHOTable 1 }
+
+
+ IntraHOEntry ::=
+ SEQUENCE {
+ intraHoTgIndex
+ INTEGER,
+ intraHoIndex
+ INTEGER,
+ intraHoData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.7.1.1
+ intraHoTgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..8)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { intraHOEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.7.1.2
+ intraHoIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { intraHOEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.7.1.3
+ intraHoData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { intraHOEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.8
+ emergencyCallTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF EmergencyCallEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.8.1
+ emergencyCallEntry OBJECT-TYPE
+ SYNTAX EmergencyCallEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { emergencyCallTgIndex, emergencyCallIndex }
+ ::= { emergencyCallTable 1 }
+
+
+ EmergencyCallEntry ::=
+ SEQUENCE {
+ emergencyCallTgIndex
+ INTEGER,
+ emergencyCallIndex
+ INTEGER,
+ emergencyCallData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.8.1.1
+ emergencyCallTgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..8)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { emergencyCallEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.8.1.2
+ emergencyCallIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { emergencyCallEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.8.1.3
+ emergencyCallData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { emergencyCallEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.9
+ mscStatsTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MscStatsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.9.1
+ mscStatsEntry OBJECT-TYPE
+ SYNTAX MscStatsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { mscStatsTgIndex, mscStatsIndex }
+ ::= { mscStatsTable 1 }
+
+
+ MscStatsEntry ::=
+ SEQUENCE {
+ mscStatsTgIndex
+ INTEGER,
+ mscStatsIndex
+ INTEGER,
+ mscStatsData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.9.1.1
+ mscStatsTgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mscStatsEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.9.1.2
+ mscStatsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mscStatsEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.9.1.3
+ mscStatsData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mscStatsEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.10
+ lsPerRgwTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LsPerRgwEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.10.1
+ lsPerRgwEntry OBJECT-TYPE
+ SYNTAX LsPerRgwEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { lsPerRgwTgIndex, lsPerRgwIndex }
+ ::= { lsPerRgwTable 1 }
+
+
+ LsPerRgwEntry ::=
+ SEQUENCE {
+ lsPerRgwTgIndex
+ INTEGER,
+ lsPerRgwIndex
+ INTEGER,
+ lsPerRgwData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.10.1.1
+ lsPerRgwTgIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { lsPerRgwEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.10.1.2
+ lsPerRgwIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { lsPerRgwEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.10.1.3
+ lsPerRgwData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { lsPerRgwEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.11
+ lsPerClusterTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LsPerClusterEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.11.1
+ lsPerClusterEntry OBJECT-TYPE
+ SYNTAX LsPerClusterEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { lsPerClusterClusterIndex, lsPerClusterIndex }
+ ::= { lsPerClusterTable 1 }
+
+
+ LsPerClusterEntry ::=
+ SEQUENCE {
+ lsPerClusterClusterIndex
+ INTEGER,
+ lsPerClusterIndex
+ INTEGER,
+ lsPerClusterData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.11.1.1
+ lsPerClusterClusterIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { lsPerClusterEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.11.1.2
+ lsPerClusterIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { lsPerClusterEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.11.1.3
+ lsPerClusterData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { lsPerClusterEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.12
+ lsPerLsaTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LsPerLsaEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.12.1
+ lsPerLsaEntry OBJECT-TYPE
+ SYNTAX LsPerLsaEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { lsPerLsaLsaIndex, lsPerLsaIndex }
+ ::= { lsPerLsaTable 1 }
+
+
+ LsPerLsaEntry ::=
+ SEQUENCE {
+ lsPerLsaLsaIndex
+ INTEGER,
+ lsPerLsaIndex
+ INTEGER,
+ lsPerLsaData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.12.1.1
+ lsPerLsaLsaIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..512)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { lsPerLsaEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.12.1.2
+ lsPerLsaIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { lsPerLsaEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.14.3.12.1.3
+ lsPerLsaData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { lsPerLsaEntry 3 }
+
+
+
+ END
+
+--
+-- LGC-SS-PALIM-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-PPS-MIB.my b/omc/bin/mib/LGC-SS-PPS-MIB.my
new file mode 100644
index 0000000..c4cea56
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-PPS-MIB.my
@@ -0,0 +1,5116 @@
+--
+-- LGC-SS-PPS-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Wednesday, June 20, 2012 at 14:00:43
+--
+
+ LGC-SS-PPS-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString16, RowStatus, DisplayString
+ FROM LGC-MIB
+ IpAddress, Opaque, Integer32, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6
+ pps MODULE-IDENTITY
+ LAST-UPDATED "200811241438Z" -- November 24, 2008 at 14:38 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ ::= { application 6 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { pps 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2
+ parameter OBJECT IDENTIFIER ::= { pps 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1
+ serviceControl OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.1
+ license OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Max License
+ Remark:(Read Only) The maximum subscriber capacity of PPS determined by License Control."
+ ::= { serviceControl 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2
+ cDRFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CDR Flag
+ Remark:Enable or disable the Call Detail Record generation of the prepaid calls."
+ ::= { serviceControl 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3
+ blackListThreshold OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Black List Threshold
+ Remark:Mark subscriber in black list and suspend service when the recharge fail times cross this threshold."
+ ::= { serviceControl 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.4
+ maxBalance OBJECT-TYPE
+ SYNTAX INTEGER (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Balance
+ Remark:Specify the permitted maximum balance for the prepaid accounts. This value is for overflow prevention. Unit the minimum currency unit."
+ ::= { serviceControl 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.5
+ currencySymbol OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Currency Symbol
+ Remark:Symbol of local currency for short message display, such as $."
+ ::= { serviceControl 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.6
+ cOSOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ group64(0),
+ group4(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:COS Option
+ Remark:Select the maximum quantity of COSs supported by PPS."
+ ::= { serviceControl 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.7
+ mNPChargeFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MNP Charge Flag
+ Remark:Enable or disable charging for MNP calls."
+ ::= { serviceControl 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.8
+ oprAccountValidity OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPR Account Validity
+ Remark:Specify the retention period of a fresh OPR account without recharging balance.
- Range = 0 - 127 days"
+ ::= { serviceControl 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.9
+ language0SMEncodeType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bits7(0),
+ bits8(1),
+ unicode(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Language 0 SMS Encoding Type
+ Remark:Specify the coding scheme of PPS notification short message."
+ ::= { serviceControl 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.10
+ language1SMEncodeType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bits7(0),
+ bits8(1),
+ unicode(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Language 1 SMS Encoding Type
+ Remark:Specify the coding scheme of PPS notification short message."
+ ::= { serviceControl 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.11
+ language2SMEncodeType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bits7(0),
+ bits8(1),
+ unicode(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Language 2 SMS Encoding Type
+ Remark:Specify the coding scheme of PPS notification short message."
+ ::= { serviceControl 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.12
+ language3SMEncodeType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bits7(0),
+ bits8(1),
+ unicode(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Language 3 SMS Encoding Type
+ Remark:Specify the coding scheme of PPS notification short message."
+ ::= { serviceControl 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.13
+ language4SMEncodeType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bits7(0),
+ bits8(1),
+ unicode(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Language 4 SMS Encoding Type
+ Remark:Specify the coding scheme of PPS notification short message."
+ ::= { serviceControl 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.14
+ externalRCM OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:External RCMS
+ Remark:Enable or disable external Recharge Card Management System (RCMS) support."
+ ::= { serviceControl 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.15
+ chargeByCellFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:It is only available when the prepaid users are charged by location. Enable = Only Cell ID is used to determined Tariff Table ID; Disable = [LAC+Cell ID] is used to determined Tariff Table ID."
+ ::= { serviceControl 15 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.16
+ notChangeExpiryForTransfer OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:To change or not change expiry date when doing Balance Transfer."
+ ::= { serviceControl 16 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.17
+ ussdCallbackSerivceKey OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:USSD-Callback Service Key
+ Remark:The service key defined for USSD-Callback serive"
+ ::= { serviceControl 17 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.18
+ ucbcNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:UCBC Number
+ Remark:The E.164 node address of the USSD-Callback Center."
+ ::= { serviceControl 18 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.20
+ promptResolutionTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PromptResolutionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.20.1
+ promptResolutionEntry OBJECT-TYPE
+ SYNTAX PromptResolutionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { prIndex }
+ ::= { promptResolutionTable 1 }
+
+
+ PromptResolutionEntry ::=
+ SEQUENCE {
+ prIndex
+ INTEGER,
+ prTitle
+ OCTET STRING,
+ prCurrencyResolution
+ INTEGER,
+ prDateFormat
+ INTEGER,
+ prCurrencySymbolPosition
+ INTEGER,
+ prRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.20.1.1
+ prIndex OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Prompt Resolution index number."
+ ::= { promptResolutionEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.20.1.2
+ prTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Prompt Resolution name for identification purpose only."
+ ::= { promptResolutionEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.20.1.3
+ prCurrencyResolution OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ n1(0),
+ n10(1),
+ n100(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Currency Resolution
+ Remark:Specify the number of decimal place in the PPS notification short message balance display and audio prompt.
For example, balance=1234:
- 1 = 1234
- 10 = 123.4
- 100 = 12.34"
+ ::= { promptResolutionEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.20.1.4
+ prDateFormat OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ yyyymmdd(0),
+ ddmmyyyy(1),
+ mmddyyyy(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Date Format
+ Remark:Specify date format in PPS notification short message and audio prompt."
+ ::= { promptResolutionEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.20.1.5
+ prCurrencySymbolPosition OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ front(0),
+ rear(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Currency Symbol Position
+ Remark:Specify the position of the currency symbol in PPS notification short message.
- At the front of the balance: $5
- At the rear of the balance: 5$"
+ ::= { promptResolutionEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.20.1.6
+ prRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { promptResolutionEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.21
+ mNPPrefixesTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MNPPrefixesEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.21.1
+ mNPPrefixesEntry OBJECT-TYPE
+ SYNTAX MNPPrefixesEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { mnpIndex }
+ ::= { mNPPrefixesTable 1 }
+
+
+ MNPPrefixesEntry ::=
+ SEQUENCE {
+ mnpIndex
+ INTEGER,
+ mnpTitle
+ OCTET STRING,
+ mnpPrefix
+ OCTET STRING,
+ mnpRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.21.1.1
+ mnpIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:MNP prefix index number ranges from 0 to 31."
+ ::= { mNPPrefixesEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.21.1.2
+ mnpTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:MNP prefix name for identification purpose only."
+ ::= { mNPPrefixesEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.21.1.3
+ mnpPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Prefix
+ Remark:Add the MNP related prefixes in this list if the MNP charging is enabled."
+ ::= { mNPPrefixesEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.21.1.4
+ mnpRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mNPPrefixesEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.22
+ sMSSentenceTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SMSSentenceEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.22.1
+ sMSSentenceEntry OBJECT-TYPE
+ SYNTAX SMSSentenceEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { ssIndex }
+ ::= { sMSSentenceTable 1 }
+
+
+ SMSSentenceEntry ::=
+ SEQUENCE {
+ ssIndex
+ INTEGER,
+ ssTitle
+ OCTET STRING,
+ ssEnglish
+ OCTET STRING,
+ ssLanguage0Content
+ OCTET STRING,
+ ssLanguage1Content
+ OCTET STRING,
+ ssLanguage2Content
+ OCTET STRING,
+ ssLanguage3Content
+ OCTET STRING,
+ ssLanguage4Content
+ OCTET STRING,
+ ssRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.22.1.1
+ ssIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..4)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index number for identification purpose only."
+ ::= { sMSSentenceEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.22.1.2
+ ssTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Notification short message element name for identification purpose only."
+ ::= { sMSSentenceEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.22.1.3
+ ssEnglish OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:English
+ Remark:Notification short message element in English description."
+ ::= { sMSSentenceEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.22.1.4
+ ssLanguage0Content OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..99))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Language 0 Content
+ Remark:Customize the notification short message contents according to local language manner."
+ ::= { sMSSentenceEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.22.1.5
+ ssLanguage1Content OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..99))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Language 1 Content
+ Remark:Customize the notification short message contents according to local language manner."
+ ::= { sMSSentenceEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.22.1.6
+ ssLanguage2Content OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..99))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Language 2 Content
+ Remark:Customize the notification short message contents according to local language manner."
+ ::= { sMSSentenceEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.22.1.7
+ ssLanguage3Content OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..99))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Language 3 Content
+ Remark:Customize the notification short message contents according to local language manner."
+ ::= { sMSSentenceEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.22.1.8
+ ssLanguage4Content OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..99))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Language 4 Content
+ Remark:Customize the notification short message contents according to local language manner."
+ ::= { sMSSentenceEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.22.1.9
+ ssRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSSentenceEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.24
+ thirdPartyInfoTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ThirdPartyInfoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 24 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.24.1
+ thirdPartyInfoEntry OBJECT-TYPE
+ SYNTAX ThirdPartyInfoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { tpiIndex }
+ ::= { thirdPartyInfoTable 1 }
+
+
+ ThirdPartyInfoEntry ::=
+ SEQUENCE {
+ tpiIndex
+ INTEGER,
+ tpiTitle
+ OCTET STRING,
+ tpiServiceID
+ OCTET STRING,
+ tpiServicePassword
+ OCTET STRING,
+ tpiRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.24.1.1
+ tpiIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..7)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Third party system index number ranges from 0 to 7."
+ ::= { thirdPartyInfoEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.24.1.2
+ tpiTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Third party system name for identification purpose only."
+ ::= { thirdPartyInfoEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.24.1.3
+ tpiServiceID OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Service ID
+ Remark:Service ID in the third party billing request."
+ ::= { thirdPartyInfoEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.24.1.4
+ tpiServicePassword OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Service Password
+ Remark:Service Password in the third party billing request."
+ ::= { thirdPartyInfoEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.24.1.5
+ tpiRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { thirdPartyInfoEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.25
+ basicTariffZoneTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF BasicTariffZoneEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.25.1
+ basicTariffZoneEntry OBJECT-TYPE
+ SYNTAX BasicTariffZoneEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { btzIndex }
+ ::= { basicTariffZoneTable 1 }
+
+
+ BasicTariffZoneEntry ::=
+ SEQUENCE {
+ btzIndex
+ INTEGER,
+ btzTitle
+ OCTET STRING,
+ btzMCC
+ OCTET STRING,
+ btzMNC
+ OCTET STRING,
+ btzLAC
+ INTEGER,
+ btzCellID
+ INTEGER,
+ btzMOTariffID
+ INTEGER,
+ btzMTTariffID
+ INTEGER,
+ btzRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.25.1.1
+ btzIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Basic tariff zone index number ranges from 0 to 63."
+ ::= { basicTariffZoneEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.25.1.2
+ btzTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Basic tariff zone name for identification purpose only."
+ ::= { basicTariffZoneEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.25.1.3
+ btzMCC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MCC
+ Remark:Mobile Country Code"
+ ::= { basicTariffZoneEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.25.1.4
+ btzMNC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (2..3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MNC
+ Remark:Mobile Network Code"
+ ::= { basicTariffZoneEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.25.1.5
+ btzLAC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:LAC
+ Remark:Location Area Code.
- LAC = 65535: All location areas in the network use the same basic tariff."
+ ::= { basicTariffZoneEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.25.1.6
+ btzCellID OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Cell ID
+ Remark:Global Cell Identity defined in GSM03.03.
- Cell ID = 65535: All cells in the LAC use the same basic tariff."
+ ::= { basicTariffZoneEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.25.1.7
+ btzMOTariffID OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MO Tariff ID
+ Remark:Assign MO Tariff ID to this billing zone."
+ ::= { basicTariffZoneEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.25.1.8
+ btzMTTariffID OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MT Tariff Zone
+ Remark:Assign MT Tariff ID to the billing zone."
+ ::= { basicTariffZoneEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.25.1.9
+ btzRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { basicTariffZoneEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.31
+ radiusGGSNTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RadiusGGSNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 31 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.31.1
+ radiusGGSNEntry OBJECT-TYPE
+ SYNTAX RadiusGGSNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { rgIndex }
+ ::= { radiusGGSNTable 1 }
+
+
+ RadiusGGSNEntry ::=
+ SEQUENCE {
+ rgIndex
+ INTEGER,
+ rgTitle
+ OCTET STRING,
+ rgNasIP
+ IpAddress,
+ rgNASKey
+ OCTET STRING,
+ rgNASPassword
+ OCTET STRING,
+ rgRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.31.1.1
+ rgIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:GGSN index number ranges from 0 to 63."
+ ::= { radiusGGSNEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.31.1.2
+ rgTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:GGSN name for identification purpose only."
+ ::= { radiusGGSNEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.31.1.6
+ rgNasIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NAS IP
+ Remark:Specify IP address to identify the Network Access Server, which can be gateway GPRS support node or MMS Charging Agent (MCA)."
+ ::= { radiusGGSNEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.31.1.7
+ rgNASKey OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NAS Key
+ Remark:Specify the cryptographic key used between PPS and the Network Access Server."
+ ::= { radiusGGSNEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.31.1.8
+ rgNASPassword OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NAS Password
+ Remark:Specify the password used between PPS and the Network Access Server."
+ ::= { radiusGGSNEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.31.1.9
+ rgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { radiusGGSNEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.32
+ radiusSGSNTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RadiusSGSNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 32 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.32.1
+ radiusSGSNEntry OBJECT-TYPE
+ SYNTAX RadiusSGSNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { rsIndex }
+ ::= { radiusSGSNTable 1 }
+
+
+ RadiusSGSNEntry ::=
+ SEQUENCE {
+ rsIndex
+ INTEGER,
+ rsTitle
+ OCTET STRING,
+ rsSgsnIP
+ IpAddress,
+ rsCOSID
+ INTEGER,
+ rsAPNName
+ OCTET STRING,
+ rsTariffID
+ INTEGER,
+ rsRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.32.1.1
+ rsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:SGSN index number ranges from 0 to 63."
+ ::= { radiusSGSNEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.32.1.2
+ rsTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:SGSN name for identification purpose only."
+ ::= { radiusSGSNEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.32.1.3
+ rsSgsnIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SGSN IP
+ Remark:Specify IP address to identify the service GPRS support node."
+ ::= { radiusSGSNEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.32.1.4
+ rsCOSID OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:COS ID
+ Remark:Specify a tariff ID to this SGSN."
+ ::= { radiusSGSNEntry 4 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.32.1.5
+ rsAPNName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:APN Name
+ Remark:APN of the SCSCF"
+ ::= { radiusSGSNEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.32.1.6
+ rsTariffID OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Tariff ID
+ Remark:Specify a tariff ID to this APN."
+ ::= { radiusSGSNEntry 6 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.32.1.7
+ rsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { radiusSGSNEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.33
+ bundlePlanTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF BundlePlanEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 33 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.33.1
+ bundlePlanEntry OBJECT-TYPE
+ SYNTAX BundlePlanEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { bpIndex }
+ ::= { bundlePlanTable 1 }
+
+ BundlePlanEntry ::=
+ SEQUENCE {
+ bpIndex
+ INTEGER,
+ bpTitle
+ OCTET STRING,
+ bpCharge
+ INTEGER,
+ bpData
+ INTEGER,
+ bpMOVoice
+ INTEGER,
+ bpMTVoice
+ INTEGER,
+ bpSMS
+ INTEGER,
+ bpValidity
+ INTEGER,
+ bpApplyFlag
+ INTEGER,
+ bpApplyCode
+ INTEGER,
+ bpRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.33.1.1
+ bpIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:BundlePlan index number ranges from 1 to 15."
+ ::= { bundlePlanEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.33.1.2
+ bpTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:BunlePlan name for identification purpose only."
+ ::= { bundlePlanEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.33.1.3
+ bpCharge OBJECT-TYPE
+ SYNTAX INTEGER (0..100000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Charge
+ Remark:How much to charge for this plan."
+ ::= { bundlePlanEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.33.1.4
+ bpData OBJECT-TYPE
+ SYNTAX INTEGER (0..102400)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Data Volume
+ Remark: Data Volume for this plan."
+ ::= { bundlePlanEntry 4 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.33.1.5
+ bpMOVoice OBJECT-TYPE
+ SYNTAX INTEGER (0..10000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MO Voice Mins
+ Remark:Mo Voice minutes of this plan"
+ ::= { bundlePlanEntry 5 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.33.1.6
+ bpMTVoice OBJECT-TYPE
+ SYNTAX INTEGER (0..10000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MT Voice Mins
+ Remark:MT Voice minutes of this plan"
+ ::= { bundlePlanEntry 6 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.33.1.7
+ bpSMS OBJECT-TYPE
+ SYNTAX INTEGER (0..5000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SMS
+ Remark:MO SMS of this plan"
+ ::= { bundlePlanEntry 7 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.33.1.8
+ bpValidity OBJECT-TYPE
+ SYNTAX INTEGER (0..300)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Validity
+ Remark:Validity of this plan"
+ ::= { bundlePlanEntry 8 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.33.1.9
+ bpApplyFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ mifiPlan(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Apply Flag
+ Remark:The plan is applied or not"
+ ::= { bundlePlanEntry 9 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.33.1.10
+ bpApplyCode OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Apply Code
+ Remark:The code to apply Bundle Plan, 0 means # is used"
+ ::= { bundlePlanEntry 10 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.1.33.1.11
+ bpRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { bundlePlanEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2
+ cOS OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.50
+ cOSTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF COSEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 50 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.50.1
+ cOSEntry OBJECT-TYPE
+ SYNTAX COSEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { cosIndex }
+ ::= { cOSTable 1 }
+
+
+ COSEntry ::=
+ SEQUENCE {
+ cosIndex
+ INTEGER,
+ cosTitle
+ OCTET STRING,
+ cosTariffEntries
+ INTEGER,
+ cosServiceControlEntries
+ INTEGER,
+ cosAccountValidityEntries
+ INTEGER,
+ cosSMSNotificationInquiryEntries
+ INTEGER,
+ cosRechargeCardValidityEntries
+ INTEGER,
+ cosRechargePromotionEntries
+ INTEGER,
+ cosCAPPlanEntries
+ INTEGER,
+ cosPoolAccountEntries
+ INTEGER,
+ cosGprsControlEntries
+ INTEGER,
+ cosRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.50.1.1
+ cosIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:COS index number ranges from 0 to 63."
+ ::= { cOSEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.50.1.2
+ cosTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:COS name for identification purpose only."
+ ::= { cOSEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.50.1.3
+ cosTariffEntries OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cOSEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.50.1.4
+ cosServiceControlEntries OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cOSEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.50.1.5
+ cosAccountValidityEntries OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cOSEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.50.1.6
+ cosSMSNotificationInquiryEntries OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cOSEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.50.1.7
+ cosRechargeCardValidityEntries OBJECT-TYPE
+ SYNTAX INTEGER (4)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOSEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.50.1.8
+ cosRechargePromotionEntries OBJECT-TYPE
+ SYNTAX INTEGER (4)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOSEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.50.1.9
+ cosCAPPlanEntries OBJECT-TYPE
+ SYNTAX INTEGER (2)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOSEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.50.1.10
+ cosPoolAccountEntries OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOSEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.50.1.11
+ cosGprsControlEntries OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOSEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.50.1.12
+ cosRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cOSEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51
+ tariffTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TariffEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 51 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1
+ tariffEntry OBJECT-TYPE
+ SYNTAX TariffEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { tariffIndex, tariffCOSIndex }
+ ::= { tariffTable 1 }
+
+
+ TariffEntry ::=
+ SEQUENCE {
+ tariffCOSIndex
+ INTEGER,
+ tariffIndex
+ INTEGER,
+ tariffTitle
+ OCTET STRING,
+ tariffMOTariffID
+ INTEGER,
+ tariffMTTariffID
+ INTEGER,
+ tariffChargeBy
+ INTEGER,
+ tariffRechargePromotionStartDate
+ OCTET STRING,
+ tariffRechargePromotionEndDate
+ OCTET STRING,
+ tariffCAPPlanResetDay
+ INTEGER,
+ tariffPromotionIddMoCall
+ INTEGER,
+ tariffPromotionNddMoCall
+ INTEGER,
+ tariffPromotionLocalMoCall
+ INTEGER,
+ tariffPromotionIddMoSMS
+ INTEGER,
+ tariffPromotionNddMoSMS
+ INTEGER,
+ tariffPromotionLocalMoSMS
+ INTEGER,
+ tariffPromotionGprs
+ INTEGER,
+ tariffPromotionTransfer
+ INTEGER,
+ tariffPromotionTransferPriority
+ INTEGER,
+ tariffPromotionDebit
+ INTEGER,
+ tariffRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.1
+ tariffCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.2
+ tariffIndex OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { tariffEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.3
+ tariffTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { tariffEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.4
+ tariffMOTariffID OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MO Tariff ID
+ Remark:Select an MO tariff for this COS."
+ ::= { tariffEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.5
+ tariffMTTariffID OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MT Tariff ID
+ Remark:Select an MT tariff for this COS."
+ ::= { tariffEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.6
+ tariffChargeBy OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ tariffSetInSubscriberProfile(0),
+ parameterBasicTariffZone(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Charge By
+ Remark:PPS basic tariff may be applied on either area (parameter Basic tariff zone) or subscriber (Tariff ID in subscriber profile) basis. This parameter defines which one is preference when debiting a subscriber."
+ ::= { tariffEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.7
+ tariffRechargePromotionStartDate OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Start Date
+ Remark:The promotion period is the period of time in which the recharge promotion is valid. Operator defines the promotion period by specifying the start date. Each COS may have its own promotion period. Subscriber recharges his account within the promotion period of his COS will receive a promotion bonus."
+ ::= { tariffEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.8
+ tariffRechargePromotionEndDate OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:End Date
+ Remark:The promotion period is the period of time in which the recharge promotion is valid. Operator defines the promotion period by specifying the end date. Each COS may have its own promotion period. Subscriber recharges his account within the promotion period of his COS will receive a promotion bonus."
+ ::= { tariffEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.9
+ tariffCAPPlanResetDay OBJECT-TYPE
+ SYNTAX INTEGER (1..28)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Reset Date
+ Remark:All PPS subscribers' capped call and GPRS accumulation data will be cleared on the monthly date."
+ ::= { tariffEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.10
+ tariffPromotionIddMoCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:IDD MO Call
+ Remark:Specify whether the promotion bonus can be used to pay for international MO call."
+ ::= { tariffEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.11
+ tariffPromotionNddMoCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NDD MO Call
+ Remark:Specify whether the promotion bonus can be used to pay for national MO call."
+ ::= { tariffEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.12
+ tariffPromotionLocalMoCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Local MO Call
+ Remark:Specify whether the promotion bonus can be used to pay for local MO call."
+ ::= { tariffEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.13
+ tariffPromotionIddMoSMS OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:IDD MO SMS
+ Remark:Specify whether the promotion bonus can be used to pay for international MO short message."
+ ::= { tariffEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.14
+ tariffPromotionNddMoSMS OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NDD MO SMS
+ Remark:Specify whether the promotion bonus can be used to pay for national MO short message."
+ ::= { tariffEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.15
+ tariffPromotionLocalMoSMS OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Local MO SMS
+ Remark:Specify whether the promotion bonus can be used to pay for local MO short message."
+ ::= { tariffEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.16
+ tariffPromotionGprs OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:GPRS
+ Remark:Specify whether the promotion bonus can be used to pay for GPRS applications."
+ ::= { tariffEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.17
+ tariffPromotionTransfer OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Transfer
+ Remark:Specify whether the promotion bonus can be transferred to other accounts."
+ ::= { tariffEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.18
+ tariffPromotionTransferPriority OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ inferiorToBalance(0),
+ superiorToBalance(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Transfer Priority
+ Remark:If the promotion bonus can be transferred to other accounts, specify which has priority between bonus and balance."
+ ::= { tariffEntry 18 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.19
+ tariffPromotionDebit OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Debit
+ Remark:Specify whether the promotion bonus can be used for Debit procedures."
+ ::= { tariffEntry 19 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.51.1.20
+ tariffRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52
+ serviceControlTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ServiceControlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 52 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1
+ serviceControlEntry OBJECT-TYPE
+ SYNTAX ServiceControlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { scIndex, scCOSIndex }
+ ::= { serviceControlTable 1 }
+
+
+ ServiceControlEntry ::=
+ SEQUENCE {
+ scCOSIndex
+ INTEGER,
+ scIndex
+ INTEGER,
+ scTitle
+ OCTET STRING,
+ scMOThresholdSet
+ INTEGER,
+ scMOMinimumBalance
+ INTEGER,
+ scMTChargeFlag
+ INTEGER,
+ scMTBalanceControl
+ INTEGER,
+ scMTBalanceThreshold
+ INTEGER,
+ scCloseUserGroupService
+ INTEGER,
+ scRechargeViaCreditCard
+ INTEGER,
+ scCreditVault
+ INTEGER,
+ scCreditVaultAmount
+ INTEGER,
+ scPoolAccountFlag
+ INTEGER,
+ scPoolAccountChangeChargeFlag
+ INTEGER,
+ scPoolAccountFreeChangeTimes
+ INTEGER,
+ scFreeSmsRelatedCOS
+ INTEGER,
+ scFreeSmsActiveDays
+ INTEGER,
+ scFreeSmsRentType
+ INTEGER,
+ scfCallMeBackThreshold
+ INTEGER,
+ scCallMeBackMaxTimes
+ INTEGER,
+ scMTSMSCharge
+ INTEGER,
+ scBundleDataWarnThreshold
+ INTEGER,
+ scBundleDataWarnThresholdLow
+ INTEGER,
+ scEventChargingFlag
+ INTEGER,
+ scCapBundleControl
+ INTEGER,
+ scBundlePlanControl
+ INTEGER,
+ scRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.1
+ scCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.2
+ scIndex OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceControlEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.3
+ scTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceControlEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.4
+ scMOThresholdSet OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notSet(0),
+ set(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Threshold Flag
+ Remark:Enable or disable minimum balance validation for the MO call."
+ ::= { serviceControlEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.5
+ scMOMinimumBalance OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Minimum Balance
+ Remark:Specify a minimum balance for MO call. The subscriber whose balance is below this threshold cannot make MO call. Unit is the smallest currency unit."
+ ::= { serviceControlEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.6
+ scMTChargeFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notCharge(0),
+ charge(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Charged Flag
+ Remark:Enable or disable MT call charge for prepaid subscriber."
+ ::= { serviceControlEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.7
+ scMTBalanceControl OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ noLimitation(0),
+ thresholdUsed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Balance Control
+ Remark:Enable or disable MT call when balance reaches the following threshold."
+ ::= { serviceControlEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.8
+ scMTBalanceThreshold OBJECT-TYPE
+ SYNTAX INTEGER (-1000000..1000000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Balance Threshold
+ Remark:Set threshold for balance control, can be positive or negative. Unit is the smallest currency unit."
+ ::= { serviceControlEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.9
+ scCloseUserGroupService OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CUG Service Flag
+ Remark:Enable or disable Closed User Group service of this COS."
+ ::= { serviceControlEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.10
+ scRechargeViaCreditCard OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ support(0),
+ unsupport(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Recharge via Credit Card
+ Remark:Enable or disable recharge balance by credit card."
+ ::= { serviceControlEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.11
+ scCreditVault OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Credit Vault
+ Remark:Enable or disable overdraft and define its quota when a COS subscriber makes call with insufficient balance. The system will deduct the overdraft by debiting his account balance at the next recharge."
+ ::= { serviceControlEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.12
+ scCreditVaultAmount OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Credit Vault Amount
+ Remark:The amount of the credit vault. Unit is the minimum currency unit."
+ ::= { serviceControlEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.13
+ scPoolAccountFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Pool Account Flag
+ Remark:Enable or disable the parent and children number service."
+ ::= { serviceControlEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.14
+ scPoolAccountChangeChargeFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notCharge(0),
+ charge(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Charge for Change
+ Remark:Enable or disable charge for changing child number."
+ ::= { serviceControlEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.15
+ scPoolAccountFreeChangeTimes OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free Changes
+ Remark:Define the free change times of child number if charge is enabled."
+ ::= { serviceControlEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.16
+ scFreeSmsRelatedCOS OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Switch COS
+ Remark:Specify the index number of the relevant COS which configured particular rent and SMS tariff. The new COS will take effect when the Free SMS service is activated by customer."
+ ::= { serviceControlEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.17
+ scFreeSmsActiveDays OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Active Days
+ Remark:Specify the period of validity for the activated free SMS service. At the expiration of this service, the COS will be automatically switched back to the customer original COS. Unit is day.
- Set 255 to prolong validity period indefinitely till the customer deactivates it manually."
+ ::= { serviceControlEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.18
+ scFreeSmsRentType OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Rent Type
+ Remark:Specify the Rent ID (1-8) in the relevant MO tariff rent table.
- 0 = Rent Free"
+ ::= { serviceControlEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.19
+ scfCallMeBackThreshold OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Call Me Back Threshold
+ Remark:Subscriber is only allowed to apply call me back service when his remaining balance is less than this value. Unit is minimum currency unit.
- 0 = No limitation"
+ ::= { serviceControlEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.20
+ scCallMeBackMaxTimes OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.21
+ scMTSMSCharge OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MT SMS Charge
+ Remark:Specify charging amount for per prepaid MT SMS. Unit is the smallest currency unit."
+ ::= { serviceControlEntry 21 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.22
+ scBundleDataWarnThreshold OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Bundle Data Warning Threshold
+ Remark:Specify the threshold below which a warning SMS will be sent."
+ ::= { serviceControlEntry 22 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.23
+ scBundleDataWarnThresholdLow OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Bundle Data Warning Threshold Low
+ Remark:Specify the threshold below which a warning SMS will be sent."
+ ::= { serviceControlEntry 23 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.24
+ scEventChargingFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Event Charing Flag
+ Remark:Enable or disable event charge procedure."
+ ::= { serviceControlEntry 24 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.25
+ scCapBundleControl OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ CAP(0),
+ Bundle(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CAP Bundle Control
+ Remark:To enable CAP or Bundle function in this COS."
+ ::= { serviceControlEntry 25 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.26
+ scBundlePlanControl OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ BundlePlan(0),
+ DataPlan(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Bundle Plan Control
+ Remark:To enable Bundle or Data Plan function in this COS."
+ ::= { serviceControlEntry 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.52.1.30
+ scRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 30 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53
+ accountValidityTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF AccountValidityEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 53 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1
+ accountValidityEntry OBJECT-TYPE
+ SYNTAX AccountValidityEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { avIndex, avCOSIndex }
+ ::= { accountValidityTable 1 }
+
+
+ AccountValidityEntry ::=
+ SEQUENCE {
+ avCOSIndex
+ INTEGER,
+ avIndex
+ INTEGER,
+ avTitle
+ OCTET STRING,
+ avMaxAccountValidityDays
+ INTEGER,
+ avActionWhenAccountExpires
+ INTEGER,
+ avDaysKeepingAnExpiredAccount
+ INTEGER,
+ avActionAfterDaysKeepingAnExpiredAccount
+ INTEGER,
+ avActionAfterRecharge
+ INTEGER,
+ avActionAfterBalanceDepleted
+ INTEGER,
+ avValidDaysChangeTo
+ INTEGER,
+ avActivationByInquiryIs
+ INTEGER,
+ avValidDaysActivatedByInquiringAccountWithZeroBalance
+ INTEGER,
+ avExpiredWhen
+ INTEGER,
+ avBundlePlanId
+ INTEGER,
+ avRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.1
+ avCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { accountValidityEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.2
+ avIndex OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { accountValidityEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.3
+ avTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { accountValidityEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.4
+ avMaxAccountValidityDays OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Max Account Validity
+ Remark:Specify the maximum account validity for prepaid subscriber. Unit is day. The account validity can't be extended by recharging once it reaches this threshold."
+ ::= { accountValidityEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.5
+ avActionWhenAccountExpires OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notClearBalance(0),
+ clearBalance(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:When account expires
+ Remark:Enable this option to clear balance off an expired account. The balance can't be reused after cleared."
+ ::= { accountValidityEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.6
+ avDaysKeepingAnExpiredAccount OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Keep expired account for
+ Remark:Number of days to reserve an expired prepaid account in the system. The expired account will be released if the subscriber doesn't recharge it in this period. After released, the MSISDN of the released account can be reused by other subscribers."
+ ::= { accountValidityEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.7
+ avActionAfterDaysKeepingAnExpiredAccount OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notClearBalance(0),
+ clearBalance(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:After that
+ Remark:Enable this option to clear balance off a released account. The balance can't be reused after cleared."
+ ::= { accountValidityEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.8
+ avActionAfterRecharge OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ accumulateValidity(0),
+ replaceValidity(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:After recharge, account validity
+ Remark:Select the period of account validity increment mode after a successful recharge.
- Accumulate = the period of validity will be accumulated to the recharged account.
- Replace = If the validity of the recharged money is more than the current account validity, the account validity will be replaced by the validity of recharged money. If the validity of the recharged money is less than the current account validity, the account validity will not be changed after a successful recharge."
+ ::= { accountValidityEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.9
+ avActionAfterBalanceDepleted OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notChangeAccountValidity(0),
+ changeAccountValidity(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:When balance is depleted, account validity
+ Remark:Enable or disable account validity adjustment when balance reaches zero.
- Change = Change the validity to the preset period.
- Not Change = No change on validity."
+ ::= { accountValidityEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.10
+ avValidDaysChangeTo OBJECT-TYPE
+ SYNTAX INTEGER (0..128)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Change validity to
+ Remark:Preset a validity adjustment period for a zero balance account."
+ ::= { accountValidityEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.11
+ avActivationByInquiryIs OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disabled(0),
+ enabled(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Activation by inquiring
+ Remark:Enable or disable activate a fresh account by dialing the balance inquiring number."
+ ::= { accountValidityEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.12
+ avValidDaysActivatedByInquiringAccountWithZeroBalance OBJECT-TYPE
+ SYNTAX INTEGER (0..1100)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Initial validity of activated account
+ Remark:Define an initial validity for an account who is activated from fresh status by dialing the inquiry number."
+ ::= { accountValidityEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.13
+ avExpiredWhen OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ mo(0),
+ mt(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Expired When
+ Remark:Expired when MO or MT expiration day reaches."
+ ::= { accountValidityEntry 13 }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.14
+ avBundlePlanId OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Bundle Plan Actived
+ Remark:Define the bundle plan when account is activated."
+ ::= { accountValidityEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.53.1.20
+ avRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { accountValidityEntry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54
+ sMSNotificationInquiryTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SMSNotificationInquiryEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 54 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1
+ sMSNotificationInquiryEntry OBJECT-TYPE
+ SYNTAX SMSNotificationInquiryEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { smsIndex, smsCOSIndex }
+ ::= { sMSNotificationInquiryTable 1 }
+
+
+ SMSNotificationInquiryEntry ::=
+ SEQUENCE {
+ smsCOSIndex
+ INTEGER,
+ smsIndex
+ INTEGER,
+ smsTitle
+ OCTET STRING,
+ smsNotificationWhenRecharge
+ INTEGER,
+ smsNotificationWhenInquiry
+ INTEGER,
+ smsNotificationWhenExpired
+ INTEGER,
+ smsTheDaysSendingSMSBeforeExpiredDay
+ INTEGER,
+ smsNotificationWhenBalanceInsufficient
+ INTEGER,
+ smsInsufficientBalanceThreshold
+ INTEGER,
+ smsChargeWhenInquiryBySMS
+ INTEGER,
+ smsFreeInquiryPerDay
+ INTEGER,
+ smsNotificationWhenCleanBalance
+ INTEGER,
+ smsNotificationWhenCapPlanChanged
+ INTEGER,
+ smsNotificationWhenApplyOverdraft
+ INTEGER,
+ smsNotificationWhenRentCharge
+ INTEGER,
+ smsNotificationWhenFFRegistration
+ INTEGER,
+ smsNotificationWhenFFSuspended
+ INTEGER,
+ smsNotificationWhenFFExceedThreshold
+ INTEGER,
+ smsNotificationWhenFFRemoved
+ INTEGER,
+ smsRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.1
+ smsCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSNotificationInquiryEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.2
+ smsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sMSNotificationInquiryEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.3
+ smsTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sMSNotificationInquiryEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.4
+ smsNotificationWhenRecharge OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Successful Recharge
+ Remark:Enable or disable feedback short message of recharge result."
+ ::= { sMSNotificationInquiryEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.5
+ smsNotificationWhenInquiry OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Account Inquiry
+ Remark:Enable or disable feedback short message of balance inquiry."
+ ::= { sMSNotificationInquiryEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.6
+ smsNotificationWhenExpired OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Expiration
+ Remark:Enable or disable notification short message sending when an account is going to expire."
+ ::= { sMSNotificationInquiryEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.7
+ smsTheDaysSendingSMSBeforeExpiredDay OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:before expiration
+ Remark:Define the sending days before account expires."
+ ::= { sMSNotificationInquiryEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.8
+ smsNotificationWhenBalanceInsufficient OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Insufficient Balance
+ Remark:Enable or disable notification short message sending when the account's balance is too low."
+ ::= { sMSNotificationInquiryEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.9
+ smsInsufficientBalanceThreshold OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:When balance reaches
+ Remark:Define the low balance level to send notification short message. Unit is the minimum currency unit."
+ ::= { sMSNotificationInquiryEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.10
+ smsChargeWhenInquiryBySMS OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notCharge(0),
+ charge(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Charge Flag
+ Remark:Enable or disable charge for inquiry short message."
+ ::= { sMSNotificationInquiryEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.11
+ smsFreeInquiryPerDay OBJECT-TYPE
+ SYNTAX INTEGER (0..128)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free Inquiry per Day
+ Remark:Define the quantity of free inquiry short messages on a daily basis if charge flag is enabled."
+ ::= { sMSNotificationInquiryEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.12
+ smsNotificationWhenCleanBalance OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Clear Balance
+ Remark:Enable or disable notification short message sending when the balance is cleared from an expired account."
+ ::= { sMSNotificationInquiryEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.13
+ smsNotificationWhenCapPlanChanged OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CAP Plan Upgrade
+ Remark:Enable or disable notification short message sending when the predefined CAP threshold is about to grade up."
+ ::= { sMSNotificationInquiryEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.14
+ smsNotificationWhenApplyOverdraft OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Overdraw Balance
+ Remark:Enable or disable notification short message sending when the account takes out an overdraft to pay for the charge."
+ ::= { sMSNotificationInquiryEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.15
+ smsNotificationWhenRentCharge OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Rent Charge
+ Remark:Enable or disable notification short message when rent charge is applied."
+ ::= { sMSNotificationInquiryEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.16
+ smsNotificationWhenFFRegistration OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Friends and Family Registration
+ Remark:Enable or disable notification short message when friends and family plan is registered."
+ ::= { sMSNotificationInquiryEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.17
+ smsNotificationWhenFFSuspended OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Friends and Family Suspended
+ Remark:Enable or disable notification short message when friends and family plan is suspended."
+ ::= { sMSNotificationInquiryEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.18
+ smsNotificationWhenFFExceedThreshold OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Friends and Family Exceed Threshold
+ Remark:Enable or disable notification short message when friends and family plan exceed the free voice call duration or free sms threshold."
+ ::= { sMSNotificationInquiryEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.19
+ smsNotificationWhenFFRemoved OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Friends and Family Removed
+ Remark:Enable or disable notification short message when friends and family plan is removed."
+ ::= { sMSNotificationInquiryEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.54.1.20
+ smsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSNotificationInquiryEntry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.55
+ rechargeCardValidityTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RechargeCardValidityEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 55 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.55.1
+ rechargeCardValidityEntry OBJECT-TYPE
+ SYNTAX RechargeCardValidityEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { rcvIndex, rcvCOSIndex }
+ ::= { rechargeCardValidityTable 1 }
+
+
+ RechargeCardValidityEntry ::=
+ SEQUENCE {
+ rcvCOSIndex
+ INTEGER,
+ rcvIndex
+ INTEGER,
+ rcvTitle
+ OCTET STRING,
+ rcvCardCredit
+ INTEGER,
+ rcvMOValidity
+ INTEGER,
+ rcvMTValidity
+ INTEGER,
+ rcvRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.55.1.1
+ rcvCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { rechargeCardValidityEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.55.1.2
+ rcvIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..3)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rechargeCardValidityEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.55.1.3
+ rcvTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rechargeCardValidityEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.55.1.4
+ rcvCardCredit OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Face Value
+ Remark:Recharge card face value. Unit is the basic currency unit."
+ ::= { rechargeCardValidityEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.55.1.5
+ rcvMOValidity OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MO Validity
+ Remark:Account validity. This validity will be added to the account validity after a successful recharge."
+ ::= { rechargeCardValidityEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.55.1.6
+ rcvMTValidity OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MT Validity
+ Remark:Legal MT period. Subscriber can make MT call in this period. Normally the legal MT period is longer than the account validity."
+ ::= { rechargeCardValidityEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.55.1.7
+ rcvRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { rechargeCardValidityEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.56
+ rechargePromotionTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RechargePromotionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 56 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.56.1
+ rechargePromotionEntry OBJECT-TYPE
+ SYNTAX RechargePromotionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { rpIndex, rpCOSIndex }
+ ::= { rechargePromotionTable 1 }
+
+
+ RechargePromotionEntry ::=
+ SEQUENCE {
+ rpCOSIndex
+ INTEGER,
+ rpIndex
+ Integer32,
+ rpTitle
+ OCTET STRING,
+ rpRechargeCardCredit
+ Integer32,
+ rpPromotionBonus
+ Integer32,
+ rpPromotionValidity
+ Integer32,
+ rpRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.56.1.1
+ rpCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { rechargePromotionEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.56.1.2
+ rpIndex OBJECT-TYPE
+ SYNTAX Integer32 (0..3)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rechargePromotionEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.56.1.3
+ rpTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rechargePromotionEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.56.1.4
+ rpRechargeCardCredit OBJECT-TYPE
+ SYNTAX Integer32 (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Face Value
+ Remark:The face value of the chosen recharge card. Unit is the basic currency unit."
+ ::= { rechargePromotionEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.56.1.5
+ rpPromotionBonus OBJECT-TYPE
+ SYNTAX Integer32 (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Promotion Bonus
+ Remark:The amount of the bonus binding with the specific recharge card."
+ ::= { rechargePromotionEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.56.1.6
+ rpPromotionValidity OBJECT-TYPE
+ SYNTAX Integer32 (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Bonus Validity
+ Remark:Specify the period of time that the bonus is valid. Bonus over the validity period will be obsolete and deleted from account."
+ ::= { rechargePromotionEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.56.1.7
+ rpRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { rechargePromotionEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57
+ cAPPlanTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF CAPPlanEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 57 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57.1
+ cAPPlanEntry OBJECT-TYPE
+ SYNTAX CAPPlanEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { cpIndex, cpCOSIndex }
+ ::= { cAPPlanTable 1 }
+
+
+ CAPPlanEntry ::=
+ SEQUENCE {
+ cpCOSIndex
+ INTEGER,
+ cpIndex
+ INTEGER,
+ cpTitle
+ OCTET STRING,
+ cpFlag
+ INTEGER,
+ cpType
+ INTEGER,
+ cpThreshold0
+ INTEGER,
+ cpThreshold1
+ INTEGER,
+ cpThreshold2
+ INTEGER,
+ cpTariffID0
+ INTEGER,
+ cpTariffID1
+ INTEGER,
+ cpTariffID2
+ INTEGER,
+ cpTariffID3
+ INTEGER,
+ cpRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57.1.1
+ cpCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cAPPlanEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57.1.2
+ cpIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cAPPlanEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57.1.3
+ cpTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cAPPlanEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57.1.4
+ cpFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ capCallOnly(1),
+ capSMOnly(2),
+ capSMAndCall(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Flag
+ Remark:Disable or select the cap call function mode for the specified CAP Plan."
+ ::= { cAPPlanEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57.1.5
+ cpType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ capByAmount(0),
+ capByCharge(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Type
+ Remark:There are two types of CAP Call measurements adopted in the market:
- By Amount = Accumulated call duration or accumulated number of SM.
- By Charge = Accumulated call charge or accumulated SM charge."
+ ::= { cAPPlanEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57.1.6
+ cpThreshold0 OBJECT-TYPE
+ SYNTAX INTEGER (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Threshold 1
+ Remark:Define the trigger to activate the tariff for the next CAP segment. Definition in the basic count unit of time or balance."
+ ::= { cAPPlanEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57.1.7
+ cpThreshold1 OBJECT-TYPE
+ SYNTAX INTEGER (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Threshold 2
+ Remark:Define the trigger to activate the tariff for the next CAP segment. Definition in the basic count unit of time or balance."
+ ::= { cAPPlanEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57.1.8
+ cpThreshold2 OBJECT-TYPE
+ SYNTAX INTEGER (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Threshold 3
+ Remark:Define the trigger to activate the tariff for the next CAP segment. Definition in the basic count unit of time or balance."
+ ::= { cAPPlanEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57.1.9
+ cpTariffID0 OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Tariff 0
+ Remark:Specify the tariff ID to the relevant CAP segment."
+ ::= { cAPPlanEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57.1.10
+ cpTariffID1 OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Tariff 1
+ Remark:Specify the tariff ID to the relevant CAP segment."
+ ::= { cAPPlanEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57.1.11
+ cpTariffID2 OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Tariff 2
+ Remark:Specify the tariff ID to the relevant CAP segment."
+ ::= { cAPPlanEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57.1.12
+ cpTariffID3 OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Tariff 3
+ Remark:Specify the tariff ID to the relevant CAP segment."
+ ::= { cAPPlanEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.57.1.13
+ cpRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cAPPlanEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58
+ poolAccountTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PoolAccountEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 58 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58.1
+ poolAccountEntry OBJECT-TYPE
+ SYNTAX PoolAccountEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { paIndex, paCOSIndex }
+ ::= { poolAccountTable 1 }
+
+
+ PoolAccountEntry ::=
+ SEQUENCE {
+ paCOSIndex
+ INTEGER,
+ paIndex
+ INTEGER,
+ paTitle
+ OCTET STRING,
+ paRole
+ INTEGER,
+ paParentChosenCosA
+ INTEGER,
+ paParentChosenCosB
+ INTEGER,
+ paChildAllowSelfRecharge
+ INTEGER,
+ paChildAllowSelfTransfer
+ INTEGER,
+ paChildCreditFrom
+ INTEGER,
+ paChildMaxCallsPerDay
+ INTEGER,
+ paChildMaxSMSPerDay
+ INTEGER,
+ paChildMaxConsumedFee
+ INTEGER,
+ paRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58.1.1
+ paCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { poolAccountEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58.1.2
+ paIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { poolAccountEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58.1.3
+ paTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { poolAccountEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58.1.4
+ paRole OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ normal(0),
+ parent(1),
+ child(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Role
+ Remark:Specify the pool account status and role of this COS.
- Normal = The pool account parameters are inactive in this COS.
- Parent = The parameters for parent are active.
- Child = The parameters for child are active."
+ ::= { poolAccountEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58.1.5
+ paParentChosenCosA OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Parent Chosen COS A
+ Remark:Specify two COS for child accounts with different authority levels when the upper Role is set to Parent. Choose one of the COSs when add child number."
+ ::= { poolAccountEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58.1.6
+ paParentChosenCosB OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Parent Chosen COS B
+ Remark:Specify two COS for child accounts with different authority levels when the upper Role is set to Parent. Choose one of the COSs when add child number."
+ ::= { poolAccountEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58.1.7
+ paChildAllowSelfRecharge OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ no(0),
+ yes(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Child Recharge Flag
+ Remark:Enable or disable the child account charge balance by recharge card."
+ ::= { poolAccountEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58.1.8
+ paChildAllowSelfTransfer OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ no(0),
+ yes(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Child Transfer Flag
+ Remark:Enable or disable the child account transfer balance privately."
+ ::= { poolAccountEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58.1.9
+ paChildCreditFrom OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ autoPeriodicRechargeFromParent(0),
+ parentTransfer(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Child Credit From
+ Remark:Specify the mode that the parent account replenishes child accounts.
- Auto Replenish = Parent account automatically replenishes the child accounts to the Child Max Consumed Credit on a daily basis.
- Manually Transfer = When the credit in the child account reaches the Child Max Consumed Credit, a short message will be sent to notify his parent to transfer credit manually."
+ ::= { poolAccountEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58.1.10
+ paChildMaxCallsPerDay OBJECT-TYPE
+ SYNTAX INTEGER (0..1000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Child Max Calls per Day
+ Remark:Specify the limit of calls that the child account can make on a daily basis."
+ ::= { poolAccountEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58.1.11
+ paChildMaxSMSPerDay OBJECT-TYPE
+ SYNTAX INTEGER (0..1000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Child Max SMS per Day
+ Remark:Specify the limit of short messages that the child account can send on a daily basis."
+ ::= { poolAccountEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58.1.12
+ paChildMaxConsumedFee OBJECT-TYPE
+ SYNTAX INTEGER (0..100000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Child Max Consumption
+ Remark:This parameter is affiliated with the Child Credit From parameter. Unit is the minimum currency unit.
- For Auto Replenish, it is the ceiling credit.
- For Manually Transfer, it is the lower credit limit to trigger notification short message."
+ ::= { poolAccountEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.58.1.13
+ paRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { poolAccountEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59
+ gprsControlTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF GprsControlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 59 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1
+ gprsControlEntry OBJECT-TYPE
+ SYNTAX GprsControlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { gcIndex, gcCOSIndex }
+ ::= { gprsControlTable 1 }
+
+
+ GprsControlEntry ::=
+ SEQUENCE {
+ gcCOSIndex
+ INTEGER,
+ gcIndex
+ INTEGER,
+ gcTitle
+ OCTET STRING,
+ gcGprsChargeStatus
+ INTEGER,
+ gcMiniBalanceForGprs
+ INTEGER,
+ gcInactiveSessionLimit
+ INTEGER,
+ gcGprsNotificationWhenTerminate
+ INTEGER,
+ gcMaxSmsForGprsNotificationPerDay
+ INTEGER,
+ gcMaxVolumeQuotaEachTime
+ INTEGER,
+ gcVolumeThresholdDiff
+ INTEGER,
+ gcMaxDurationQuotaEachTime
+ INTEGER,
+ gcDurationThresholdDiff
+ INTEGER,
+ gcChargeBy
+ INTEGER,
+ gcGprsCapPlanType
+ INTEGER,
+ gcGprsCapPlanThreshold0
+ INTEGER,
+ gcGprsCapPlanThreshold1
+ INTEGER,
+ gcGprsCapPlanThreshold2
+ INTEGER,
+ gcGprsCapPlanTariffID0
+ INTEGER,
+ gcGprsCapPlanTariffID1
+ INTEGER,
+ gcGprsCapPlanTariffID2
+ INTEGER,
+ gcGprsCapPlanTariffID3
+ INTEGER,
+ gcRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.1
+ gcCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gprsControlEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.2
+ gcIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gprsControlEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.3
+ gcTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gprsControlEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.4
+ gcGprsChargeStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Charge Flag
+ Remark:Enable or disable charge for GPRS service."
+ ::= { gprsControlEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.5
+ gcMiniBalanceForGprs OBJECT-TYPE
+ SYNTAX INTEGER (0..100000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Minimum Balance
+ Remark:Specify a minimum balance for GPRS service. The subscriber whose balance is below this threshold can't apply GPRS service. Unit is the minimum currency unit.
- 0 means no balance limitation."
+ ::= { gprsControlEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.6
+ gcInactiveSessionLimit OBJECT-TYPE
+ SYNTAX INTEGER (0..36000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Inactive Session Limit
+ Remark:Specify a timer to avoid seizing GPRS link in inactivity state for a long time. When the timer reaches 0, the system will disconnect the GPRS session.
- 0 means no limitation."
+ ::= { gprsControlEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.7
+ gcGprsNotificationWhenTerminate OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Notification SMS Flag
+ Remark:Enable or disable send notification SMS after a GPRS session to inform user the data amount and charge."
+ ::= { gprsControlEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.8
+ gcMaxSmsForGprsNotificationPerDay OBJECT-TYPE
+ SYNTAX INTEGER (0..1000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Max Notification SMS per Day
+ Remark:Set the maximum number of GPRS notification SMS allowed per day.
- Range = 0 - 1000"
+ ::= { gprsControlEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.9
+ gcMaxVolumeQuotaEachTime OBJECT-TYPE
+ SYNTAX INTEGER (1..1024000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Max Volume Quota Each Time
+ Remark:Specify data quota allocation for GPRS session per each GGSN request.
- Range = 1 - 1024000 KB"
+ ::= { gprsControlEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.10
+ gcVolumeThresholdDiff OBJECT-TYPE
+ SYNTAX INTEGER (1..102400)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Volume Threshold Diff
+ Remark:This parameter is associated with the upper Volume Quota parameter. When the remaining data amount reaches to this value, the GGSN will initiate a new request to ask for another data quota allocation.
- Range = 1 - 102400 KB"
+ ::= { gprsControlEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.11
+ gcMaxDurationQuotaEachTime OBJECT-TYPE
+ SYNTAX INTEGER (60..6000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gprsControlEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.12
+ gcDurationThresholdDiff OBJECT-TYPE
+ SYNTAX INTEGER (30..90)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gprsControlEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.13
+ gcChargeBy OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ cosDefined(0),
+ sgsnLocation(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Charge By
+ Remark:Specify the way to charge GPRS service.
- By COS = Charge by the tariff set in this COS.
- By SGSN Location = Charge by the tariff set in the RADIUS SGSN table."
+ ::= { gprsControlEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.14
+ gcGprsCapPlanType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ volume(0),
+ chargedFee(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Type
+ Remark:There are two types of CAP GPRS measurements adopted in the market:
- By volume = Accumulated data amount (KB)
- By charge = Accumulated service charge."
+ ::= { gprsControlEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.15
+ gcGprsCapPlanThreshold0 OBJECT-TYPE
+ SYNTAX INTEGER (0..1073741824)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Threshold 1
+ Remark:Define the CAP trigger point to activate the new tariff of the next CAP segment.
The CAP counting unit is in data amount (KB) if the tariff charging unit is volume and the CAP counting unit is minimum currency unit if the charge type is charge."
+ ::= { gprsControlEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.16
+ gcGprsCapPlanThreshold1 OBJECT-TYPE
+ SYNTAX INTEGER (0..1073741824)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Threshold 2
+ Remark:Define the CAP trigger point to activate the new tariff of the next CAP segment."
+ ::= { gprsControlEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.17
+ gcGprsCapPlanThreshold2 OBJECT-TYPE
+ SYNTAX INTEGER (0..1073741824)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Threshold 3
+ Remark:Define the CAP trigger point to activate the new tariff of the next CAP segment."
+ ::= { gprsControlEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.18
+ gcGprsCapPlanTariffID0 OBJECT-TYPE
+ SYNTAX INTEGER (0..64)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Tariff 0
+ Remark:Specify the tariff ID to the CAP segment."
+ ::= { gprsControlEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.19
+ gcGprsCapPlanTariffID1 OBJECT-TYPE
+ SYNTAX INTEGER (0..64)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Tariff 1
+ Remark:Specify the tariff ID to the CAP segment."
+ ::= { gprsControlEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.20
+ gcGprsCapPlanTariffID2 OBJECT-TYPE
+ SYNTAX INTEGER (0..64)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Tariff 2
+ Remark:Specify the tariff ID to the CAP segment."
+ ::= { gprsControlEntry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.21
+ gcGprsCapPlanTariffID3 OBJECT-TYPE
+ SYNTAX INTEGER (0..64)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Tariff 3
+ Remark:Specify the tariff ID to the CAP segment."
+ ::= { gprsControlEntry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.59.1.22
+ gcRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gprsControlEntry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60
+ friendAndFamilyControlTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF FriendAndFamilyControlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 60 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1
+ friendAndFamilyControlEntry OBJECT-TYPE
+ SYNTAX FriendAndFamilyControlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { ffCOSIndex, ffIndex }
+ ::= { friendAndFamilyControlTable 1 }
+
+
+ FriendAndFamilyControlEntry ::=
+ SEQUENCE {
+ ffCOSIndex
+ INTEGER,
+ ffIndex
+ INTEGER,
+ ffTitle
+ OCTET STRING,
+ ffFlag
+ INTEGER,
+ ffChangeChargeFlag
+ INTEGER,
+ ffFreeChangeTimes
+ INTEGER,
+ ffNumberTypeLocal
+ INTEGER,
+ ffNumberTypeNDD
+ INTEGER,
+ ffNumberTypeIDD
+ INTEGER,
+ ffBalanceThresholdForFriendFamilyCall
+ INTEGER,
+ ffKeepOrRemoveFriendFamilyNumber
+ INTEGER,
+ ffBalanceThresholdToKeepFriendFamilyNumber
+ INTEGER,
+ ff0RentCharge
+ INTEGER,
+ ff0MaxNumbers
+ INTEGER,
+ ff0FreeCallDuration
+ INTEGER,
+ ff0FreeSMS
+ INTEGER,
+ ff0RentID
+ INTEGER,
+ ff1RentCharge
+ INTEGER,
+ ff1MaxNumbers
+ INTEGER,
+ ff1FreeCallDuration
+ INTEGER,
+ ff1FreeSMS
+ INTEGER,
+ ff1RentID
+ INTEGER,
+ ff2RentCharge
+ INTEGER,
+ ff2MaxNumbers
+ INTEGER,
+ ff2FreeCallDuration
+ INTEGER,
+ ff2FreeSMS
+ INTEGER,
+ ff2RentID
+ INTEGER,
+ ff3RentCharge
+ INTEGER,
+ ff3MaxNumbers
+ INTEGER,
+ ff3FreeCallDuration
+ INTEGER,
+ ff3FreeSMS
+ INTEGER,
+ ff3RentID
+ INTEGER,
+ ff4RentCharge
+ INTEGER,
+ ff4MaxNumbers
+ INTEGER,
+ ff4FreeCallDuration
+ INTEGER,
+ ff4FreeSMS
+ INTEGER,
+ ff4RentID
+ INTEGER,
+ ff5RentCharge
+ INTEGER,
+ ff5MaxNumbers
+ INTEGER,
+ ff5FreeCallDuration
+ INTEGER,
+ ff5FreeSMS
+ INTEGER,
+ ff5RentID
+ INTEGER,
+ fAndFRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.1
+ ffCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { friendAndFamilyControlEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.2
+ ffIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { friendAndFamilyControlEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.3
+ ffTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { friendAndFamilyControlEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.4
+ ffFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Flag
+ Remark:Enable or disable friends and family service."
+ ::= { friendAndFamilyControlEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.5
+ ffChangeChargeFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Charge for Change
+ Remark:Enable or disable charge for changing friends and family number."
+ ::= { friendAndFamilyControlEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.6
+ ffFreeChangeTimes OBJECT-TYPE
+ SYNTAX INTEGER (0..36000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free Changes
+ Remark:Define the free change times of changing friends and family numbers."
+ ::= { friendAndFamilyControlEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.7
+ ffNumberTypeLocal OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Local Number
+ Remark:Enable or disable friends and family number to be local number."
+ ::= { friendAndFamilyControlEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.8
+ ffNumberTypeNDD OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NDD Number
+ Remark:Enable or disable the friends and family number to be NDD number."
+ ::= { friendAndFamilyControlEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.9
+ ffNumberTypeIDD OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:IDD Number
+ Remark:Enable or disable the friends and family number to be IDD number."
+ ::= { friendAndFamilyControlEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.10
+ ffBalanceThresholdForFriendFamilyCall OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Balance Threshold to Call FF Number
+ Remark:Balance threshold to allow calls to friends and family number."
+ ::= { friendAndFamilyControlEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.11
+ ffKeepOrRemoveFriendFamilyNumber OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ remove(0),
+ keep(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Keep or Remove FF Number
+ Remark:Keep or remove friends and family number to next month."
+ ::= { friendAndFamilyControlEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.12
+ ffBalanceThresholdToKeepFriendFamilyNumber OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Balance Threshold to Keep FF Number
+ Remark:Balance threshold to carry its friends and family number to next month."
+ ::= { friendAndFamilyControlEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.13
+ ff0RentCharge OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Type Name:Registration Fee
+ Remark:Registration fee for the first month of friends and family plan activation."
+ ::= { friendAndFamilyControlEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.14
+ ff0MaxNumbers OBJECT-TYPE
+ SYNTAX INTEGER (0..5)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Numbers
+ Remark:Maximum friends and family members per subscriber."
+ ::= { friendAndFamilyControlEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.15
+ ff0FreeCallDuration OBJECT-TYPE
+ SYNTAX INTEGER (0..20000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free Call Duration
+ Remark:Free call duration of calling for friends and family members."
+ ::= { friendAndFamilyControlEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.16
+ ff0FreeSMS OBJECT-TYPE
+ SYNTAX INTEGER (0..60000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free SMS
+ Remark:Free SMS of calling for friends and family members."
+ ::= { friendAndFamilyControlEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.17
+ ff0RentID OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Rent ID
+ Remark:The rent ID for friends and family plan registration fee."
+ ::= { friendAndFamilyControlEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.18
+ ff1RentCharge OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Type Name:Registration Fee
+ Remark:Registration fee for the first month of friends and family plan activation."
+ ::= { friendAndFamilyControlEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.19
+ ff1MaxNumbers OBJECT-TYPE
+ SYNTAX INTEGER (0..5)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Numbers
+ Remark:Maximum friends and family members per subscriber."
+ ::= { friendAndFamilyControlEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.20
+ ff1FreeCallDuration OBJECT-TYPE
+ SYNTAX INTEGER (0..20000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free Call Duration
+ Remark:Free call duration of calling for friends and family members."
+ ::= { friendAndFamilyControlEntry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.21
+ ff1FreeSMS OBJECT-TYPE
+ SYNTAX INTEGER (0..60000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free SMS
+ Remark:Free SMS of calling for friends and family members."
+ ::= { friendAndFamilyControlEntry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.22
+ ff1RentID OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Rent ID
+ Remark:The rent ID for friends and family plan registration fee."
+ ::= { friendAndFamilyControlEntry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.23
+ ff2RentCharge OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Type Name:Registration Fee
+ Remark:Registration fee for the first month of friends and family plan activation."
+ ::= { friendAndFamilyControlEntry 23 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.24
+ ff2MaxNumbers OBJECT-TYPE
+ SYNTAX INTEGER (0..5)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Numbers
+ Remark:Maximum friends and family members per subscriber."
+ ::= { friendAndFamilyControlEntry 24 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.25
+ ff2FreeCallDuration OBJECT-TYPE
+ SYNTAX INTEGER (0..20000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free Call Duration
+ Remark:Free call duration of calling for friends and family members."
+ ::= { friendAndFamilyControlEntry 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.26
+ ff2FreeSMS OBJECT-TYPE
+ SYNTAX INTEGER (0..60000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free SMS
+ Remark:Free SMS of calling for friends and family members."
+ ::= { friendAndFamilyControlEntry 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.27
+ ff2RentID OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Rent ID
+ Remark:The rent ID for friends and family plan registration fee."
+ ::= { friendAndFamilyControlEntry 27 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.28
+ ff3RentCharge OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Type Name:Registration Fee
+ Remark:Registration fee for the first month of friends and family plan activation."
+ ::= { friendAndFamilyControlEntry 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.29
+ ff3MaxNumbers OBJECT-TYPE
+ SYNTAX INTEGER (0..5)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Numbers
+ Remark:Maximum friends and family members per subscriber."
+ ::= { friendAndFamilyControlEntry 29 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.30
+ ff3FreeCallDuration OBJECT-TYPE
+ SYNTAX INTEGER (0..20000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free Call Duration
+ Remark:Free call duration of calling for friends and family members."
+ ::= { friendAndFamilyControlEntry 30 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.31
+ ff3FreeSMS OBJECT-TYPE
+ SYNTAX INTEGER (0..60000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free SMS
+ Remark:Free SMS of calling for friends and family members."
+ ::= { friendAndFamilyControlEntry 31 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.32
+ ff3RentID OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Rent ID
+ Remark:The rent ID for friends and family plan registration fee."
+ ::= { friendAndFamilyControlEntry 32 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.33
+ ff4RentCharge OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Type Name:Registration Fee
+ Remark:Registration fee for the first month of friends and family plan activation."
+ ::= { friendAndFamilyControlEntry 33 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.34
+ ff4MaxNumbers OBJECT-TYPE
+ SYNTAX INTEGER (0..5)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Numbers
+ Remark:Maximum friends and family members per subscriber."
+ ::= { friendAndFamilyControlEntry 34 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.35
+ ff4FreeCallDuration OBJECT-TYPE
+ SYNTAX INTEGER (0..20000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free Call Duration
+ Remark:Free call duration of calling for friends and family members."
+ ::= { friendAndFamilyControlEntry 35 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.36
+ ff4FreeSMS OBJECT-TYPE
+ SYNTAX INTEGER (0..60000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free SMS
+ Remark:Free SMS of calling for friends and family members."
+ ::= { friendAndFamilyControlEntry 36 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.37
+ ff4RentID OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Rent ID
+ Remark:The rent ID for friends and family plan registration fee."
+ ::= { friendAndFamilyControlEntry 37 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.38
+ ff5RentCharge OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Type Name:Registration Fee
+ Remark:Registration fee for the first month of friends and family plan activation."
+ ::= { friendAndFamilyControlEntry 38 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.39
+ ff5MaxNumbers OBJECT-TYPE
+ SYNTAX INTEGER (0..5)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Numbers
+ Remark:Maximum friends and family members per subscriber."
+ ::= { friendAndFamilyControlEntry 39 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.40
+ ff5FreeCallDuration OBJECT-TYPE
+ SYNTAX INTEGER (0..20000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free Call Duration
+ Remark:Free call duration of calling for friends and family members."
+ ::= { friendAndFamilyControlEntry 40 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.41
+ ff5FreeSMS OBJECT-TYPE
+ SYNTAX INTEGER (0..60000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Free SMS
+ Remark:Free SMS of calling for friends and family members."
+ ::= { friendAndFamilyControlEntry 41 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.42
+ ff5RentID OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Rent ID
+ Remark:The rent ID for friends and family plan registration fee."
+ ::= { friendAndFamilyControlEntry 42 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.2.60.1.43
+ fAndFRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { friendAndFamilyControlEntry 43 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3
+ srfParameters OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.26
+ iVRSourceTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF IVRSourceEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { srfParameters 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.26.1
+ iVRSourceEntry OBJECT-TYPE
+ SYNTAX IVRSourceEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { ivrIndex }
+ ::= { iVRSourceTable 1 }
+
+
+ IVRSourceEntry ::=
+ SEQUENCE {
+ ivrIndex
+ INTEGER,
+ ivrTitle
+ OCTET STRING,
+ ivrInquiry
+ INTEGER,
+ ivrRecharge
+ INTEGER,
+ ivrRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.26.1.1
+ ivrIndex OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { iVRSourceEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.26.1.2
+ ivrTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { iVRSourceEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.26.1.3
+ ivrInquiry OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ localSRF(0),
+ externalIVR(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Inquiry
+ Remark:Specify the Interactive Voice Response source for inquiry prompt."
+ ::= { iVRSourceEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.26.1.4
+ ivrRecharge OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ localSRF(0),
+ externalIVR(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Recharge
+ Remark:Specify the Interactive Voice Response source for recharge prompt."
+ ::= { iVRSourceEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.26.1.5
+ ivrRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { iVRSourceEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.27
+ sRFNumberTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SRFNumberEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { srfParameters 27 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.27.1
+ sRFNumberEntry OBJECT-TYPE
+ SYNTAX SRFNumberEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { srfIndex }
+ ::= { sRFNumberTable 1 }
+
+
+ SRFNumberEntry ::=
+ SEQUENCE {
+ srfIndex
+ INTEGER,
+ srfTitle
+ OCTET STRING,
+ srfNumber
+ OCTET STRING,
+ srfRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.27.1.1
+ srfIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sRFNumberEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.27.1.2
+ srfTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sRFNumberEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.27.1.3
+ srfNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:E.164 Number
+ Remark:The E.164 node address of the specific SRF."
+ ::= { sRFNumberEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.27.1.4
+ srfRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sRFNumberEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.28
+ serviceNumberTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ServiceNumberEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { srfParameters 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.28.1
+ serviceNumberEntry OBJECT-TYPE
+ SYNTAX ServiceNumberEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { snIndex }
+ ::= { serviceNumberTable 1 }
+
+
+ ServiceNumberEntry ::=
+ SEQUENCE {
+ snIndex
+ INTEGER,
+ snTitle
+ OCTET STRING,
+ snServiceNumber
+ OCTET STRING,
+ snRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.28.1.1
+ snIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceNumberEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.28.1.2
+ snTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceNumberEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.28.1.3
+ snServiceNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Service Number
+ Remark:Define dedicated shortcut number for specific operation."
+ ::= { serviceNumberEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.28.1.4
+ snRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceNumberEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.29
+ serviceKeyTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ServiceKeyEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { srfParameters 29 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.29.1
+ serviceKeyEntry OBJECT-TYPE
+ SYNTAX ServiceKeyEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { skIndex }
+ ::= { serviceKeyTable 1 }
+
+
+ ServiceKeyEntry ::=
+ SEQUENCE {
+ skIndex
+ INTEGER,
+ skTitle
+ OCTET STRING,
+ skServiceKey
+ INTEGER,
+ skRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.29.1.1
+ skIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..6)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceKeyEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.29.1.2
+ skTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceKeyEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.29.1.3
+ skServiceKey OBJECT-TYPE
+ SYNTAX INTEGER (0..12)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Service Key
+ Remark:Define dedicated hot key for specific operation."
+ ::= { serviceKeyEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.29.1.4
+ skRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceKeyEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.61
+ ussdServiceNumberTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF UssdServiceNumberEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { srfParameters 61 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.61.1
+ ussdServiceNumberEntry OBJECT-TYPE
+ SYNTAX UssdServiceNumberEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:USSD Service Number"
+ INDEX { ussdsnIndex }
+ ::= { ussdServiceNumberTable 1 }
+
+
+ UssdServiceNumberEntry ::=
+ SEQUENCE {
+ ussdsnIndex
+ INTEGER,
+ ussdsnTitle
+ OCTET STRING,
+ ussdsnServiceNumber
+ OCTET STRING,
+ ussdsnRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.61.1.1
+ ussdsnIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { ussdServiceNumberEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.61.1.2
+ ussdsnTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { ussdServiceNumberEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.61.1.3
+ ussdsnServiceNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Service Number
+ Remark:Define dedicated shortcut number for specific operation."
+ ::= { ussdServiceNumberEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.61.1.4
+ ussdsnRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { ussdServiceNumberEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.62
+ ussdServiceKeyTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF UssdServiceKeyEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { srfParameters 62 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.62.1
+ ussdServiceKeyEntry OBJECT-TYPE
+ SYNTAX UssdServiceKeyEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:USSD Service Key"
+ INDEX { ussdskIndex }
+ ::= { ussdServiceKeyTable 1 }
+
+
+ UssdServiceKeyEntry ::=
+ SEQUENCE {
+ ussdskIndex
+ INTEGER,
+ ussdskTitle
+ OCTET STRING,
+ ussdskServiceKey
+ INTEGER,
+ ussdskRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.62.1.1
+ ussdskIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..7)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { ussdServiceKeyEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.62.1.2
+ ussdskTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { ussdServiceKeyEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.62.1.3
+ ussdskServiceKey OBJECT-TYPE
+ SYNTAX INTEGER (0..12)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Service Key
+ Remark:Define dedicated hot key for specific operation."
+ ::= { ussdServiceKeyEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.3.62.1.4
+ ussdskRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { ussdServiceKeyEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4
+ callRouteToVMS OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.1
+ pLMNServiceNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Service Number
+ Remark:Subscriber dials this service number by handset to enter and maintain his mailbox or leave message to other subscribers."
+ ::= { callRouteToVMS 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.2
+ pSTNServiceNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Service Number (PSTN)
+ Remark:Subscriber dials this service number from PSTN to enter and maintain his mailbox or leave message to other subscribers following the system prompt."
+ ::= { callRouteToVMS 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.3
+ vMSLeaveMessageNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Leave Message Number
+ Remark:Dedicated service number for leaving message. User uses either handset or PSTN telephone to call this number to leave message to system subscribers."
+ ::= { callRouteToVMS 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.4
+ routeMethodOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ byPrefix(0),
+ byWholeNumber(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Route Method
+ Remark:Define the routing type for the above VMS service number."
+ ::= { callRouteToVMS 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.5
+ routeNumberOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ callerNumber(0),
+ calledNumber(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Route Number
+ Remark:Define which number to route for the following VMS User Segments."
+ ::= { callRouteToVMS 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.6
+ isPostpaidAllowed OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Postpaid Flag
+ Remark:Enable or disable voice mail service for postpaid subscribers."
+ ::= { callRouteToVMS 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.7
+ ringBackServiceKey OBJECT-TYPE
+ SYNTAX INTEGER (0..12)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Ringback Service Key
+ Remark:Define a dedicated hot key to ring back the caller."
+ ::= { callRouteToVMS 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.30
+ vMSUserSegmentsTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF VMSUserSegmentsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { callRouteToVMS 30 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.30.1
+ vMSUserSegmentsEntry OBJECT-TYPE
+ SYNTAX VMSUserSegmentsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { vusIndex }
+ ::= { vMSUserSegmentsTable 1 }
+
+
+ VMSUserSegmentsEntry ::=
+ SEQUENCE {
+ vusIndex
+ INTEGER,
+ vusTitle
+ OCTET STRING,
+ vusStartMSISDN
+ OCTET STRING,
+ vusEndMSISDN
+ OCTET STRING,
+ vusPLMNServiceNumber
+ OCTET STRING,
+ vusPSTNServiceNumber
+ OCTET STRING,
+ vusLeaveMessageDepositNumber
+ OCTET STRING,
+ vusRowStatus
+ Integer32
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.30.1.1
+ vusIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { vMSUserSegmentsEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.30.1.2
+ vusTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { vMSUserSegmentsEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.30.1.3
+ vusStartMSISDN OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MSISDN Start
+ Remark:The beginning of the MSISDN range."
+ ::= { vMSUserSegmentsEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.30.1.4
+ vusEndMSISDN OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MSISDN End
+ Remark:The end of the MSISDN range."
+ ::= { vMSUserSegmentsEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.30.1.5
+ vusPLMNServiceNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Service Number
+ Remark:Specify internal service numbers to route the caller to host VMS."
+ ::= { vMSUserSegmentsEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.30.1.6
+ vusPSTNServiceNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Service Number (PSTN)
+ Remark:Specify internal service numbers to route the caller to host VMS."
+ ::= { vMSUserSegmentsEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.30.1.7
+ vusLeaveMessageDepositNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Leave Message Number
+ Remark:Specify internal service numbers to route the caller to host VMS."
+ ::= { vMSUserSegmentsEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.4.30.1.8
+ vusRowStatus OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { vMSUserSegmentsEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.5
+ fileOperation OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.5.1
+ importSubs OBJECT-TYPE
+ SYNTAX Opaque (SIZE (7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes
+ OPAQUE DECODE RULE:
+ [unit]Progress Report[u]00.0-00.7[u]select
+ [v]0[opt]Idle
+ [v]1[opt]Requesting
+ [v]2[opt]Processing
+ [v]3[opt]Succeeded
+ [v]4[opt]Failed
+ [unit]Total Subscribers[u]01.0-03.7[u]input
+ [v]toDec-high-0
+ [unit]Imported Subscribers[u]04.0-06.7[u]input
+ [v]toDec-high-0"
+ ::= { fileOperation 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.5.2
+ importRechangeCard OBJECT-TYPE
+ SYNTAX Opaque (SIZE (7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes
+ OPAQUE DECODE RULE:
+ [unit]Progress Report[u]00.0-00.7[u]select
+ [v]0[opt]Idle
+ [v]1[opt]Requesting
+ [v]2[opt]Processing
+ [v]3[opt]Succeeded
+ [v]4[opt]Failed
+ [unit]Total Cards[u]01.0-03.7[u]input
+ [v]toDec-high-0
+ [unit]Imported Cards[u]04.0-06.7[u]input
+ [v]toDec-high-0"
+ ::= { fileOperation 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.5.3
+ newTariffFlag OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes"
+ ::= { fileOperation 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.5.4
+ newTariffStarTime OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (14))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes"
+ ::= { fileOperation 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.2.5.5
+ saveCommand OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ saveUserData(1),
+ saveTariff(2),
+ saveRechargeCard(3),
+ saveAll(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { fileOperation 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.3
+ csta OBJECT IDENTIFIER ::= { pps 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.4
+ cdr OBJECT IDENTIFIER ::= { pps 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.4.1
+ cdrHeadOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.4.2
+ cdrTailOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.6.4.3
+ cdrDataOid OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 3 }
+
+
+
+ END
+
+--
+-- LGC-SS-PPS-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-RCM-MIB.my b/omc/bin/mib/LGC-SS-RCM-MIB.my
new file mode 100644
index 0000000..8aef33e
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-RCM-MIB.my
@@ -0,0 +1,3779 @@
+--
+-- LGC-SS-RCM-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Friday, July 02, 2010 at 17:28:59
+--
+
+ LGC-SS-RCM-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString16, RowStatus, DisplayString
+ FROM LGC-MIB
+ IpAddress, Opaque, Integer32, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26
+ rcm MODULE-IDENTITY
+ LAST-UPDATED "200811241438Z" -- November 24, 2008 at 14:38 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ ::= { application 26 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { rcm 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2
+ parameter OBJECT IDENTIFIER ::= { rcm 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1
+ serviceControl OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.1
+ license OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.2
+ cDRFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.3
+ blackListThreshold OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.4
+ maxBalance OBJECT-TYPE
+ SYNTAX INTEGER (0..1000000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.5
+ currencySymbol OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.6
+ cOSOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ group64(0),
+ group4(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.7
+ mNPChargeFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.8
+ oprAccountValidity OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:OPR initial validity days."
+ ::= { serviceControl 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.9
+ language0SMEncodeType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bits7(0),
+ bits8(1),
+ unicode(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.10
+ language1SMEncodeType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bits7(0),
+ bits8(1),
+ unicode(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.11
+ language2SMEncodeType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bits7(0),
+ bits8(1),
+ unicode(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.12
+ language3SMEncodeType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bits7(0),
+ bits8(1),
+ unicode(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.13
+ language4SMEncodeType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bits7(0),
+ bits8(1),
+ unicode(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.20
+ promptResolutionTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PromptResolutionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.20.1
+ promptResolutionEntry OBJECT-TYPE
+ SYNTAX PromptResolutionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { prIndex }
+ ::= { promptResolutionTable 1 }
+
+
+ PromptResolutionEntry ::=
+ SEQUENCE {
+ prIndex
+ INTEGER,
+ prTitle
+ OCTET STRING,
+ prCurrencyResolution
+ INTEGER,
+ prDateFormat
+ INTEGER,
+ prCurrencySymbolPosition
+ INTEGER,
+ prRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.20.1.1
+ prIndex OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { promptResolutionEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.20.1.2
+ prTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { promptResolutionEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.20.1.3
+ prCurrencyResolution OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ n1(0),
+ n10(1),
+ n100(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { promptResolutionEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.20.1.4
+ prDateFormat OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ yyyymmdd(0),
+ ddmmyyyy(1),
+ mmddyyyy(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { promptResolutionEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.20.1.5
+ prCurrencySymbolPosition OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ front(0),
+ rear(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { promptResolutionEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.20.1.6
+ prRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { promptResolutionEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.21
+ mNPPrefixesTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MNPPrefixesEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.21.1
+ mNPPrefixesEntry OBJECT-TYPE
+ SYNTAX MNPPrefixesEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { mnpIndex }
+ ::= { mNPPrefixesTable 1 }
+
+
+ MNPPrefixesEntry ::=
+ SEQUENCE {
+ mnpIndex
+ INTEGER,
+ mnpTitle
+ OCTET STRING,
+ mnpPrefix
+ OCTET STRING,
+ mnpRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.21.1.1
+ mnpIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mNPPrefixesEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.21.1.2
+ mnpTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mNPPrefixesEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.21.1.3
+ mnpPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mNPPrefixesEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.21.1.4
+ mnpRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mNPPrefixesEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.22
+ sMSSentenceTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SMSSentenceEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.22.1
+ sMSSentenceEntry OBJECT-TYPE
+ SYNTAX SMSSentenceEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { ssIndex }
+ ::= { sMSSentenceTable 1 }
+
+
+ SMSSentenceEntry ::=
+ SEQUENCE {
+ ssIndex
+ INTEGER,
+ ssTitle
+ OCTET STRING,
+ ssEnglish
+ OCTET STRING,
+ ssLanguage0Content
+ OCTET STRING,
+ ssLanguage1Content
+ OCTET STRING,
+ ssLanguage2Content
+ OCTET STRING,
+ ssLanguage3Content
+ OCTET STRING,
+ ssLanguage4Content
+ OCTET STRING,
+ ssRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.22.1.1
+ ssIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..4)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sMSSentenceEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.22.1.2
+ ssTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sMSSentenceEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.22.1.3
+ ssEnglish OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sMSSentenceEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.22.1.4
+ ssLanguage0Content OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSSentenceEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.22.1.5
+ ssLanguage1Content OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSSentenceEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.22.1.6
+ ssLanguage2Content OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSSentenceEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.22.1.7
+ ssLanguage3Content OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSSentenceEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.22.1.8
+ ssLanguage4Content OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..127))
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSSentenceEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.22.1.9
+ ssRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sMSSentenceEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.24
+ thirdPartyInfoTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ThirdPartyInfoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 24 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.24.1
+ thirdPartyInfoEntry OBJECT-TYPE
+ SYNTAX ThirdPartyInfoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { tpiIndex }
+ ::= { thirdPartyInfoTable 1 }
+
+
+ ThirdPartyInfoEntry ::=
+ SEQUENCE {
+ tpiIndex
+ INTEGER,
+ tpiTitle
+ OCTET STRING,
+ tpiServiceID
+ OCTET STRING,
+ tpiServicePassword
+ OCTET STRING,
+ tpiRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.24.1.1
+ tpiIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..7)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { thirdPartyInfoEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.24.1.2
+ tpiTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { thirdPartyInfoEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.24.1.3
+ tpiServiceID OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { thirdPartyInfoEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.24.1.4
+ tpiServicePassword OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { thirdPartyInfoEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.24.1.5
+ tpiRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { thirdPartyInfoEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.25
+ basicTariffZoneTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF BasicTariffZoneEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.25.1
+ basicTariffZoneEntry OBJECT-TYPE
+ SYNTAX BasicTariffZoneEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { btzIndex }
+ ::= { basicTariffZoneTable 1 }
+
+
+ BasicTariffZoneEntry ::=
+ SEQUENCE {
+ btzIndex
+ INTEGER,
+ btzTitle
+ OCTET STRING,
+ btzMCC
+ OCTET STRING,
+ btzMNC
+ OCTET STRING,
+ btzLAC
+ INTEGER,
+ btzCellID
+ INTEGER,
+ btzMOTariffID
+ INTEGER,
+ btzMTTariffID
+ INTEGER,
+ btzRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.25.1.1
+ btzIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { basicTariffZoneEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.25.1.2
+ btzTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { basicTariffZoneEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.25.1.3
+ btzMCC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { basicTariffZoneEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.25.1.4
+ btzMNC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (2..3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { basicTariffZoneEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.25.1.5
+ btzLAC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { basicTariffZoneEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.25.1.6
+ btzCellID OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { basicTariffZoneEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.25.1.7
+ btzMOTariffID OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { basicTariffZoneEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.25.1.8
+ btzMTTariffID OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { basicTariffZoneEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.25.1.9
+ btzRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { basicTariffZoneEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.31
+ radiusGGSNTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RadiusGGSNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 31 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.31.1
+ radiusGGSNEntry OBJECT-TYPE
+ SYNTAX RadiusGGSNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { rgIndex }
+ ::= { radiusGGSNTable 1 }
+
+
+ RadiusGGSNEntry ::=
+ SEQUENCE {
+ rgIndex
+ INTEGER,
+ rgTitle
+ OCTET STRING,
+ rgNasIP
+ IpAddress,
+ rgNASKey
+ OCTET STRING,
+ rgNASPassword
+ OCTET STRING,
+ rgRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.31.1.1
+ rgIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { radiusGGSNEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.31.1.2
+ rgTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Title."
+ ::= { radiusGGSNEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.31.1.6
+ rgNasIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NAS IP
+ Remark:NAS IP."
+ ::= { radiusGGSNEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.31.1.7
+ rgNASKey OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:NAS Key."
+ ::= { radiusGGSNEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.31.1.8
+ rgNASPassword OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:NAS Password."
+ ::= { radiusGGSNEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.31.1.9
+ rgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { radiusGGSNEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.32
+ radiusSGSNTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RadiusSGSNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControl 32 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.32.1
+ radiusSGSNEntry OBJECT-TYPE
+ SYNTAX RadiusSGSNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { rsIndex }
+ ::= { radiusSGSNTable 1 }
+
+
+ RadiusSGSNEntry ::=
+ SEQUENCE {
+ rsIndex
+ INTEGER,
+ rsTitle
+ OCTET STRING,
+ rsSgsnIP
+ IpAddress,
+ rsTariffID
+ INTEGER,
+ rsRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.32.1.1
+ rsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { radiusSGSNEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.32.1.2
+ rsTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { radiusSGSNEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.32.1.3
+ rsSgsnIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SGSN IP
+ Remark:SGSN IP."
+ ::= { radiusSGSNEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.32.1.4
+ rsTariffID OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Tariff ID."
+ ::= { radiusSGSNEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.1.32.1.5
+ rsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { radiusSGSNEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2
+ cOS OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.50
+ cOSTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF COSEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 50 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.50.1
+ cOSEntry OBJECT-TYPE
+ SYNTAX COSEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { cosIndex }
+ ::= { cOSTable 1 }
+
+
+ COSEntry ::=
+ SEQUENCE {
+ cosIndex
+ INTEGER,
+ cosTitle
+ OCTET STRING,
+ cosTariffEntries
+ INTEGER,
+ cosServiceControlEntries
+ INTEGER,
+ cosAccountValidityEntries
+ INTEGER,
+ cosSMSNotificationInquiryEntries
+ INTEGER,
+ cosRechargeCardValidityEntries
+ INTEGER,
+ cosRechargePromotionEntries
+ INTEGER,
+ cosCAPPlanEntries
+ INTEGER,
+ cosPoolAccountEntries
+ INTEGER,
+ cosGprsControlEntries
+ INTEGER,
+ cosRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.50.1.1
+ cosIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cOSEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.50.1.2
+ cosTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cOSEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.50.1.3
+ cosTariffEntries OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cOSEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.50.1.4
+ cosServiceControlEntries OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cOSEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.50.1.5
+ cosAccountValidityEntries OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cOSEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.50.1.6
+ cosSMSNotificationInquiryEntries OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cOSEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.50.1.7
+ cosRechargeCardValidityEntries OBJECT-TYPE
+ SYNTAX INTEGER (4)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOSEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.50.1.8
+ cosRechargePromotionEntries OBJECT-TYPE
+ SYNTAX INTEGER (4)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOSEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.50.1.9
+ cosCAPPlanEntries OBJECT-TYPE
+ SYNTAX INTEGER (2)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOSEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.50.1.10
+ cosPoolAccountEntries OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOSEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.50.1.11
+ cosGprsControlEntries OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOSEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.50.1.12
+ cosRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cOSEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51
+ tariffTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TariffEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 51 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1
+ tariffEntry OBJECT-TYPE
+ SYNTAX TariffEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { tariffIndex, tariffCOSIndex }
+ ::= { tariffTable 1 }
+
+
+ TariffEntry ::=
+ SEQUENCE {
+ tariffCOSIndex
+ INTEGER,
+ tariffIndex
+ INTEGER,
+ tariffTitle
+ OCTET STRING,
+ tariffMOTariffID
+ INTEGER,
+ tariffMTTariffID
+ INTEGER,
+ tariffChargeBy
+ INTEGER,
+ tariffRechargePromotionStartDate
+ OCTET STRING,
+ tariffRechargePromotionEndDate
+ OCTET STRING,
+ tariffCAPPlanResetDay
+ INTEGER,
+ tariffPromotionIddMoCall
+ INTEGER,
+ tariffPromotionNddMoCall
+ INTEGER,
+ tariffPromotionLocalMoCall
+ INTEGER,
+ tariffPromotionIddMoSMS
+ INTEGER,
+ tariffPromotionNddMoSMS
+ INTEGER,
+ tariffPromotionLocalMoSMS
+ INTEGER,
+ tariffPromotionGprs
+ INTEGER,
+ tariffPromotionTransfer
+ INTEGER,
+ tariffPromotionTransferPriority
+ INTEGER,
+ tariffRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.1
+ tariffCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.2
+ tariffIndex OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { tariffEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.3
+ tariffTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { tariffEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.4
+ tariffMOTariffID OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { tariffEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.5
+ tariffMTTariffID OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { tariffEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.6
+ tariffChargeBy OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ tariffSetInSubscriberProfile(0),
+ parameterBasicTariffZone(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.7
+ tariffRechargePromotionStartDate OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.8
+ tariffRechargePromotionEndDate OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.9
+ tariffCAPPlanResetDay OBJECT-TYPE
+ SYNTAX INTEGER (1..28)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.10
+ tariffPromotionIddMoCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.11
+ tariffPromotionNddMoCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.12
+ tariffPromotionLocalMoCall OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.13
+ tariffPromotionIddMoSMS OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.14
+ tariffPromotionNddMoSMS OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.15
+ tariffPromotionLocalMoSMS OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.16
+ tariffPromotionGprs OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.17
+ tariffPromotionTransfer OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notAllowed(0),
+ allowed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.18
+ tariffPromotionTransferPriority OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ inferiorToBalance(0),
+ superiorToBalance(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.51.1.19
+ tariffRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tariffEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52
+ serviceControlTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ServiceControlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 52 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1
+ serviceControlEntry OBJECT-TYPE
+ SYNTAX ServiceControlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { scIndex, scCOSIndex }
+ ::= { serviceControlTable 1 }
+
+
+ ServiceControlEntry ::=
+ SEQUENCE {
+ scCOSIndex
+ INTEGER,
+ scIndex
+ INTEGER,
+ scTitle
+ OCTET STRING,
+ scMOThresholdSet
+ INTEGER,
+ scMOMinimumBalance
+ INTEGER,
+ scMTChargeFlag
+ INTEGER,
+ scMTBalanceControl
+ INTEGER,
+ scMTBalanceThreshold
+ INTEGER,
+ scFriendFamilyFlag
+ INTEGER,
+ scFriendFamilyChangeChargeFlag
+ INTEGER,
+ scFriendFamilyFreeChangeTimes
+ INTEGER,
+ scCloseUserGroupService
+ INTEGER,
+ scRechargeViaCreditCard
+ INTEGER,
+ scCreditVault
+ INTEGER,
+ scCreditVaultAmount
+ INTEGER,
+ scPoolAccountFlag
+ INTEGER,
+ scPoolAccountChangeChargeFlag
+ INTEGER,
+ scPoolAccountFreeChangeTimes
+ INTEGER,
+ scFreeSmsRelatedCOS
+ INTEGER,
+ scFreeSmsActiveDays
+ INTEGER,
+ scFreeSmsRentType
+ INTEGER,
+ scfCallMeBackThreshold
+ INTEGER,
+ scRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.1
+ scCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.2
+ scIndex OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceControlEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.3
+ scTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceControlEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.4
+ scMOThresholdSet OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notSet(0),
+ set(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceControlEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.5
+ scMOMinimumBalance OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceControlEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.6
+ scMTChargeFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notCharge(0),
+ charge(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceControlEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.7
+ scMTBalanceControl OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ noLimitation(0),
+ thresholdUsed(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceControlEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.8
+ scMTBalanceThreshold OBJECT-TYPE
+ SYNTAX INTEGER (-1000000..1000000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceControlEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.9
+ scFriendFamilyFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.10
+ scFriendFamilyChangeChargeFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notCharge(0),
+ charge(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.11
+ scFriendFamilyFreeChangeTimes OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.12
+ scCloseUserGroupService OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.13
+ scRechargeViaCreditCard OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ support(0),
+ unsupport(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.14
+ scCreditVault OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.15
+ scCreditVaultAmount OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.16
+ scPoolAccountFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.17
+ scPoolAccountChangeChargeFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notCharge(0),
+ charge(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.18
+ scPoolAccountFreeChangeTimes OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.19
+ scFreeSmsRelatedCOS OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.20
+ scFreeSmsActiveDays OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.21
+ scFreeSmsRentType OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.22
+ scfCallMeBackThreshold OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.52.1.23
+ scRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceControlEntry 23 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53
+ accountValidityTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF AccountValidityEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 53 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53.1
+ accountValidityEntry OBJECT-TYPE
+ SYNTAX AccountValidityEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { avIndex, avCOSIndex }
+ ::= { accountValidityTable 1 }
+
+
+ AccountValidityEntry ::=
+ SEQUENCE {
+ avCOSIndex
+ INTEGER,
+ avIndex
+ INTEGER,
+ avTitle
+ OCTET STRING,
+ avMaxAccountValidityDays
+ INTEGER,
+ avActionWhenAccountExpires
+ INTEGER,
+ avDaysKeepingAnExpiredAccount
+ INTEGER,
+ avActionAfterDaysKeepingAnExpiredAccount
+ INTEGER,
+ avActionAfterRecharge
+ INTEGER,
+ avActionAfterBalanceDepleted
+ INTEGER,
+ avValidDaysChangeTo
+ INTEGER,
+ avActivationByInquiryIs
+ INTEGER,
+ avValidDaysActivatedByInquiringAccountWithZeroBalance
+ INTEGER,
+ avRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53.1.1
+ avCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { accountValidityEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53.1.2
+ avIndex OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { accountValidityEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53.1.3
+ avTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { accountValidityEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53.1.4
+ avMaxAccountValidityDays OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { accountValidityEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53.1.5
+ avActionWhenAccountExpires OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notClearBalance(0),
+ clearBalance(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { accountValidityEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53.1.6
+ avDaysKeepingAnExpiredAccount OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { accountValidityEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53.1.7
+ avActionAfterDaysKeepingAnExpiredAccount OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notClearBalance(0),
+ clearBalance(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { accountValidityEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53.1.8
+ avActionAfterRecharge OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ accumulateValidity(0),
+ replaceValidity(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { accountValidityEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53.1.9
+ avActionAfterBalanceDepleted OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notChangeAccountValidity(0),
+ changeAccountValidity(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { accountValidityEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53.1.10
+ avValidDaysChangeTo OBJECT-TYPE
+ SYNTAX INTEGER (0..128)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { accountValidityEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53.1.11
+ avActivationByInquiryIs OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disabled(0),
+ eabled(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { accountValidityEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53.1.12
+ avValidDaysActivatedByInquiringAccountWithZeroBalance OBJECT-TYPE
+ SYNTAX INTEGER (0..128)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { accountValidityEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.53.1.13
+ avRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { accountValidityEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54
+ sMSNotificationInquiryTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SMSNotificationInquiryEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 54 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1
+ sMSNotificationInquiryEntry OBJECT-TYPE
+ SYNTAX SMSNotificationInquiryEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { smsIndex, smsCOSIndex }
+ ::= { sMSNotificationInquiryTable 1 }
+
+
+ SMSNotificationInquiryEntry ::=
+ SEQUENCE {
+ smsCOSIndex
+ INTEGER,
+ smsIndex
+ INTEGER,
+ smsTitle
+ OCTET STRING,
+ smsNotificationWhenRecharge
+ INTEGER,
+ smsNotificationWhenInquiry
+ INTEGER,
+ smsNotificationWhenExpired
+ INTEGER,
+ smsTheDaysSendingSMSBeforeExpiredDay
+ INTEGER,
+ smsNotificationWhenBalanceInsufficient
+ INTEGER,
+ smsInsufficientBalanceThreshold
+ INTEGER,
+ smsChargeWhenInquiryBySMS
+ INTEGER,
+ smsFreeInquiryPerDay
+ INTEGER,
+ smsNotificationWhenCleanBalance
+ INTEGER,
+ smsNotificationWhenCapPlanChanged
+ INTEGER,
+ smsNotificationWhenApplyOverdraft
+ INTEGER,
+ smsRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.1
+ smsCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSNotificationInquiryEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.2
+ smsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sMSNotificationInquiryEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.3
+ smsTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sMSNotificationInquiryEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.4
+ smsNotificationWhenRecharge OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sMSNotificationInquiryEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.5
+ smsNotificationWhenInquiry OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sMSNotificationInquiryEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.6
+ smsNotificationWhenExpired OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sMSNotificationInquiryEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.7
+ smsTheDaysSendingSMSBeforeExpiredDay OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSNotificationInquiryEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.8
+ smsNotificationWhenBalanceInsufficient OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSNotificationInquiryEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.9
+ smsInsufficientBalanceThreshold OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSNotificationInquiryEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.10
+ smsChargeWhenInquiryBySMS OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notCharge(0),
+ charge(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSNotificationInquiryEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.11
+ smsFreeInquiryPerDay OBJECT-TYPE
+ SYNTAX INTEGER (0..128)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSNotificationInquiryEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.12
+ smsNotificationWhenCleanBalance OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Wether or not to send a notification SMS when clear expired account balance."
+ ::= { sMSNotificationInquiryEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.13
+ smsNotificationWhenCapPlanChanged OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Whether or not to send a notification SMS when CAP Plan is to be changed."
+ ::= { sMSNotificationInquiryEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.14
+ smsNotificationWhenApplyOverdraft OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Notification When Apply Overdraft."
+ ::= { sMSNotificationInquiryEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.54.1.15
+ smsRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSNotificationInquiryEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.55
+ rechargeCardValidityTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RechargeCardValidityEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 55 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.55.1
+ rechargeCardValidityEntry OBJECT-TYPE
+ SYNTAX RechargeCardValidityEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { rcvIndex, rcvCOSIndex }
+ ::= { rechargeCardValidityTable 1 }
+
+
+ RechargeCardValidityEntry ::=
+ SEQUENCE {
+ rcvCOSIndex
+ INTEGER,
+ rcvIndex
+ INTEGER,
+ rcvTitle
+ OCTET STRING,
+ rcvCardCredit
+ INTEGER,
+ rcvMOValidity
+ INTEGER,
+ rcvMTValidity
+ INTEGER,
+ rcvRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.55.1.1
+ rcvCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { rechargeCardValidityEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.55.1.2
+ rcvIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..3)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rechargeCardValidityEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.55.1.3
+ rcvTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rechargeCardValidityEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.55.1.4
+ rcvCardCredit OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rechargeCardValidityEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.55.1.5
+ rcvMOValidity OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rechargeCardValidityEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.55.1.6
+ rcvMTValidity OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rechargeCardValidityEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.55.1.7
+ rcvRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { rechargeCardValidityEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.56
+ rechargePromotionTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RechargePromotionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 56 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.56.1
+ rechargePromotionEntry OBJECT-TYPE
+ SYNTAX RechargePromotionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { rpIndex, rpCOSIndex }
+ ::= { rechargePromotionTable 1 }
+
+
+ RechargePromotionEntry ::=
+ SEQUENCE {
+ rpCOSIndex
+ INTEGER,
+ rpIndex
+ Integer32,
+ rpTitle
+ OCTET STRING,
+ rpRechargeCardCredit
+ Integer32,
+ rpPromotionBonus
+ Integer32,
+ rpPromotionValidity
+ Integer32,
+ rpRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.56.1.1
+ rpCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { rechargePromotionEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.56.1.2
+ rpIndex OBJECT-TYPE
+ SYNTAX Integer32 (0..3)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rechargePromotionEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.56.1.3
+ rpTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rechargePromotionEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.56.1.4
+ rpRechargeCardCredit OBJECT-TYPE
+ SYNTAX Integer32 (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rechargePromotionEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.56.1.5
+ rpPromotionBonus OBJECT-TYPE
+ SYNTAX Integer32 (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rechargePromotionEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.56.1.6
+ rpPromotionValidity OBJECT-TYPE
+ SYNTAX Integer32 (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { rechargePromotionEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.56.1.7
+ rpRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { rechargePromotionEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57
+ cAPPlanTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF CAPPlanEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 57 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57.1
+ cAPPlanEntry OBJECT-TYPE
+ SYNTAX CAPPlanEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { cpIndex, cpCOSIndex }
+ ::= { cAPPlanTable 1 }
+
+
+ CAPPlanEntry ::=
+ SEQUENCE {
+ cpCOSIndex
+ INTEGER,
+ cpIndex
+ INTEGER,
+ cpTitle
+ OCTET STRING,
+ cpFlag
+ INTEGER,
+ cpType
+ INTEGER,
+ cpThreshold0
+ INTEGER,
+ cpThreshold1
+ INTEGER,
+ cpThreshold2
+ INTEGER,
+ cpTariffID0
+ INTEGER,
+ cpTariffID1
+ INTEGER,
+ cpTariffID2
+ INTEGER,
+ cpTariffID3
+ INTEGER,
+ cpRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57.1.1
+ cpCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cAPPlanEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57.1.2
+ cpIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cAPPlanEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57.1.3
+ cpTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cAPPlanEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57.1.4
+ cpFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ capCallOnly(1),
+ capSMOnly(2),
+ capSMAndCall(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cAPPlanEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57.1.5
+ cpType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ capByAmount(0),
+ capByCharge(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cAPPlanEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57.1.6
+ cpThreshold0 OBJECT-TYPE
+ SYNTAX INTEGER (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cAPPlanEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57.1.7
+ cpThreshold1 OBJECT-TYPE
+ SYNTAX INTEGER (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cAPPlanEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57.1.8
+ cpThreshold2 OBJECT-TYPE
+ SYNTAX INTEGER (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cAPPlanEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57.1.9
+ cpTariffID0 OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cAPPlanEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57.1.10
+ cpTariffID1 OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cAPPlanEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57.1.11
+ cpTariffID2 OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cAPPlanEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57.1.12
+ cpTariffID3 OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cAPPlanEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.57.1.13
+ cpRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cAPPlanEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58
+ poolAccountTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PoolAccountEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 58 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58.1
+ poolAccountEntry OBJECT-TYPE
+ SYNTAX PoolAccountEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { paIndex, paCOSIndex }
+ ::= { poolAccountTable 1 }
+
+
+ PoolAccountEntry ::=
+ SEQUENCE {
+ paCOSIndex
+ INTEGER,
+ paIndex
+ INTEGER,
+ paTitle
+ OCTET STRING,
+ paRole
+ INTEGER,
+ paParentChosenCosA
+ INTEGER,
+ paParentChosenCosB
+ INTEGER,
+ paChildAllowSelfRecharge
+ INTEGER,
+ paChildAllowSelfTransfer
+ INTEGER,
+ paChildCreditFrom
+ INTEGER,
+ paChildMaxCallsPerDay
+ INTEGER,
+ paChildMaxSMSPerDay
+ INTEGER,
+ paChildMaxConsumedFee
+ INTEGER,
+ paRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58.1.1
+ paCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { poolAccountEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58.1.2
+ paIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { poolAccountEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58.1.3
+ paTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { poolAccountEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58.1.4
+ paRole OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ normal(0),
+ parent(1),
+ child(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { poolAccountEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58.1.5
+ paParentChosenCosA OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { poolAccountEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58.1.6
+ paParentChosenCosB OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { poolAccountEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58.1.7
+ paChildAllowSelfRecharge OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ no(0),
+ yes(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { poolAccountEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58.1.8
+ paChildAllowSelfTransfer OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ no(0),
+ yes(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { poolAccountEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58.1.9
+ paChildCreditFrom OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ autoPeriodicRechargeFromParent(0),
+ parentTransfer(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { poolAccountEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58.1.10
+ paChildMaxCallsPerDay OBJECT-TYPE
+ SYNTAX INTEGER (0..1000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { poolAccountEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58.1.11
+ paChildMaxSMSPerDay OBJECT-TYPE
+ SYNTAX INTEGER (0..1000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { poolAccountEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58.1.12
+ paChildMaxConsumedFee OBJECT-TYPE
+ SYNTAX INTEGER (0..100000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { poolAccountEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.58.1.13
+ paRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { poolAccountEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59
+ gprsControlTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF GprsControlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cOS 59 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1
+ gprsControlEntry OBJECT-TYPE
+ SYNTAX GprsControlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { gcIndex, gcCOSIndex }
+ ::= { gprsControlTable 1 }
+
+
+ GprsControlEntry ::=
+ SEQUENCE {
+ gcCOSIndex
+ INTEGER,
+ gcIndex
+ INTEGER,
+ gcTitle
+ OCTET STRING,
+ gcGprsChargeStatus
+ INTEGER,
+ gcMiniBalanceForGprs
+ INTEGER,
+ gcInactiveSessionLimit
+ INTEGER,
+ gcGprsNotificationWhenTerminate
+ INTEGER,
+ gcMaxSmsForGprsNotificationPerDay
+ INTEGER,
+ gcMaxVolumeQuotaEachTime
+ INTEGER,
+ gcVolumeThresholdDiff
+ INTEGER,
+ gcMaxDurationQuotaEachTime
+ INTEGER,
+ gcDurationThresholdDiff
+ INTEGER,
+ gcChargeBy
+ INTEGER,
+ gcGprsCapPlanType
+ INTEGER,
+ gcGprsCapPlanThreshold0
+ INTEGER,
+ gcGprsCapPlanThreshold1
+ INTEGER,
+ gcGprsCapPlanThreshold2
+ INTEGER,
+ gcGprsCapPlanTariffID0
+ INTEGER,
+ gcGprsCapPlanTariffID1
+ INTEGER,
+ gcGprsCapPlanTariffID2
+ INTEGER,
+ gcGprsCapPlanTariffID3
+ INTEGER,
+ gcRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.1
+ gcCOSIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gprsControlEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.2
+ gcIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gprsControlEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.3
+ gcTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gprsControlEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.4
+ gcGprsChargeStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gprsControlEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.5
+ gcMiniBalanceForGprs OBJECT-TYPE
+ SYNTAX INTEGER (0..100000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gprsControlEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.6
+ gcInactiveSessionLimit OBJECT-TYPE
+ SYNTAX INTEGER (0..36000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gprsControlEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.7
+ gcGprsNotificationWhenTerminate OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gprsControlEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.8
+ gcMaxSmsForGprsNotificationPerDay OBJECT-TYPE
+ SYNTAX INTEGER (0..1000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gprsControlEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.9
+ gcMaxVolumeQuotaEachTime OBJECT-TYPE
+ SYNTAX INTEGER (1..1024000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gprsControlEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.10
+ gcVolumeThresholdDiff OBJECT-TYPE
+ SYNTAX INTEGER (1..102400)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gprsControlEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.11
+ gcMaxDurationQuotaEachTime OBJECT-TYPE
+ SYNTAX INTEGER (60..6000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gprsControlEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.12
+ gcDurationThresholdDiff OBJECT-TYPE
+ SYNTAX INTEGER (30..90)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gprsControlEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.13
+ gcChargeBy OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ cosDefined(0),
+ sgsnLocation(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gprsControlEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.14
+ gcGprsCapPlanType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ volume(0),
+ chargedFee(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gprsControlEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.15
+ gcGprsCapPlanThreshold0 OBJECT-TYPE
+ SYNTAX INTEGER (0..1073741824)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gprsControlEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.16
+ gcGprsCapPlanThreshold1 OBJECT-TYPE
+ SYNTAX INTEGER (0..1073741824)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gprsControlEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.17
+ gcGprsCapPlanThreshold2 OBJECT-TYPE
+ SYNTAX INTEGER (0..1073741824)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gprsControlEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.18
+ gcGprsCapPlanTariffID0 OBJECT-TYPE
+ SYNTAX INTEGER (0..64)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gprsControlEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.19
+ gcGprsCapPlanTariffID1 OBJECT-TYPE
+ SYNTAX INTEGER (0..64)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gprsControlEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.20
+ gcGprsCapPlanTariffID2 OBJECT-TYPE
+ SYNTAX INTEGER (0..64)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gprsControlEntry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.21
+ gcGprsCapPlanTariffID3 OBJECT-TYPE
+ SYNTAX INTEGER (0..64)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gprsControlEntry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.2.59.1.22
+ gcRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gprsControlEntry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3
+ srfParameters OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.26
+ iVRSourceTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF IVRSourceEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { srfParameters 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.26.1
+ iVRSourceEntry OBJECT-TYPE
+ SYNTAX IVRSourceEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { ivrIndex }
+ ::= { iVRSourceTable 1 }
+
+
+ IVRSourceEntry ::=
+ SEQUENCE {
+ ivrIndex
+ INTEGER,
+ ivrTitle
+ OCTET STRING,
+ ivrInquiry
+ INTEGER,
+ ivrRecharge
+ INTEGER,
+ ivrRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.26.1.1
+ ivrIndex OBJECT-TYPE
+ SYNTAX INTEGER (0)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { iVRSourceEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.26.1.2
+ ivrTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { iVRSourceEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.26.1.3
+ ivrInquiry OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ localSRF(0),
+ externalIVR(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { iVRSourceEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.26.1.4
+ ivrRecharge OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ localSRF(0),
+ externalIVR(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { iVRSourceEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.26.1.5
+ ivrRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { iVRSourceEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.27
+ sRFNumberTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SRFNumberEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { srfParameters 27 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.27.1
+ sRFNumberEntry OBJECT-TYPE
+ SYNTAX SRFNumberEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { srfIndex }
+ ::= { sRFNumberTable 1 }
+
+
+ SRFNumberEntry ::=
+ SEQUENCE {
+ srfIndex
+ INTEGER,
+ srfTitle
+ OCTET STRING,
+ srfNumber
+ OCTET STRING,
+ srfRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.27.1.1
+ srfIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sRFNumberEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.27.1.2
+ srfTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sRFNumberEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.27.1.3
+ srfNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sRFNumberEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.27.1.4
+ srfRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sRFNumberEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.28
+ serviceNumberTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ServiceNumberEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { srfParameters 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.28.1
+ serviceNumberEntry OBJECT-TYPE
+ SYNTAX ServiceNumberEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { snIndex }
+ ::= { serviceNumberTable 1 }
+
+
+ ServiceNumberEntry ::=
+ SEQUENCE {
+ snIndex
+ INTEGER,
+ snTitle
+ OCTET STRING,
+ snServiceNumber
+ OCTET STRING,
+ snRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.28.1.1
+ snIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceNumberEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.28.1.2
+ snTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceNumberEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.28.1.3
+ snServiceNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceNumberEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.28.1.4
+ snRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceNumberEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.29
+ serviceKeyTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ServiceKeyEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { srfParameters 29 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.29.1
+ serviceKeyEntry OBJECT-TYPE
+ SYNTAX ServiceKeyEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { skIndex }
+ ::= { serviceKeyTable 1 }
+
+
+ ServiceKeyEntry ::=
+ SEQUENCE {
+ skIndex
+ INTEGER,
+ skTitle
+ OCTET STRING,
+ skServiceKey
+ INTEGER,
+ skRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.29.1.1
+ skIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..6)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceKeyEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.29.1.2
+ skTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceKeyEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.29.1.3
+ skServiceKey OBJECT-TYPE
+ SYNTAX INTEGER (0..12)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { serviceKeyEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.3.29.1.4
+ skRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceKeyEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4
+ callRouteToVMS OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.1
+ pLMNServiceNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { callRouteToVMS 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.2
+ pSTNServiceNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { callRouteToVMS 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.3
+ vMSLeaveMessageNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { callRouteToVMS 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.4
+ routeMethodOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ byPrefix(0),
+ byWholeNumber(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { callRouteToVMS 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.5
+ routeNumberOption OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ callerNumber(0),
+ calledNumber(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { callRouteToVMS 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.6
+ isPostpaidAllowed OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { callRouteToVMS 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.7
+ ringBackServiceKey OBJECT-TYPE
+ SYNTAX INTEGER (0..12)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { callRouteToVMS 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.30
+ vMSUserSegmentsTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF VMSUserSegmentsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { callRouteToVMS 30 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.30.1
+ vMSUserSegmentsEntry OBJECT-TYPE
+ SYNTAX VMSUserSegmentsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { vusIndex }
+ ::= { vMSUserSegmentsTable 1 }
+
+
+ VMSUserSegmentsEntry ::=
+ SEQUENCE {
+ vusIndex
+ INTEGER,
+ vusTitle
+ OCTET STRING,
+ vusStartMSISDN
+ OCTET STRING,
+ vusEndMSISDN
+ OCTET STRING,
+ vusPLMNServiceNumber
+ OCTET STRING,
+ vusPSTNServiceNumber
+ OCTET STRING,
+ vusLeaveMessageDepositNumber
+ OCTET STRING,
+ vusRowStatus
+ Integer32
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.30.1.1
+ vusIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { vMSUserSegmentsEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.30.1.2
+ vusTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { vMSUserSegmentsEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.30.1.3
+ vusStartMSISDN OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { vMSUserSegmentsEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.30.1.4
+ vusEndMSISDN OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { vMSUserSegmentsEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.30.1.5
+ vusPLMNServiceNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { vMSUserSegmentsEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.30.1.6
+ vusPSTNServiceNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { vMSUserSegmentsEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.30.1.7
+ vusLeaveMessageDepositNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { vMSUserSegmentsEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.4.30.1.8
+ vusRowStatus OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { vMSUserSegmentsEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.5
+ fileOperation OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.5.1
+ importSubs OBJECT-TYPE
+ SYNTAX Opaque (SIZE (7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes
+ OPAQUE DECODE RULE:
+ [unit]Progress Report[u]00.0-00.7[u]select
+ [v]0[opt]Idle
+ [v]1[opt]Requesting
+ [v]2[opt]Processing
+ [v]3[opt]Succeeded
+ [v]4[opt]Failed
+ [unit]Total Subscribers[u]01.0-03.7[u]input
+ [v]toDec-high-0
+ [unit]Imported Subscribers[u]04.0-06.7[u]input
+ [v]toDec-high-0"
+ ::= { fileOperation 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.5.2
+ importRechangeCard OBJECT-TYPE
+ SYNTAX Opaque (SIZE (7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes
+ OPAQUE DECODE RULE:
+ [unit]Progress Report[u]00.0-00.7[u]select
+ [v]0[opt]Idle
+ [v]1[opt]Requesting
+ [v]2[opt]Processing
+ [v]3[opt]Succeeded
+ [v]4[opt]Failed
+ [unit]Total Cards[u]01.0-03.7[u]input
+ [v]toDec-high-0
+ [unit]Imported Cards[u]04.0-06.7[u]input
+ [v]toDec-high-0"
+ ::= { fileOperation 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.5.3
+ newTariffFlag OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes"
+ ::= { fileOperation 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.5.4
+ newTariffStarTime OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (14))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes"
+ ::= { fileOperation 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.2.5.5
+ saveCommand OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ saveUserData(1),
+ saveTariff(2),
+ saveRechargeCard(3),
+ saveAll(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { fileOperation 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.3
+ csta OBJECT IDENTIFIER ::= { rcm 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.4
+ cdr OBJECT IDENTIFIER ::= { rcm 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.4.1
+ cdrHeadOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.4.2
+ cdrTailOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.26.4.3
+ cdrDataOid OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 3 }
+
+
+
+ END
+
+--
+-- LGC-SS-RCM-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-RCS-MIB.my b/omc/bin/mib/LGC-SS-RCS-MIB.my
new file mode 100644
index 0000000..a53f78d
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-RCS-MIB.my
@@ -0,0 +1,1123 @@
+--
+-- LGC-SS-RCS-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Monday, October 28, 2019 at 15:02:46
+--
+
+ LGC-SS-RCS-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, RowStatus, DisplayString8, DisplayString
+ FROM LGC-MIB
+ IpAddress, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30
+ rcs MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 30 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2
+ parameter OBJECT IDENTIFIER ::= { rcs 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.1.1
+ pLMNId OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (6))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:PLMN id."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.1.2
+ rNCId OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:RNC id."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.1.3
+ networkIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ international(0),
+ internationalSpare(1),
+ national(2),
+ nationalSpare(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Network Indicator."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.1.4
+ opc OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:OPC."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.1.5
+ ssn OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:ssn."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.1.6
+ iuhSCTPPort OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:SCTP port of Iuh interface."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.1.7
+ maxUEInactiveTime OBJECT-TYPE
+ SYNTAX INTEGER (0..2592000)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:max inactive time of UE to deregister."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.1.8
+ mocn OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ false(0),
+ true(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:MO-CN."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.1.9
+ defaultMocnCnId OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:default MO-CN core network Id."
+ ::= { system 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.2
+ iuCS OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.2.1
+ dpcIuCS OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:DPC of IuCS interface."
+ ::= { iuCS 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.2.2
+ ssnIuCS OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:ssn of IuCS interface."
+ ::= { iuCS 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.2.3
+ rtpIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Rtp IP."
+ ::= { iuCS 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.2.4
+ lSSwitch OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:switch of local swtiching function."
+ ::= { iuCS 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.3
+ iuPS OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.3.1
+ dpcIuPS OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:DPC of IuPS interface."
+ ::= { iuPS 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.3.2
+ ssnIuPS OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:ssn of IuPS interface."
+ ::= { iuPS 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.3.3
+ gtpIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:gtp IP."
+ ::= { iuPS 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4
+ podList OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1
+ podListTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PodListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Pod List Table"
+ ::= { podList 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1
+ podListEntry OBJECT-TYPE
+ SYNTAX PodListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:Pod List Table"
+ INDEX { podIndex }
+ ::= { podListTable 1 }
+
+
+ PodListEntry ::=
+ SEQUENCE {
+ podIndex
+ INTEGER,
+ podIdentity
+ OCTET STRING,
+ podAdminState
+ INTEGER,
+ podOpState
+ INTEGER,
+ podRFTxStatus
+ INTEGER,
+ podPodId
+ INTEGER,
+ podLsaId
+ INTEGER,
+ podPLMNID
+ OCTET STRING,
+ podLacRac
+ OCTET STRING,
+ podCellID
+ INTEGER,
+ podRncID
+ INTEGER,
+ podSAC
+ INTEGER,
+ podBroadcastSAC
+ INTEGER,
+ podBroadcastLAC
+ INTEGER,
+ podSaiLac
+ INTEGER,
+ podPCPICHPower
+ OCTET STRING,
+ podRFCandidateList
+ OCTET STRING,
+ podFapIP
+ IpAddress,
+ podNTPServer
+ IpAddress,
+ podFAPGatewayServer
+ IpAddress,
+ podManagementServer
+ IpAddress,
+ podSBCRegisterStatus
+ INTEGER,
+ podPeriodicInformInterval
+ INTEGER,
+ podPodName
+ OCTET STRING,
+ podUpdateToPod
+ INTEGER,
+ podRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.1
+ podIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..128)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 256."
+ ::= { podListEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.2
+ podIdentity OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:pod identity."
+ ::= { podListEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.3
+ podAdminState OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ lock(0),
+ unlock(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:administrative state."
+ ::= { podListEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.4
+ podOpState OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disabled(0),
+ enabled(1),
+ timeout(2)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:operational state."
+ ::= { podListEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.5
+ podRFTxStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Current status of this FAP RF transmitter."
+ ::= { podListEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.6
+ podPodId OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:MG ID."
+ ::= { podListEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.7
+ podLsaId OBJECT-TYPE
+ SYNTAX INTEGER (0..1024)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:ID of local switching area."
+ ::= { podListEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.8
+ podPLMNID OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (5..6))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:PLMN ID."
+ ::= { podListEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.9
+ podLacRac OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..24))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:LAC and RAC."
+ ::= { podListEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.10
+ podCellID OBJECT-TYPE
+ SYNTAX INTEGER (0..268435455)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Cell ID."
+ ::= { podListEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.11
+ podRncID OBJECT-TYPE
+ SYNTAX INTEGER (0..4095)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:RNC ID."
+ ::= { podListEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.12
+ podSAC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:SAC."
+ ::= { podListEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.13
+ podBroadcastSAC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:SAC."
+ ::= { podListEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.14
+ podBroadcastLAC OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:SAC."
+ ::= { podListEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.15
+ podSaiLac OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:SAC."
+ ::= { podListEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.16
+ podPCPICHPower OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..24))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:PCPICH Power."
+ ::= { podListEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.17
+ podRFCandidateList OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..48))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:RF Candidate List."
+ ::= { podListEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.18
+ podFapIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:IP Address of FAP."
+ ::= { podListEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.19
+ podNTPServer OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:NTP Server IP Address."
+ ::= { podListEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.20
+ podFAPGatewayServer OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:IP Address of FAP Gateway Server."
+ ::= { podListEntry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.21
+ podManagementServer OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Management Server."
+ ::= { podListEntry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.22
+ podSBCRegisterStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ false(0),
+ true(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Remark:Whether or not the SBC registers to hnbGw."
+ ::= { podListEntry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.23
+ podPeriodicInformInterval OBJECT-TYPE
+ SYNTAX INTEGER (0..90)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:The duration in seconds of the interval for which the CPE MUST attempt to connect with the ACS and call the Inform method if parameter PeriodicInformEnable is true. Range: 0-90. "
+ ::= { podListEntry 23 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.24
+ podPodName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..64))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Pod Name."
+ ::= { podListEntry 24 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.25
+ podUpdateToPod OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ updateToAgw(0),
+ updateToPod(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION " "
+ ::= { podListEntry 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.4.1.1.26
+ podRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { podListEntry 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.5
+ imsiPrefix OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.5.1
+ imsiPrefixTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ImsiPrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:IMSI Prefix Table"
+ ::= { imsiPrefix 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.5.1.1
+ imsiPrefixEntry OBJECT-TYPE
+ SYNTAX ImsiPrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:IMSI Prefix Table"
+ INDEX { isIndex }
+ ::= { imsiPrefixTable 1 }
+
+
+ ImsiPrefixEntry ::=
+ SEQUENCE {
+ isIndex
+ INTEGER,
+ isPrefix
+ OCTET STRING,
+ isCnId
+ INTEGER,
+ isRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.5.1.1.1
+ isIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..64)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 64."
+ ::= { imsiPrefixEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.5.1.1.2
+ isPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..15))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:imsi prefix."
+ ::= { imsiPrefixEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.5.1.1.8
+ isCnId OBJECT-TYPE
+ SYNTAX INTEGER (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Core network id."
+ ::= { imsiPrefixEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.5.1.1.20
+ isRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { imsiPrefixEntry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.6
+ coreNetwork OBJECT IDENTIFIER ::= { parameter 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.6.1
+ coreNetworkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF CoreNetworkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:Core Network Table"
+ ::= { coreNetwork 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.6.1.1
+ coreNetworkEntry OBJECT-TYPE
+ SYNTAX CoreNetworkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:Core Network Table"
+ INDEX { cnIndex }
+ ::= { coreNetworkTable 1 }
+
+
+ CoreNetworkEntry ::=
+ SEQUENCE {
+ cnIndex
+ INTEGER,
+ cnNetworkName
+ OCTET STRING,
+ cnCSDpc
+ INTEGER,
+ cnPSDpc
+ INTEGER,
+ cnPlmnId
+ OCTET STRING,
+ cnLac
+ INTEGER,
+ cnRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.6.1.1.1
+ cnIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 8."
+ ::= { coreNetworkEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.6.1.1.2
+ cnNetworkName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:network name."
+ ::= { coreNetworkEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.6.1.1.3
+ cnCSDpc OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:CS DPC."
+ ::= { coreNetworkEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.6.1.1.4
+ cnPSDpc OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:PS DPC."
+ ::= { coreNetworkEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.6.1.1.5
+ cnPlmnId OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (6))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:PLMN ID."
+ ::= { coreNetworkEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.6.1.1.6
+ cnLac OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:CN Lac."
+ ::= { coreNetworkEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.6.1.1.10
+ cnRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { coreNetworkEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7
+ mocnCellMapping OBJECT IDENTIFIER ::= { parameter 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7.1
+ cellMappingTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF CellMappingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mocnCellMapping 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7.1.1
+ cellMappingEntry OBJECT-TYPE
+ SYNTAX CellMappingEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { cellMappingIndex }
+ ::= { cellMappingTable 1 }
+
+
+ CellMappingEntry ::=
+ SEQUENCE {
+ cellMappingIndex
+ INTEGER,
+ cellMappingTitle
+ OCTET STRING,
+ cellMappingLacCN0
+ INTEGER,
+ cellMappingCellIdCN0
+ INTEGER,
+ cellMappingRacCN0
+ INTEGER,
+ cellMappingLacCN1
+ INTEGER,
+ cellMappingCellIdCN1
+ INTEGER,
+ cellMappingRacCN1
+ INTEGER,
+ cellMappingLacCN2
+ INTEGER,
+ cellMappingCellIdCN2
+ INTEGER,
+ cellMappingRacCN2
+ INTEGER,
+ cellMappingRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7.1.1.1
+ cellMappingIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:POD Index
+ Remark:Index of POD."
+ ::= { cellMappingEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7.1.1.2
+ cellMappingTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Identify of POD."
+ ::= { cellMappingEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7.1.1.3
+ cellMappingLacCN0 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CN 0 Lac"
+ ::= { cellMappingEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7.1.1.4
+ cellMappingCellIdCN0 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CN 0 Cell Id"
+ ::= { cellMappingEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7.1.1.5
+ cellMappingRacCN0 OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CN 0 Rac"
+ ::= { cellMappingEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7.1.1.6
+ cellMappingLacCN1 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CN 1 Lac"
+ ::= { cellMappingEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7.1.1.7
+ cellMappingCellIdCN1 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CN 1 Cell Id"
+ ::= { cellMappingEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7.1.1.8
+ cellMappingRacCN1 OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CN 1 Rac"
+ ::= { cellMappingEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7.1.1.9
+ cellMappingLacCN2 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CN 2 Lac"
+ ::= { cellMappingEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7.1.1.10
+ cellMappingCellIdCN2 OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CN 2 Cell Id"
+ ::= { cellMappingEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7.1.1.11
+ cellMappingRacCN2 OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:CN 2 Rac"
+ ::= { cellMappingEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.2.7.1.1.30
+ cellMappingRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cellMappingEntry 30 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.3
+ csta OBJECT IDENTIFIER ::= { rcs 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.3.1
+ gwTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF GwEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.3.1.1
+ gwEntry OBJECT-TYPE
+ SYNTAX GwEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { gwIndex }
+ ::= { gwTable 1 }
+
+
+ GwEntry ::=
+ SEQUENCE {
+ gwIndex
+ INTEGER,
+ gwData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.3.1.1.1
+ gwIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gwEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.3.1.1.2
+ gwData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gwEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.3.2
+ fapsTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF FapsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.3.2.1
+ fapsEntry OBJECT-TYPE
+ SYNTAX FapsEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { fapsIndex }
+ ::= { fapsTable 1 }
+
+
+ FapsEntry ::=
+ SEQUENCE {
+ fapsPodId
+ INTEGER,
+ fapsIndex
+ INTEGER,
+ fapsData
+ DisplayString
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.3.2.1.1
+ fapsPodId OBJECT-TYPE
+ SYNTAX INTEGER (1..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { fapsEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.3.2.1.2
+ fapsIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..95)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { fapsEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.30.3.2.1.3
+ fapsData OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { fapsEntry 3 }
+
+
+
+ END
+
+--
+-- LGC-SS-RCS-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-RLS-MIB.my b/omc/bin/mib/LGC-SS-RLS-MIB.my
new file mode 100644
index 0000000..7774692
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-RLS-MIB.my
@@ -0,0 +1,588 @@
+--
+-- LGC-SS-RLS-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, September 23, 2010 at 11:37:05
+--
+
+ LGC-SS-RLS-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, RowStatus, AdminStateChoices
+ FROM LGC-MIB
+ IpAddress, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15
+ rls MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 15 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2
+ parameter OBJECT IDENTIFIER ::= { rls 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.1.1
+ rLSFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:RLS Flag
+ Remark:Enable or disable RTP Local Switching function."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.1.2
+ saveCommand OBJECT-TYPE
+ SYNTAX INTEGER { saveParameter(1) }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2
+ vimMg OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1
+ vimMgTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF VimMgEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:VIM MG"
+ ::= { vimMg 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1
+ vimMgEntry OBJECT-TYPE
+ SYNTAX VimMgEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:VIM MG"
+ INDEX { vmIndex }
+ ::= { vimMgTable 1 }
+
+
+ VimMgEntry ::=
+ SEQUENCE {
+ vmIndex
+ INTEGER,
+ vmTitle
+ OCTET STRING,
+ vmAdministrationState
+ AdminStateChoices,
+ vmIP
+ IpAddress,
+ vmDomainName
+ OCTET STRING,
+ vmSwitchingMode
+ INTEGER,
+ vmEndPoint
+ INTEGER,
+ vmType
+ INTEGER,
+ vmMaxPhysicalPorts
+ INTEGER,
+ vmMaxChannels
+ INTEGER,
+ vmPacketizationPeriod
+ INTEGER,
+ vmCodecType
+ INTEGER,
+ vmAuditTimer
+ INTEGER,
+ vmPhysicalPortEntries
+ INTEGER,
+ vmRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.1
+ vmIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..10)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Media gateway index number ranges from 1 to 10."
+ ::= { vimMgEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.2
+ vmTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Media gateway name for identification purpose only."
+ ::= { vimMgEntry 2 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.3
+ vmAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed media gateway by lock and unlock commands."
+ ::= { vimMgEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.4
+ vmIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:IP
+ Remark:IP address of the connected media gateway."
+ ::= { vimMgEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.5
+ vmDomainName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Domain Name
+ Remark:Domain name of the connected media gateway."
+ ::= { vimMgEntry 5 }
+
+
+-- Switching Mode
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.6
+ vmSwitchingMode OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ mgcp(0),
+ eightECP(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Switching Mode
+ Remark:Switching mode of the media gateway. Select MGCP as default."
+ DEFVAL { mgcp }
+ ::= { vimMgEntry 6 }
+
+
+-- End Point Description
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.7
+ vmEndPoint OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ structured(1),
+ unStructured(2),
+ unStructuredHex(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Endpoint
+ Remark:Method of MGCP endpoint description. Select Unstructured as default."
+ DEFVAL { structured }
+ ::= { vimMgEntry 7 }
+
+
+-- MG Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.8
+ vmType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ audioCodes(1),
+ lgcMG(2),
+ lgcCS(3),
+ ipBSS(4),
+ analogLine(11),
+ vim(19),
+ tandem(20),
+ announcementServer(21),
+ interactiveVoiceResponse(31),
+ conferenceBridge(41),
+ packetRelay(51),
+ wiretap(61),
+ atm(71)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Type
+ Remark:(Read Only) Type of media gateway endpoint."
+ DEFVAL { digitalChannel }
+ ::= { vimMgEntry 8 }
+
+
+-- Max Physical Ports
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.9
+ vmMaxPhysicalPorts OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Ports
+ Remark:The total physical port number of the media gateway."
+ ::= { vimMgEntry 9 }
+
+
+-- Max Channels
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.11
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.10
+ vmMaxChannels OBJECT-TYPE
+ SYNTAX INTEGER (0..1024)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Channels
+ Remark:The total channel number of the virtual media gateway. Applicable to virtual media gateway only."
+ ::= { vimMgEntry 10 }
+
+
+-- Packetization Period
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.11
+ vmPacketizationPeriod OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ x20ms(20),
+ x40ms(40),
+ x60ms(60),
+ x80ms(80)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Packetization Period
+ Remark:The period over which encoded voice bits are collected for encapsulation in."
+ DEFVAL { x20ms }
+ ::= { vimMgEntry 11 }
+
+
+-- Codec Type
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.5.1.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.12
+ vmCodecType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ aLaw(0),
+ uLaw(1),
+ fr(2),
+ efr(3),
+ AMR-12-2(4),
+ g729b(5),
+ AMR-10-2(6),
+ AMR-7-95(7),
+ AMR-7-4(8),
+ AMR-6-7(9),
+ AMR-5-15(10),
+ AMR-5-9(11),
+ AMR-4-75(12),
+ g729(13),
+ null(255)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Codec Type
+ Remark:(Read Only) Codec type of the media gateway."
+ ::= { vimMgEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.13
+ vmAuditTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Audit Timer
+ Remark:The time interval between sending AUEP message from MGC to MGW to check the trunk status. Unit is second."
+ ::= { vimMgEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.14
+ vmPhysicalPortEntries OBJECT-TYPE
+ SYNTAX INTEGER (0..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Port Entries
+ Remark:The total number of the configured physical ports of this media gateway."
+ ::= { vimMgEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1.1.15
+ vmRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { vimMgEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.2
+ physicalPortTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PhysicalPortEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { vimMg 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.2.1
+ physicalPortEntry OBJECT-TYPE
+ SYNTAX PhysicalPortEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:2"
+ INDEX { ppIndex, ppMGIndex }
+ ::= { physicalPortTable 1 }
+
+
+ PhysicalPortEntry ::=
+ SEQUENCE {
+ ppMGIndex
+ INTEGER,
+ ppIndex
+ INTEGER,
+ ppAdministrationState
+ AdminStateChoices,
+ ppUsedFlag
+ INTEGER,
+ ppStatus
+ INTEGER,
+ ppPlatID
+ INTEGER
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.2.1.1
+ ppMGIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..8)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:MG Index
+ Remark:(Read Only) Index number of the serving media gateway."
+ ::= { physicalPortEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.2.1.2
+ ppIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..32)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Port ID
+ Remark:(Read Only) Physical port index number ranges from 1 to 32."
+ ::= { physicalPortEntry 2 }
+
+
+-- Administration State
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.2.1.3
+ ppAdministrationState OBJECT-TYPE
+ SYNTAX AdminStateChoices
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of the managed physical port by lock and unlock commands."
+ ::= { physicalPortEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.2.1.4
+ ppUsedFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ idle(0),
+ inUse(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Used Flag
+ Remark:The occupancy status of the physical port."
+ ::= { physicalPortEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.2.1.5
+ ppStatus OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notReady(0),
+ ready(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Status
+ Remark:The current availability status of the physical port."
+ ::= { physicalPortEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.2.2.1.6
+ ppPlatID OBJECT-TYPE
+ SYNTAX INTEGER (0..1)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Platform ID
+ Remark:Specify the serving MSC platform, either MSC-0 or MSC-1."
+ ::= { physicalPortEntry 6 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.3
+ routingZone OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.3.1
+ routingZoneTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RoutingZoneEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { routingZone 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.3.1.1
+ routingZoneEntry OBJECT-TYPE
+ SYNTAX RoutingZoneEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { rzIndex }
+ ::= { routingZoneTable 1 }
+
+
+ RoutingZoneEntry ::=
+ SEQUENCE {
+ rzIndex
+ INTEGER,
+ rzSite
+ INTEGER,
+ rzRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.3.1.1.1
+ rzIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Routing zone index number ranges from 1 to 31."
+ ::= { routingZoneEntry 1 }
+
+
+-- DPC
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.3.1.1.2
+ rzSite OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ local(0),
+ remote(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Site
+ Remark:Determine each Routing Zone which configured in MSC Routing Zone table to Local or Remote. iRLS will not be invocated by the calls within local Routing Zone."
+ ::= { routingZoneEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.15.2.3.1.1.3
+ rzRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { routingZoneEntry 3 }
+
+
+
+ END
+
+--
+-- LGC-SS-RLS-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-RTPPROXY-MIB.my b/omc/bin/mib/LGC-SS-RTPPROXY-MIB.my
new file mode 100644
index 0000000..420d477
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-RTPPROXY-MIB.my
@@ -0,0 +1,225 @@
+--
+-- LGC-SS-RTPPROXY-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Monday, February 27, 2012 at 17:18:47
+--
+
+ LGC-SS-RTPPROXY-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString
+ FROM LGC-MIB
+ IpAddress, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18
+ rtpproxy MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 18 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { rtpproxy 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.18.2
+ parameter OBJECT IDENTIFIER ::= { rtpproxy 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18.2.1.1
+ rtpProxyFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:RtpProxy Flag
+ Remark:RtpProxy Flag."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18.2.1.2
+ applicationType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ tandem(0),
+ implicittandem(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Application Type
+ Remark:Application Type."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18.2.1.3
+ domainName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Domain Name
+ Remark:Domain Name."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18.2.1.4
+ interBaseUdpPortRGW OBJECT-TYPE
+ SYNTAX INTEGER (0..511)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Inter Base Udp Port (RGW)
+ Remark:Inter Base Udp Port (RGW)."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18.2.1.5
+ intraBaseUdpPortAC OBJECT-TYPE
+ SYNTAX INTEGER (0..511)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Intra Base Udp Port (AC)
+ Remark:Intra Base Udp Port (AC)."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18.2.1.6
+ interAddressRGW OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Inter Address (RGW)
+ Remark:Inter Address (RGW)."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18.2.1.7
+ intraAddressAC OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Intra Address (AC)
+ Remark:Intra Address (AC)."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18.2.2
+ voiceStreamIP OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18.2.2.1
+ iPEndpoint1 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:IP Endpoint 1
+ Remark:IP Endpoint 1."
+ ::= { voiceStreamIP 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18.2.2.2
+ iPEndpoint2 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:IP Endpoint 2
+ Remark:IP Endpoint 2."
+ ::= { voiceStreamIP 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18.2.2.3
+ iPEndpoint3 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:IP Endpoint 3
+ Remark:IP Endpoint 3."
+ ::= { voiceStreamIP 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.18.2.2.4
+ iPEndpoint4 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:IP Endpoint 3
+ Remark:IP Endpoint 3."
+ ::= { voiceStreamIP 4 }
+
+
+
+ END
+
+--
+-- LGC-SS-RTPPROXY-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-SCCP-MIB.my b/omc/bin/mib/LGC-SS-SCCP-MIB.my
new file mode 100644
index 0000000..ca1b9dc
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-SCCP-MIB.my
@@ -0,0 +1,1280 @@
+--
+-- LGC-SS-SCCP-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Monday, August 22, 2011 at 13:38:48
+--
+
+ LGC-SS-SCCP-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString16, RowStatus
+ FROM LGC-MIB
+ IpAddress, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3
+ sccp MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { plat 3 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.2
+ plat OBJECT IDENTIFIER ::= { wxc2 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2
+ parameter OBJECT IDENTIFIER ::= { sccp 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.1.1
+ version OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Version
+ Remark:Version of SCCP software."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.1.2
+ systemCommand OBJECT-TYPE
+ SYNTAX INTEGER { reset(0) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.2
+ localNode OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.2.1
+ localNodeTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LocalNodeEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { localNode 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.4.1
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.2.1.1
+ localNodeEntry OBJECT-TYPE
+ SYNTAX LocalNodeEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { lnIndex }
+ ::= { localNodeTable 1 }
+
+
+ LocalNodeEntry ::=
+ SEQUENCE {
+ lnIndex
+ INTEGER,
+ lnTitle
+ OCTET STRING,
+ lnNetworkIndicator
+ INTEGER,
+ lnMSISDN
+ OCTET STRING,
+ lnIP0
+ IpAddress,
+ lnIP1
+ IpAddress,
+ acnVersionId
+ INTEGER,
+ lnRowStatus
+ RowStatus
+ }
+
+-- Route Selection RZS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.2.1.1.1
+ lnIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:The Sub-System Number (SSN) of this local node."
+ ::= { localNodeEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.3
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.2.1.1.2
+ lnTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Local Node name for identification."
+ ::= { localNodeEntry 2 }
+
+
+-- National Destination Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.2.1.1.3
+ lnNetworkIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ international(0),
+ internationalSpare(1),
+ national(2),
+ nationalSpare(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NI
+ Remark:Network Indicator identifies the type of network."
+ ::= { localNodeEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.2.1.1.4
+ lnMSISDN OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..18))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSISDN
+ Remark:The E.164 node address of this local node."
+ ::= { localNodeEntry 4 }
+
+
+-- DPC
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.2.1.1.5
+ lnIP0 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:IP 0
+ Remark:The IP address of the local node server 0."
+ ::= { localNodeEntry 5 }
+
+
+-- DPC
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.2.1.1.6
+ lnIP1 OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:IP 1
+ Remark:The IP address of the local node server 1."
+ ::= { localNodeEntry 6 }
+
+
+-- Route Selection RZS Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.2.1.1.7
+ acnVersionId OBJECT-TYPE
+ SYNTAX INTEGER (1..31)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Routing Zone Set Index for the Routing Selection."
+ ::= { localNodeEntry 7 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.11
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.2.1.1.8
+ lnRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { localNodeEntry 8 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3
+ gTT OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1
+ gTTTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF GTTEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gTT 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1
+ gTTEntry OBJECT-TYPE
+ SYNTAX GTTEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { gttIndex }
+ ::= { gTTTable 1 }
+
+
+ GTTEntry ::=
+ SEQUENCE {
+ gttIndex
+ INTEGER,
+ gttGTTState
+ INTEGER,
+ gttNumberPlan
+ INTEGER,
+ gttTranslationType
+ INTEGER,
+ gttStartNumber
+ OCTET STRING,
+ gttEndNumber
+ OCTET STRING,
+ gttNetworkIndicate
+ INTEGER,
+ gttDPC
+ INTEGER,
+ gttSSN
+ INTEGER,
+ gttRouteIndicator
+ INTEGER,
+ gttAddressIndicator
+ INTEGER,
+ gttReplaceStartDigit
+ INTEGER,
+ gttReplaceEndDigit
+ INTEGER,
+ gttReplacingNumberPlan
+ INTEGER,
+ gttReplacingDigits
+ OCTET STRING,
+ acnVersionID
+ INTEGER,
+ gttRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.1
+ gttIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1023)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:GTT index number ranges from 0 to 1023."
+ ::= { gTTEntry 1 }
+
+
+-- Country Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.2
+ gttGTTState OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Admin State
+ Remark:Control the operation of this Global Title Translation (GTT) entry."
+ ::= { gTTEntry 2 }
+
+
+-- International Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.3
+ gttNumberPlan OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ imsi-or-msisdn-ansi(0),
+ msisdn(1),
+ imsi(6),
+ gt(7)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Input Numbering Plan
+ Remark:Type of the input number."
+ ::= { gTTEntry 3 }
+
+
+-- National Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.7
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.4
+ gttTranslationType OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Translation Type
+ Remark:Translation examines the destination address and decides how to identify it over the network."
+ ::= { gTTEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.5
+ gttStartNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Number Start
+ Remark:The beginning of the number range for this GTT entry."
+ ::= { gTTEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.6
+ gttEndNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Number End
+ Remark:The end of the number range for this GTT entry."
+ ::= { gTTEntry 6 }
+
+
+-- National Destination Code
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.7
+ gttNetworkIndicate OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ international(0),
+ internationalSpare(1),
+ national(2),
+ nationalSpare(3)
+ }
+ UNITS "0"
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Network Indicator
+ Remark:Network Indicator identifies the type of network."
+ ::= { gTTEntry 7 }
+
+
+-- MSRN Range Start
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.8
+ gttDPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:DPC
+ Remark:Destination Point Code in decimal format."
+ ::= { gTTEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.9
+ gttSSN OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SSN
+ Remark:Sub-System Number in decimal format."
+ ::= { gTTEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.10
+ gttRouteIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ onGT(0),
+ onSSN(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Routing Indicator
+ Remark:SSN for subsystem, GT for global title.
- For IMSI and MSISDN, select Route on SSN.
- For the connected network, select Route on GT."
+ ::= { gTTEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.11
+ gttAddressIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ null(0),
+ dpcSSN(3),
+ gtSSN(6),
+ gtDPCSSN(7)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Address Indicator
+ Remark:Contribution of SCCP address."
+ ::= { gTTEntry 11 }
+
+
+-- Operability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.12
+ gttReplaceStartDigit OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Replace Digits Start
+ Remark:If the number is going to replace digits, start with this digit (position from left to right).
- Range = 0 - 16, 0 means void."
+ ::= { gTTEntry 12 }
+
+
+-- Operability Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.3.1.1.5
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.13
+ gttReplaceEndDigit OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Replace Digits End
+ Remark:If the number is going to replace digits, end on this digit (position from left to right).
- Range = 0 - 16, 0 means void."
+ ::= { gTTEntry 13 }
+
+
+-- International Prefix
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.6
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.14
+ gttReplacingNumberPlan OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ msisdn(1),
+ imsi(6),
+ gt(7)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Output Numbering Plan
+ Remark:Type of the output number."
+ ::= { gTTEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.15
+ gttReplacingDigits OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Replace Digits
+ Remark:If the number is going to replace digits, replace them with this string."
+ ::= { gTTEntry 15 }
+
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.16
+ acnVersionID OBJECT-TYPE
+ SYNTAX INTEGER (0..1023)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:ACN Version Index
+ Remark:Index number range from 0 to 1023."
+ ::= { gTTEntry 16 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.11
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.3.1.1.17
+ gttRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { gTTEntry 17 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4
+ acnVersion OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1
+ acnVersionTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF AcnVersionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { acnVersion 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1
+ acnVersionEntry OBJECT-TYPE
+ SYNTAX AcnVersionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:ACN Version"
+ INDEX { acnIndex }
+ ::= { acnVersionTable 1 }
+
+
+ AcnVersionEntry ::=
+ SEQUENCE {
+ acnIndex
+ INTEGER,
+ acnVersionState
+ INTEGER,
+ acnLocationUpdating
+ INTEGER,
+ acnLocationCancellation
+ INTEGER,
+ acnRoamingNumberEnquiry
+ INTEGER,
+ acnLocationInfoRetrieval
+ INTEGER,
+ acnResetContext
+ INTEGER,
+ acnHandoverControl
+ INTEGER,
+ acnEquipmentManagement
+ INTEGER,
+ acnInfoRetrieval
+ INTEGER,
+ acnInterVLRInfoRetrieval
+ INTEGER,
+ acnSubscriberDataManagement
+ INTEGER,
+ acnTracing
+ INTEGER,
+ acnNetworkFunctionalSS
+ INTEGER,
+ acnNetworkUnstructuredSS
+ INTEGER,
+ acnShortMessageGateway
+ INTEGER,
+ acnMOShortMessageRelay
+ INTEGER,
+ acnShortMessageAlert
+ INTEGER,
+ acnShortMessageWDM
+ INTEGER,
+ acnMTShortMessageRelay
+ INTEGER,
+ acnIMSIRetrieval
+ INTEGER,
+ acnMSPurging
+ INTEGER,
+ acnSubscriberInfoEnquiry
+ INTEGER,
+ acnAnyTimeInfoEnquiry
+ INTEGER,
+ acnCallControlTransfer
+ INTEGER,
+ acnSSInvocationNotification
+ INTEGER,
+ acnGroupCallControl
+ INTEGER,
+ acnGPRSLocationUpdating
+ INTEGER,
+ acnGPRSLocationInfoRetrieval
+ INTEGER,
+ acnFailureReporting
+ INTEGER,
+ acnGPRSNotifying
+ INTEGER,
+ acnReporting
+ INTEGER,
+ acnCallCompletion
+ INTEGER,
+ acnInternalSIWFSAllocation
+ INTEGER,
+ acnInternalSecurityTriplets
+ INTEGER,
+ acnInternalSubscriberInterrogating
+ INTEGER,
+ acnInternalHLRSubscriberManagement
+ INTEGER,
+ acnInternalHLRPingAUC
+ INTEGER,
+ acnSupportedCamelPhases
+ INTEGER,
+ acnRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.1
+ acnIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..1023)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 0 to 1023."
+ ::= { acnVersionEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.2
+ acnVersionState OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Version State
+ Remark:GTT State."
+ ::= { acnVersionEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.3
+ acnLocationUpdating OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Location Updating
+ Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.4
+ acnLocationCancellation OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.5
+ acnRoamingNumberEnquiry OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Roaming Number Enquiry
+ Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.6
+ acnLocationInfoRetrieval OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.7
+ acnResetContext OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.8
+ acnHandoverControl OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.9
+ acnEquipmentManagement OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.10
+ acnInfoRetrieval OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.11
+ acnInterVLRInfoRetrieval OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.12
+ acnSubscriberDataManagement OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.13
+ acnTracing OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.14
+ acnNetworkFunctionalSS OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.15
+ acnNetworkUnstructuredSS OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.16
+ acnShortMessageGateway OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.17
+ acnMOShortMessageRelay OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.18
+ acnShortMessageAlert OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.19
+ acnShortMessageWDM OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.20
+ acnMTShortMessageRelay OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.21
+ acnIMSIRetrieval OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.22
+ acnMSPurging OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.23
+ acnSubscriberInfoEnquiry OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 23 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.24
+ acnAnyTimeInfoEnquiry OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 24 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.25
+ acnCallControlTransfer OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.26
+ acnSSInvocationNotification OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.27
+ acnGroupCallControl OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 27 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.28
+ acnGPRSLocationUpdating OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.29
+ acnGPRSLocationInfoRetrieval OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 29 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.30
+ acnFailureReporting OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 30 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.31
+ acnGPRSNotifying OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 31 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.32
+ acnReporting OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 32 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.33
+ acnCallCompletion OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 33 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.34
+ acnInternalSIWFSAllocation OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 34 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.35
+ acnInternalSecurityTriplets OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 35 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.36
+ acnInternalSubscriberInterrogating OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 36 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.37
+ acnInternalHLRSubscriberManagement OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 37 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.38
+ acnInternalHLRPingAUC OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ version1(1),
+ version2(2),
+ version3(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 38 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.39
+ acnSupportedCamelPhases OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ phase1(1),
+ phase12(3),
+ phase123(7)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:VLR Supported Camel Phases
+ Remark:Numbering Plan. Describe which numbering plan will be used for the global title. The numbering plan chosen will aid the routing system in determining the correct network system to direct the message."
+ ::= { acnVersionEntry 39 }
+
+
+-- Row Status
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4.1.11
+ -- 1.3.6.1.4.1.1373.2.3.2.3.2.4.1.1.40
+ acnRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { acnVersionEntry 40 }
+
+
+
+ END
+
+--
+-- LGC-SS-SCCP-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-SMEG-MIB.my b/omc/bin/mib/LGC-SS-SMEG-MIB.my
new file mode 100644
index 0000000..a1d5a28
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-SMEG-MIB.my
@@ -0,0 +1,313 @@
+--
+-- LGC-SS-SMEG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, January 20, 2011 at 10:07:05
+--
+
+ LGC-SS-SMEG-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, RowStatus, DisplayString
+ FROM LGC-MIB
+ IpAddress, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11
+ smeg MODULE-IDENTITY
+ LAST-UPDATED "200810151006Z" -- October 15, 2008 at 10:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 11 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { smeg 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2
+ parameter OBJECT IDENTIFIER ::= { smeg 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.1.1
+ license OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:License
+ Remark:(Read Only) The maximum BHSM capacity of SMEG determined by License Control. SMEG will stop transiting SMS once the traffic reaches the maximum BHSM."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.1.2
+ countryCode OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..2))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CC
+ Remark:Country Code identifies the country's network."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.1.3
+ nationalDestinationCode OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NDC
+ Remark:National Destination Code defines the national calling area or national network to which the subscriber belongs."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.1.4
+ maxSMSPerEmail OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max SMS per Email
+ Remark:Define the maximum number of SMS can be concatenated per long email."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.1.5
+ localDomainName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Local Domain Name
+ Remark:This name is the domain-part after the @ sign in the email address. This email address is used to transfer emails from email server to SMEG. Normally, it is the SMEG's host name."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.1.6
+ domainNameForEmail OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Domain Name for Email
+ Remark:The domain name of email server is the domain-part after the @ sign in the email address. This email address is used to communicate emails between external email servers and the email server which connected with SMEG. It is the domain name which can be looked up in the public Domain Name System."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.1.7
+ saveCommand OBJECT-TYPE
+ SYNTAX INTEGER { saveParameter(1) }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.1.8
+ flag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Flag
+ Remark:Open or close SMEG service."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.2
+ protocol OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.2.1
+ sMPPLinkAlias OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SMPP Link Alias
+ Remark:Alias of the SMPP link which corresponds to the link configured in EMS > Configuration > NSS > SMPP."
+ ::= { protocol 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.2.2
+ sMTPEmailServerIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SMTP Email Server IP
+ Remark:IP address of the email server."
+ ::= { protocol 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.2.3
+ sMTPAuthenticationFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SMTP AUTH Flag
+ Remark:SMTP Authentication provides an access control mechanism. It is used to allow legitimate users to relay mail while denying relay service to unauthorized users, such as spammers. Configure the authentication parameters when it is enabled on the email server side."
+ ::= { protocol 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.2.4
+ sMTPAuthenticationUserName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SMTP AUTH User
+ Remark:User name for SMTP Authentication."
+ ::= { protocol 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.2.5
+ sMTPAuthenticationPassword OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SMTP AUTH Password
+ Remark:Password for SMTP Authentication."
+ ::= { protocol 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.3
+ allowedUserPrefix OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.3.1
+ allowedUserPrefixTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF AllowedUserPrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { allowedUserPrefix 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.3.1.1
+ allowedUserPrefixEntry OBJECT-TYPE
+ SYNTAX AllowedUserPrefixEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { aupIndex }
+ ::= { allowedUserPrefixTable 1 }
+
+
+ AllowedUserPrefixEntry ::=
+ SEQUENCE {
+ aupIndex
+ INTEGER,
+ aupPrefix
+ OCTET STRING,
+ aupRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.3.1.1.1
+ aupIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Allowed user prefix index number ranges from 1 to 16."
+ ::= { allowedUserPrefixEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.3.1.1.2
+ aupPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Prefix
+ Remark:Prefix determines the range of subscribers allowed to receive email messages."
+ ::= { allowedUserPrefixEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.11.2.3.1.1.3
+ aupRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { allowedUserPrefixEntry 3 }
+
+
+
+ END
+
+--
+-- LGC-SS-SMEG-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-SMPP-MIB.my b/omc/bin/mib/LGC-SS-SMPP-MIB.my
new file mode 100644
index 0000000..176c788
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-SMPP-MIB.my
@@ -0,0 +1,400 @@
+--
+-- LGC-SS-SMPP-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, September 23, 2010 at 12:15:09
+--
+
+ LGC-SS-SMPP-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString16, RowStatus
+ FROM LGC-MIB
+ IpAddress, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18
+ smpp MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { platform 18 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.2
+ platform OBJECT IDENTIFIER ::= { wxc2 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString16
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { smpp 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2
+ parameter OBJECT IDENTIFIER ::= { smpp 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2
+ sMPPLink OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1
+ sMPPLinkTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SMPPLinkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMPPLink 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1
+ sMPPLinkEntry OBJECT-TYPE
+ SYNTAX SMPPLinkEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { slIndex }
+ ::= { sMPPLinkTable 1 }
+
+
+ SMPPLinkEntry ::=
+ SEQUENCE {
+ slIndex
+ INTEGER,
+ slLinkAlias
+ OCTET STRING,
+ slLinkType
+ INTEGER,
+ slServerType
+ INTEGER,
+ slSessionType
+ INTEGER,
+ slSystemID
+ OCTET STRING,
+ slPassword
+ OCTET STRING,
+ slSystemType
+ OCTET STRING,
+ slLocalGTT
+ OCTET STRING,
+ slRemoteGTT
+ OCTET STRING,
+ slLocalIP
+ IpAddress,
+ slRemoteIP
+ IpAddress,
+ slSessionInitTimer
+ INTEGER,
+ slEnquireLinkTimer
+ INTEGER,
+ slInactivityTimer
+ INTEGER,
+ slResponseTimer
+ INTEGER,
+ slLocalSSN
+ INTEGER,
+ slRemoteSSN
+ INTEGER,
+ slFlag
+ INTEGER,
+ slRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.1
+ slIndex OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:SMPP connection index number ranges from 0 to 31."
+ ::= { sMPPLinkEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.2
+ slLinkAlias OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Link Alias
+ Remark:Name of the SMPP connection. Generally use the name of the remote SMPP entity."
+ ::= { sMPPLinkEntry 2 }
+
+
+-- Dialing Prefix Set ID
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1.1.4
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.3
+ slLinkType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ udp(0),
+ tcp(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Link Type
+ Remark:Transport protocol of the SMPP connection."
+ DEFVAL { udp }
+ ::= { sMPPLinkEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.4
+ slServerType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ client(0),
+ server(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Server Type
+ Remark:Specify the application type of the local SMPP entity.
- Client = Work as External Short Message Entity (ESME)
- Server = Work as Short Message Center (SMSC)"
+ DEFVAL { client }
+ ::= { sMPPLinkEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.5
+ slSessionType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bindTX(0),
+ bindRX(1),
+ bindTRX(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Session Type
+ Remark:Specify how the local SMPP entity shall bind to the remote SMPP entity.
- Tx = Work as Transmitter
- Rx = Work as Receiver
- TRx = Work as Transceiver"
+ ::= { sMPPLinkEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.6
+ slSystemID OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:System ID
+ Remark:Specify the user name for the gateway to use when connecting to the remote SMPP entity."
+ ::= { sMPPLinkEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.7
+ slPassword OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Password
+ Remark:Specify the password for the gateway to use when connecting to the remote SMPP entity."
+ ::= { sMPPLinkEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.8
+ slSystemType OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..12))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:System Type
+ Remark:An optional login parameter that should be set only if required by the remote SMPP entity. The remote SMPP administrator will provide this value, which when required, is usually a short text string."
+ ::= { sMPPLinkEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.9
+ slLocalGTT OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Local GTT
+ Remark:Specify the GTT of local SMPP entity."
+ ::= { sMPPLinkEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.10
+ slRemoteGTT OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Remote GTT
+ Remark:Specify the GTT of remote SMPP entity."
+ ::= { sMPPLinkEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.11
+ slLocalIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Local IP
+ Remark:Specify the IP address of local SMPP entity."
+ ::= { sMPPLinkEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.12
+ slRemoteIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Remote IP
+ Remark:Specify the IP address of remote SMPP entity."
+ ::= { sMPPLinkEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.13
+ slSessionInitTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Session Init Timer
+ Remark:Specify the maximum time-out value for the time period between an application's network connection setup request and BIND request.
If the time-out value is reached, the connection is terminated."
+ ::= { sMPPLinkEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.14
+ slEnquireLinkTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Enquire Link Timer
+ Remark:Specify the minimum time-out period between the SMPP service's sending of ENQUIRE LINK requests to an application."
+ ::= { sMPPLinkEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.15
+ slInactivityTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Inactivity Timer
+ Remark:Specify the maximum time-out period allowed for inactivity between an application's request towards the SMPP service.
If the time-out value is reached, the connection is terminated."
+ ::= { sMPPLinkEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.16
+ slResponseTimer OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Response Timer
+ Remark:Specify the maximum time-out period allowed between the SMPP service sends a request to an application and a response to the request is received.
If the time-out value is reached, the connection is terminated."
+ ::= { sMPPLinkEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.17
+ slLocalSSN OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Local SSN
+ Remark:Specify the subsystem number of local SMPP entity."
+ ::= { sMPPLinkEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.18
+ slRemoteSSN OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Remote SSN
+ Remark:Specify the subsystem number of remote SMPP entity."
+ ::= { sMPPLinkEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.19
+ slFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Flag
+ Remark:Enable or disable this SMPP connection."
+ ::= { sMPPLinkEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.18.2.2.1.1.20
+ slRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sMPPLinkEntry 20 }
+
+
+
+ END
+
+--
+-- LGC-SS-SMPP-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-SMSC-MIB.my b/omc/bin/mib/LGC-SS-SMSC-MIB.my
new file mode 100644
index 0000000..bc49f36
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-SMSC-MIB.my
@@ -0,0 +1,546 @@
+--
+-- LGC-SS-SMSC-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Tuesday, May 03, 2011 at 09:17:38
+--
+
+ LGC-SS-SMSC-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, RowStatus, DisplayString
+ FROM LGC-MIB
+ OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5
+ smsc MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 5 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { smsc 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2
+ parameter OBJECT IDENTIFIER ::= { smsc 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.1.1
+ cDRFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CDR Flag
+ Remark:Enable or disable the Call Detail Record generation of short messages."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.1.2
+ sMValidity OBJECT-TYPE
+ SYNTAX INTEGER (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SM Validity
+ Remark:Define the maximum duration of a pending message which should be kept in sending array till reaches the called subscriber. Messages can't send out in the validity period will be deleted. The minimum unit is 1 second."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.1.3
+ logFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Log Flag
+ Remark:Enable or disable SM Log generation of the short message service."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.1.4
+ command OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ deletePendingSM(5),
+ reset(6)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.1.5
+ localPollingFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Enable or disable resend pending SMS to unattainable local users."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.1.6
+ localRoamingOutPollingFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Enable or disable resend pending SMS to unattainable outbound roaming users."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.1.7
+ visitorRoamingInPollingFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Enable or disable resend pending SMS to unattainable inbound roaming users."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.1.8
+ otherPollingFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Enable or disable resend pending SMS to other unattainable users."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.1.9
+ pollingNumber OBJECT-TYPE
+ SYNTAX INTEGER (0..64)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Define the maximum port number that the queue of pending SMS may grow to."
+ ::= { system 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.1.10
+ priorityFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:SM_RP_PRI Flag
+ Remark:Specify the priority parameter of SM_RP_PRI. Enable = High; Disable = Low."
+ ::= { system 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.1.11
+ tpReplyPathFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:TP Reply Path Flag
+ Remark:Enable or disable TP-Reply-Path parameter in the SMS-DELIVER data unit. Enable = Reply path is available; Disable = Reply path is unavailable."
+ ::= { system 11 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.2
+ mSISDNSegment OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.2.1
+ mSISDNSegmentTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MSISDNSegmentEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mSISDNSegment 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.2.1.1
+ mSISDNSegmentEntry OBJECT-TYPE
+ SYNTAX MSISDNSegmentEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { msIndex }
+ ::= { mSISDNSegmentTable 1 }
+
+
+ MSISDNSegmentEntry ::=
+ SEQUENCE {
+ msIndex
+ INTEGER,
+ msStartNumber
+ OCTET STRING,
+ msEndNumber
+ OCTET STRING,
+ msRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.2.1.1.1
+ msIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:MSISDN segment index number ranges from 0 to 15."
+ ::= { mSISDNSegmentEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.2.1.1.2
+ msStartNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSISDN Start
+ Remark:First MSISDN in the range. Only the involved subscribers are allowed to use the short message service."
+ ::= { mSISDNSegmentEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.2.1.1.3
+ msEndNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MSISDN End
+ Remark:Last MSISDN in the range. Only the involved subscribers are allowed to use the short message service."
+ ::= { mSISDNSegmentEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.2.1.1.4
+ msRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { mSISDNSegmentEntry 4 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.8
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.3
+ sMPP OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.8.1
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.3.1
+ sMPPTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SMPPEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMPP 1 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.8.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.3.1.1
+ sMPPEntry OBJECT-TYPE
+ SYNTAX SMPPEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { smppIndex }
+ ::= { sMPPTable 1 }
+
+
+ SMPPEntry ::=
+ SEQUENCE {
+ smppIndex
+ INTEGER,
+ smppLinkAlias
+ OCTET STRING,
+ smppSessionType
+ INTEGER,
+ smppServiceNumber
+ OCTET STRING,
+ smppDataCodingScheme
+ INTEGER,
+ smppPlatformNum
+ INTEGER,
+ smppTimeToLive
+ INTEGER,
+ smppManipulationFlag
+ INTEGER,
+ smppTON
+ INTEGER,
+ smppNPI
+ INTEGER,
+ smppRowStatus
+ RowStatus
+ }
+
+-- Index
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.8.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.3.1.1.1
+ smppIndex OBJECT-TYPE
+ SYNTAX INTEGER { create(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:SMPP connection index number ranges from 0 to 31."
+ ::= { sMPPEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.3.1.1.2
+ smppLinkAlias OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Link Alias
+ Remark:Alias of the SMPP link which corresponds to the link configured in EMS > Configuration > NSS > SMPP."
+ ::= { sMPPEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.3.1.1.3
+ smppSessionType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ bindTX(0),
+ bindRX(1),
+ bindTRX(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Session Type
+ Remark:Specify how the local SMPP entity shall bind to the remote SMPP entity.
- Tx = Work as Transmitter
- Rx = Work as Receiver
- TRx = Work as Transceiver"
+ ::= { sMPPEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.3.1.1.4
+ smppServiceNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Service Number
+ Remark:Specify the service center number which will be displayed on the terminating mobile."
+ ::= { sMPPEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.3.1.1.5
+ smppDataCodingScheme OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ smpp7def7(0),
+ smpp8dcs4def7(1),
+ smpp8dcs0def7(2),
+ smpp7def8(16),
+ smpp8dcs4def8(17),
+ smpp8dcs0def8(18)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:DCS
+ Remark:Data Coding Scheme"
+ ::= { sMPPEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.3.1.1.6
+ smppPlatformNum OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ plat0(0),
+ plat1(1),
+ ignore(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Platform ID
+ Remark:Specify the serving MSC platform."
+ ::= { sMPPEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.3.1.1.7
+ smppTimeToLive OBJECT-TYPE
+ SYNTAX INTEGER (0..2147483647)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Time to Live
+ Remark:Define the maximum duration of a pending message which should be kept in sending array till reaches the called subscriber. Messages can't send out in the validity period will be deleted.
- Range = 1 - 604800 seconds"
+ ::= { sMPPEntry 7 }
+
+
+--
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.3.1.1.8
+ smppManipulationFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Manipulation Flag
+ Remark:Enable or disable CLI Manipulation in XAPP setting."
+ ::= { sMPPEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.3.1.1.9
+ smppTON OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ unknown(0),
+ international(1),
+ national(2),
+ networkSpecific(3),
+ subscriberNumber(4),
+ alphanumeric(5),
+ abbreviated(6)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:TON
+ Remark:Indicate Type of Number for destination. If not known set to Unknown."
+ ::= { sMPPEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.3.1.1.10
+ smppNPI OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ unknown(0),
+ isdn(1),
+ data(3),
+ telex(4),
+ landMobile(6),
+ national(8),
+ private(9),
+ ermes(10),
+ internet(14),
+ wapClientID(18)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:NPI
+ Remark:Indicate Numbering Plan Indicator for destination. If not known set to Unknown."
+ ::= { sMPPEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.5.2.3.1.1.11
+ smppRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sMPPEntry 11 }
+
+
+
+ END
+
+--
+-- LGC-SS-SMSC-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-SPGW-MIB.my b/omc/bin/mib/LGC-SS-SPGW-MIB.my
new file mode 100644
index 0000000..5c43802
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-SPGW-MIB.my
@@ -0,0 +1,1207 @@
+--
+-- LGC-SS-SPGW-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Sunday, May 27, 2018 at 17:13:04
+--
+
+-- LGC-SS-SPGW-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Tuesday, May 01, 2018 at 14:31:01
+--
+-- LGC-SS-SPGW-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Friday, April 27, 2018 at 17:30:48
+--
+-- LGC-SS-SPGW-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Wednesday, April 25, 2018 at 14:46:11
+--
+-- LGC-SS-SPGW-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, April 19, 2018 at 19:39:14
+--
+-- LGC-SS-SPGW-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Sunday, April 08, 2018 at 15:35:42
+--
+-- LGC-SS-SPGW-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Sunday, April 08, 2018 at 15:34:37
+--
+-- LGC-SS-SPGW-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, March 22, 2018 at 10:39:37
+--
+-- LGC-SS-MME-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Wednesday, March 21, 2018 at 17:28:26
+--
+
+ LGC-SS-SPGW-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, RowStatus
+ FROM LGC-MIB
+ IpAddress, Integer32, Unsigned32, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.28
+ spgw MODULE-IDENTITY
+ LAST-UPDATED "200811241438Z" -- November 24, 2008 at 14:38 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ ::= { application 28 }
+
+
+
+--
+-- Type definitions
+--
+
+-- 1.3.6.1.4.1.1373.2.3.3.28
+-- November 24, 2008 at 14:38 GMT
+--
+-- Type definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.28
+-- November 24, 2008 at 14:38 GMT
+--
+-- Type definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.28
+-- November 24, 2008 at 14:38 GMT
+--
+-- Type definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.28
+-- November 24, 2008 at 14:38 GMT
+--
+-- Type definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.28
+-- November 24, 2008 at 14:38 GMT
+--
+-- Type definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.38
+-- November 24, 2008 at 14:38 GMT
+--
+-- Type definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.6
+-- November 24, 2008 at 14:38 GMT
+--
+-- Type definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.15
+-- November 24, 2008 at 14:38 GMT
+--
+-- Type definitions
+--
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- Node definitions
+--
+-- Node definitions
+--
+-- Node definitions
+--
+-- Node definitions
+--
+-- Node definitions
+--
+-- Node definitions
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.15.2
+-- 1.3.6.1.4.1.1373.2.3.3.6.2
+-- 1.3.6.1.4.1.1373.2.3.3.38.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2
+ parameter OBJECT IDENTIFIER ::= { spgw 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.15.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.1
+ networkParameter OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.15.2.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.1.1
+ s11IPAddress OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { networkParameter 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.15.2.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2
+ s1UIPAddress OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { networkParameter 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.15.2.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3
+ s1UPortNumber OBJECT-TYPE
+ SYNTAX Unsigned32 (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { networkParameter 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.15.2.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.1.4
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.1.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.1.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.4
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.1.4
+ sgiIPAddress OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { networkParameter 4 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.15.2.2.5
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.1.5
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.1.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.1.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.5
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.1.5
+ defaultDNSAddress OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { networkParameter 5 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.6
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.1.6
+ secondaryDNSAddress OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { networkParameter 6 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.15.2.2.6
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.1.6
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.1.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.1.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.7
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.1.7
+ ueIPAddressPool OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { networkParameter 7 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.1.7
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.1.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.1.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.9
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.8
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.1.8
+ ueIPAddressMask OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { networkParameter 8 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.1.10
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.1.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.1.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.9
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.9
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.9
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.1.9
+ redirectIPAddress OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { networkParameter 9 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.1.11
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.1.11
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.1.11
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.11
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.10
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.1.10
+ pcscfipAddress OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { networkParameter 10 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.15.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.2
+ controlParameter OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3.2
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.3.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.2.1
+ ueDefaultMTU OBJECT-TYPE
+ SYNTAX Unsigned32 (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { 1300 }
+ ::= { controlParameter 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.2.2
+ freeServerEnable OBJECT-TYPE
+ SYNTAX Integer32 (0..1)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { controlParameter 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.3
+ freeServerList OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1
+ freeServerListTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF FreeServerListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:freeServer List Table"
+ ::= { freeServerList 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1
+ freeServerListEntry OBJECT-TYPE
+ SYNTAX FreeServerListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:freeServer List Table"
+ INDEX { freeServerIndex }
+ ::= { freeServerListTable 1 }
+
+
+ FreeServerListEntry ::=
+ SEQUENCE {
+ freeServerIndex
+ INTEGER,
+ freeServerIP
+ IpAddress,
+ freeServerRowStatus
+ RowStatus
+ }
+
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1.0
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1.0
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1.0
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1.1
+ freeServerIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 16."
+ ::= { freeServerListEntry 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1.2
+ freeServerIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:IP."
+ ::= { freeServerListEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.3.1.1.3
+ freeServerRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { freeServerListEntry 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.4
+ defaultPCCuleList OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1
+ defaultPCCuleListTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF DefaultPCCuleListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Name:defaultPCCule List Table"
+ ::= { defaultPCCuleList 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1
+ defaultPCCuleListEntry OBJECT-TYPE
+ SYNTAX DefaultPCCuleListEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1 Name:defaultPCCule List Table"
+ INDEX { defaultPCCuleIndex }
+ ::= { defaultPCCuleListTable 1 }
+
+
+ DefaultPCCuleListEntry ::=
+ SEQUENCE {
+ defaultPCCuleIndex
+ INTEGER,
+ ruleName
+ OCTET STRING,
+ apnAMBRUL
+ INTEGER,
+ apnAMBRDL
+ INTEGER,
+ defaultPCCuleStatus
+ RowStatus
+ }
+
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.0
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.0
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.0
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.1
+ defaultPCCuleIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:Index number range from 1 to 16."
+ ::= { defaultPCCuleListEntry 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.1
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.2
+ ruleName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (1..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:rule Name."
+ ::= { defaultPCCuleListEntry 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.3
+ apnAMBRUL OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:apn AMBRUL."
+ ::= { defaultPCCuleListEntry 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.3
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.4
+ apnAMBRDL OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ Remark:apn AMBRDL."
+ ::= { defaultPCCuleListEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.4.1.1.5
+ defaultPCCuleStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { defaultPCCuleListEntry 5 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.15.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.5
+ diameterLocalSetting OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.15.2.3.1
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.1
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.5.1
+ localHostName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { diameterLocalSetting 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.2
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.5.2
+ localRealm OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { diameterLocalSetting 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.1.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.3
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.5.3
+ diameterConfigFilePath OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { diameterLocalSetting 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.1.4
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.1.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.1.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.5.4
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.5.4
+ diameterLogFunction OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { disable }
+ ::= { diameterLocalSetting 4 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.6
+ gxInterfaceSetting OBJECT IDENTIFIER ::= { parameter 6 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.1
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.6.1
+ gxFunctionEnabled OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { disable }
+ ::= { gxInterfaceSetting 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.2
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.6.2
+ dataChargingEnabled OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { disable }
+ ::= { gxInterfaceSetting 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.3
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.6.3
+ primaryPCRFHostName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gxInterfaceSetting 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.4
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.6.4
+ primaryPCRFRealm OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gxInterfaceSetting 4 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.2.5
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.2.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.2.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.5
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.6.5
+ primaryPCRFIPAddress OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gxInterfaceSetting 5 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.2.6
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.2.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.2.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.6
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.6.6
+ primaryPCRFPortNumber OBJECT-TYPE
+ SYNTAX Unsigned32 (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gxInterfaceSetting 6 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.2.7
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.2.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.2.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.7
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.6.7
+ secondaryPCRFHostName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gxInterfaceSetting 7 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.2.8
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.2.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.2.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.8
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.6.8
+ secondaryPCRFRealm OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gxInterfaceSetting 8 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.2.9
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.2.9
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.2.9
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.9
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.9
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.9
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.9
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.6.9
+ secondaryPCRFIPAddress OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gxInterfaceSetting 9 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.2.10
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.2.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.2.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.6.10
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.6.10
+ secondaryPCRFPortNumber OBJECT-TYPE
+ SYNTAX Unsigned32 (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { 0 }
+ ::= { gxInterfaceSetting 10 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.7
+ gyInterfaceSetting OBJECT IDENTIFIER ::= { parameter 7 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.3.1
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.3.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.3.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.1
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.7.1
+ gyFunctionEnabled OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { disable }
+ ::= { gyInterfaceSetting 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.3.2
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.3.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.3.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.2
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.7.2
+ ocsHostName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gyInterfaceSetting 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.3
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.7.3
+ ocsRealm OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gyInterfaceSetting 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.3.4
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.3.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.3.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.4
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.7.4
+ ocsIPAddress OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { gyInterfaceSetting 4 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.2.3.5
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.2.3.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.2.3.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.7.5
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.7.5
+ ocsPortNumber OBJECT-TYPE
+ SYNTAX Unsigned32 (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { 0 }
+ ::= { gyInterfaceSetting 5 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.3.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3.1.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.8
+ loggingLevelSetting OBJECT IDENTIFIER ::= { parameter 8 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.3.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3.1.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.1
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.8.1
+ outputPath OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { loggingLevelSetting 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3.1.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.3.1.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3.1.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.2
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.8.2
+ asyncSystemModule OBJECT-TYPE
+ SYNTAX Unsigned32 (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { 7 }
+ ::= { loggingLevelSetting 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3.1.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.3.1.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3.1.2.2
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.3
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.8.3
+ udpModule OBJECT-TYPE
+ SYNTAX Unsigned32 (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { 7 }
+ ::= { loggingLevelSetting 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3.1.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.3.1.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3.1.2.3
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.4
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.8.4
+ gtpv1UModule OBJECT-TYPE
+ SYNTAX Unsigned32 (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { 7 }
+ ::= { loggingLevelSetting 4 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3.1.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.3.1.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3.1.2.4
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.5
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.8.5
+ gtpv2CModule OBJECT-TYPE
+ SYNTAX Unsigned32 (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { 7 }
+ ::= { loggingLevelSetting 5 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3.1.2.5
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.3.1.2.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3.1.2.5
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.6
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.8.6
+ spgwAPPModule OBJECT-TYPE
+ SYNTAX Unsigned32 (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { 7 }
+ ::= { loggingLevelSetting 6 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3.1.2.6
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.3.1.2.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3.1.2.6
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.7
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.8.7
+ s11Module OBJECT-TYPE
+ SYNTAX Unsigned32 (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { 7 }
+ ::= { loggingLevelSetting 7 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3.1.2.7
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.3.1.2.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3.1.2.7
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.8
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.8.8
+ utilModule OBJECT-TYPE
+ SYNTAX Unsigned32 (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { 7 }
+ ::= { loggingLevelSetting 8 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3.1.2.8
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.3.1.2.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3.1.2.8
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.9
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.9
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.9
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.9
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.8.9
+ ittiModule OBJECT-TYPE
+ SYNTAX Unsigned32 (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { 7 }
+ ::= { loggingLevelSetting 9 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3.1.2.9
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.3.1.2.9
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3.1.2.9
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.10
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.8.10
+ gxModule OBJECT-TYPE
+ SYNTAX Unsigned32 (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { 7 }
+ ::= { loggingLevelSetting 10 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.6.2.1.3.1.2.10
+-- 1.3.6.1.4.1.1373.2.3.3.38.2.1.3.1.2.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.1.3.1.2.10
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.11
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.11
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.11
+-- 1.3.6.1.4.1.1373.2.3.3.28.2.8.11
+ -- 1.3.6.1.4.1.1373.2.3.3.28.2.8.11
+ gyModule OBJECT-TYPE
+ SYNTAX Unsigned32 (0..8)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ DEFVAL { 7 }
+ ::= { loggingLevelSetting 11 }
+
+
+
+ END
+
+--
+-- LGC-SS-SPGW-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-TMG-MIB.my b/omc/bin/mib/LGC-SS-TMG-MIB.my
new file mode 100644
index 0000000..c1b0ca5
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-TMG-MIB.my
@@ -0,0 +1,293 @@
+--
+-- LGC-SS-TMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, September 23, 2010 at 13:47:35
+--
+
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Friday, March 12, 2010 at 14:15:06
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, March 11, 2010 at 10:05:09
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, March 11, 2010 at 10:04:10
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Wednesday, March 10, 2010 at 14:44:19
+--
+-- LGC-SS-AMG-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Wednesday, March 10, 2010 at 11:35:26
+--
+
+ LGC-SS-TMG-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString
+ FROM LGC-MIB
+ IpAddress, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.20
+ tmg MODULE-IDENTITY
+ LAST-UPDATED "201003101054Z" -- March 10, 2010 at 10:54 GMT
+ ORGANIZATION
+ "altobridge"
+ CONTACT-INFO
+ "Contact-info."
+ DESCRIPTION
+ "Description."
+ REVISION "201003101055Z" -- March 10, 2010 at 10:55 GMT
+ DESCRIPTION
+ "1st Version"
+ ::= { application 20 }
+
+
+
+
+--
+-- Node definitions
+--
+
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3.3.18
+-- March 10, 2010 at 10:54 GMT
+-- March 10, 2010 at 10:55 GMT
+--
+-- Node definitions
+--
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+-- 1.3.6.1.4.1.1373.2.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+-- 1.3.6.1.4.1.1373.2.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.1
+ -- 1.3.6.1.4.1.1373.2.3.3.20.1
+ heartbeat OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { tmg 1 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+-- 1.3.6.1.4.1.1373.2.3.3.18.2
+ -- 1.3.6.1.4.1.1373.2.3.3.20.2
+ parameter OBJECT IDENTIFIER ::= { tmg 2 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1
+ -- 1.3.6.1.4.1.1373.2.3.3.20.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.20.2.1.1
+ localIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Local IP
+ Remark:Specify the IP address of the target Media Gateway."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.20.2.1.2
+ netMask OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Netmask
+ Remark:A netmask is a 32-bit mask used to divide an IP address into subnets and specify the networks available hosts."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.20.2.1.3
+ gateway OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Gateway
+ Remark:Specify the IP address of the gateway used to pass traffic from Media Gateway to other subnets."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.20.2.1.4
+ systemID OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:System ID
+ Remark:Specify the system ID of the target Media Gateway.
- Range = 0 - 31"
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.20.2.1.5
+ subSystemID OBJECT-TYPE
+ SYNTAX INTEGER (0..7)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Sub-System ID
+ Remark:Specify the subsystem ID of the target Media Gateway.
- Range = 0 - 1"
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.20.2.1.6
+ proxyIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Proxy IP
+ Remark:Specify the IP address of the connected RTP proxy server."
+ ::= { system 6 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1.12
+ -- 1.3.6.1.4.1.1373.2.3.3.20.2.1.7
+ portType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ t1(0),
+ e1(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Port Type
+ Remark:Specify the physical interface type of target Media Gateway."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.20.2.1.8
+ interfaceID OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Interface ID
+ Remark:Specify the interface identifier to the Media Gateway physical interface."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.20.2.1.9
+ signalType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ m2ua(0),
+ iua(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Signaling Type
+ Remark:Specify the signaling type of the Media Gateway physical interface."
+ ::= { system 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.20.2.1.10
+ crc4Switch OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ closed(0),
+ open(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CRC4 Flag
+ Remark:Enable or disable Cyclic Redundancy Check on the Media Gateway physical interface."
+ ::= { system 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.20.2.1.11
+ isdnType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ lt(0),
+ nt(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:ISDN Type
+ Remark:Specify termination type of the Media Gateway for ISDN connection."
+ ::= { system 11 }
+
+
+-- 1.3.6.1.4.1.1373.2.3.3.18.2.1.13
+ -- 1.3.6.1.4.1.1373.2.3.3.20.2.1.12
+ rebootCommand OBJECT-TYPE
+ SYNTAX INTEGER { reboot(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 12 }
+
+
+
+ END
+
+--
+-- LGC-SS-TMG-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-UDM-MIB.my b/omc/bin/mib/LGC-SS-UDM-MIB.my
new file mode 100644
index 0000000..0de1fb9
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-UDM-MIB.my
@@ -0,0 +1,1384 @@
+--
+-- LGC-SS-UDM-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Monday, March 30, 2020 at 10:35:24
+--
+
+ LGC-SS-UDM-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString16
+ FROM LGC-MIB
+ Opaque, Integer32, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53
+ udm MODULE-IDENTITY
+ LAST-UPDATED "202001090950Z" -- January 09, 2020 at 09:50 GMT
+ ORGANIZATION
+ "Organization."
+ CONTACT-INFO
+ "Contact-info."
+ DESCRIPTION
+ "Description."
+ ::= { application 53 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2
+ parameter OBJECT IDENTIFIER ::= { udm 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.1
+ adminState OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ unlock(0),
+ lock(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Number of Max eNB."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.2
+ label OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Number of Max UE."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.3
+ nfInstanceID OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Switch of CS fallback function."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.4
+ hplmnID OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.5
+ sericeIP OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.6
+ servicePort OBJECT-TYPE
+ SYNTAX Integer32 (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.7
+ nrf0Path OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.8
+ nrf1Path OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.9
+ defaultAusfURI OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.10
+ defaultNrfNotifyURI OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.11
+ fqdn OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.12
+ priority OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.13
+ capacity OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.14
+ groupID OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.15
+ supRanges OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.16
+ gpsiRanges OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.17
+ scheme OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ http(0),
+ https(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.18
+ op0 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.19
+ op1 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.20
+ op2 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.21
+ op3 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..31))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.22
+ rlist0 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..9))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.23
+ rlist1 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..9))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 23 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.24
+ rlist2 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..9))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 24 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.25
+ rlist3 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..9))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.26
+ homeNetworkPrivateKey OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..63))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.27
+ snssais OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 27 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.1.38
+ importData OBJECT-TYPE
+ SYNTAX Opaque (SIZE (7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes
+ OPAQUE DECODE RULE:
+ [unit]Command[u]00.0-00.7[u]select
+ [v]0[opt]Idle
+ [v]1[opt]Sending Command
+ [v]2[opt]In Processing
+ [v]3[opt]Succeeded
+ [v]4[opt]Failed
+ [unit]Total Numbers[u]01.0-03.7[u]input
+ [v]toDec-high-0
+ [unit]Success Numbers[u]04.0-06.7[u]input
+ [v]toDec-high-0"
+ ::= { system 38 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.2
+ subsUEAMBRTemplate OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.2.1
+ ambrTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF AmbrEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsUEAMBRTemplate 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.2.1.1
+ ambrEntry OBJECT-TYPE
+ SYNTAX AmbrEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { ambrIndex }
+ ::= { ambrTable 1 }
+
+
+ AmbrEntry ::=
+ SEQUENCE {
+ ambrIndex
+ INTEGER,
+ ambrName
+ OCTET STRING,
+ ambrUplink
+ OCTET STRING,
+ ambrDownlink
+ OCTET STRING,
+ ambrRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.2.1.1.1
+ ambrIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index"
+ ::= { ambrEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.2.1.1.2
+ ambrName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Label"
+ ::= { ambrEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.2.1.1.3
+ ambrUplink OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Uplink"
+ ::= { ambrEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.2.1.1.4
+ ambrDownlink OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Downlink"
+ ::= { ambrEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.2.1.1.5
+ ambrRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { ambrEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.3
+ subsSNSSAISTemplate OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.3.1
+ snssaiTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SnssaiEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsSNSSAISTemplate 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.3.1.1
+ snssaiEntry OBJECT-TYPE
+ SYNTAX SnssaiEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { snssaiIndex }
+ ::= { snssaiTable 1 }
+
+
+ SnssaiEntry ::=
+ SEQUENCE {
+ snssaiIndex
+ INTEGER,
+ snssaiName
+ OCTET STRING,
+ snssaiSupportedFeatures
+ INTEGER,
+ snssaiDefaultSNSSAIs
+ OCTET STRING,
+ snssaiSingleNssais
+ OCTET STRING,
+ snssaiRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.3.1.1.1
+ snssaiIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index"
+ ::= { snssaiEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.3.1.1.2
+ snssaiName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Label"
+ ::= { snssaiEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.3.1.1.3
+ snssaiSupportedFeatures OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SupportedFeatures"
+ ::= { snssaiEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.3.1.1.4
+ snssaiDefaultSNSSAIs OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:DefaultSNSSAIs"
+ ::= { snssaiEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.3.1.1.5
+ snssaiSingleNssais OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SingleNSSAIs"
+ ::= { snssaiEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.3.1.1.6
+ snssaiRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { snssaiEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.4
+ forbiddenAreasTemplate OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.4.1
+ arfbTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF ArfbEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { forbiddenAreasTemplate 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.4.1.1
+ arfbEntry OBJECT-TYPE
+ SYNTAX ArfbEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { arfbIndex }
+ ::= { arfbTable 1 }
+
+
+ ArfbEntry ::=
+ SEQUENCE {
+ arfbIndex
+ INTEGER,
+ arfbName
+ OCTET STRING,
+ arfbTACs
+ OCTET STRING,
+ arfbAreaCodes
+ OCTET STRING,
+ arfbRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.4.1.1.1
+ arfbIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index"
+ ::= { arfbEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.4.1.1.2
+ arfbName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Label"
+ ::= { arfbEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.4.1.1.3
+ arfbTACs OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:TACs"
+ ::= { arfbEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.4.1.1.4
+ arfbAreaCodes OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:AreaCodes"
+ ::= { arfbEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.4.1.1.5
+ arfbRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { arfbEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.5
+ serviceAreaRestrictionTemplate OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.5.1
+ sarTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SarEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { serviceAreaRestrictionTemplate 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.5.1.1
+ sarEntry OBJECT-TYPE
+ SYNTAX SarEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { sarIndex }
+ ::= { sarTable 1 }
+
+
+ SarEntry ::=
+ SEQUENCE {
+ sarIndex
+ INTEGER,
+ sarName
+ OCTET STRING,
+ sarRestrictionType
+ INTEGER,
+ sarTACs
+ OCTET STRING,
+ sarAreaCodes
+ OCTET STRING,
+ sarMaxTAs
+ INTEGER,
+ sarRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.5.1.1.1
+ sarIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index"
+ ::= { sarEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.5.1.1.2
+ sarName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Label"
+ ::= { sarEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.5.1.1.3
+ sarRestrictionType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ allowedAreas(0),
+ notAllowedAreas(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:RestrictionType"
+ ::= { sarEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.5.1.1.4
+ sarTACs OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:TACs"
+ ::= { sarEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.5.1.1.5
+ sarAreaCodes OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..128))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:AreaCodes"
+ ::= { sarEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.5.1.1.6
+ sarMaxTAs OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:MaxTAs"
+ ::= { sarEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.5.1.1.7
+ sarRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { sarEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.6
+ subsSmfSelectionTemplate OBJECT IDENTIFIER ::= { parameter 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.6.1
+ smfselTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF SmfselEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { subsSmfSelectionTemplate 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.6.1.1
+ smfselEntry OBJECT-TYPE
+ SYNTAX SmfselEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { smfselIndex }
+ ::= { smfselTable 1 }
+
+
+ SmfselEntry ::=
+ SEQUENCE {
+ smfselIndex
+ INTEGER,
+ smfselName
+ OCTET STRING,
+ smfselSNSSAI
+ OCTET STRING,
+ smfselDnnName
+ OCTET STRING,
+ smfselDefaultDnnInd
+ INTEGER,
+ smfselLboRoamingAllowed
+ INTEGER,
+ smfselIwkEpsInd
+ INTEGER,
+ smfselLadnIndicator
+ INTEGER,
+ smfselRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.6.1.1.1
+ smfselIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index"
+ ::= { smfselEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.6.1.1.2
+ smfselName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Label"
+ ::= { smfselEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.6.1.1.3
+ smfselSNSSAI OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:SNSSAI"
+ ::= { smfselEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.6.1.1.4
+ smfselDnnName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Dnn"
+ ::= { smfselEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.6.1.1.5
+ smfselDefaultDnnInd OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ false(0),
+ true(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:DefaultDnnInd"
+ ::= { smfselEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.6.1.1.6
+ smfselLboRoamingAllowed OBJECT-TYPE
+ SYNTAX INTEGER { false(0) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:LBO Roaming Allowed"
+ ::= { smfselEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.6.1.1.7
+ smfselIwkEpsInd OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ false(0),
+ true(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Iwk EPS Ind"
+ ::= { smfselEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.6.1.1.8
+ smfselLadnIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ false(0),
+ true(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:LADN Ind"
+ ::= { smfselEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.6.1.1.9
+ smfselRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { smfselEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7
+ dnnConf OBJECT IDENTIFIER ::= { parameter 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1
+ dnnTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF DnnEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { dnnConf 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1
+ dnnEntry OBJECT-TYPE
+ SYNTAX DnnEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { dnnIndex }
+ ::= { dnnTable 1 }
+
+
+ DnnEntry ::=
+ SEQUENCE {
+ dnnIndex
+ INTEGER,
+ dnnName
+ OCTET STRING,
+ dnnDefaultPDUSessionType
+ INTEGER,
+ dnnAllowedPDUSessionTypes
+ OCTET STRING,
+ dnnDefaultSSCmode
+ INTEGER,
+ dnnAllowedSSCmodes
+ OCTET STRING,
+ dnnInterworkingEPSIndicator
+ INTEGER,
+ dnnLADNIndicator
+ INTEGER,
+ dnn5GSSubscribedQoSprofile
+ OCTET STRING,
+ dnnChargingCharacteristics
+ OCTET STRING,
+ dnnSubscribedSessionAmbrUL
+ OCTET STRING,
+ dnnSubscribedSessionAmbrDL
+ OCTET STRING,
+ dnnStaticIPAddress
+ OCTET STRING,
+ dnnUserPlaneSecurityPolicy
+ OCTET STRING,
+ dnnRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.1
+ dnnIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index"
+ ::= { dnnEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.2
+ dnnName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Dnn"
+ ::= { dnnEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.3
+ dnnDefaultPDUSessionType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ ipv4(0),
+ ipv6(1),
+ ipv4v6(2),
+ ethernet(3),
+ unstruction(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Default PDU Session Type"
+ ::= { dnnEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.4
+ dnnAllowedPDUSessionTypes OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Allowed PDU Session Types"
+ ::= { dnnEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.5
+ dnnDefaultSSCmode OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sscMode1(0),
+ sscMode2(1),
+ sscMode3(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Default SSC Mode"
+ ::= { dnnEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.6
+ dnnAllowedSSCmodes OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Allowed SSC Modes"
+ ::= { dnnEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.7
+ dnnInterworkingEPSIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ false(0),
+ true(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Interworking EPS Indicator"
+ ::= { dnnEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.8
+ dnnLADNIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ false(0),
+ true(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:LADN Indicator"
+ ::= { dnnEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.9
+ dnn5GSSubscribedQoSprofile OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:5GS Qos Profile"
+ ::= { dnnEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.10
+ dnnChargingCharacteristics OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Charging Characteristics"
+ ::= { dnnEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.11
+ dnnSubscribedSessionAmbrUL OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { dnnEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.12
+ dnnSubscribedSessionAmbrDL OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { dnnEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.13
+ dnnStaticIPAddress OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { dnnEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.14
+ dnnUserPlaneSecurityPolicy OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { dnnEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.7.1.1.15
+ dnnRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { dnnEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8
+ qosProfile OBJECT IDENTIFIER ::= { parameter 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1
+ qosTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF QosEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { qosProfile 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1
+ qosEntry OBJECT-TYPE
+ SYNTAX QosEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { qosIndex }
+ ::= { qosTable 1 }
+
+
+ QosEntry ::=
+ SEQUENCE {
+ qosIndex
+ INTEGER,
+ qosName
+ OCTET STRING,
+ qos5qi
+ INTEGER,
+ qosNonDynamic5QiPriorityLevel
+ INTEGER,
+ qosNonDynamic5QiAverWindow
+ INTEGER,
+ qosNonDynamic5QiMaxDataBurstVol
+ INTEGER,
+ qosDynamic5QiResourceType
+ INTEGER,
+ qosDynamic5QiPriorityLevel
+ INTEGER,
+ qosDynamic5QiPacketDelayBudget
+ INTEGER,
+ qosDynamic5QiPacketErrRate
+ OCTET STRING,
+ qosDynamic5QiAverWindow
+ INTEGER,
+ qosDynamic5QiMaxDataBurstVol
+ INTEGER,
+ qosArpPriorityLevel
+ INTEGER,
+ qosArpPreemptCap
+ INTEGER,
+ qosArpPreemptionVuln
+ INTEGER,
+ qosRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.1
+ qosIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index"
+ ::= { qosEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.2
+ qosName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Label"
+ ::= { qosEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.3
+ qos5qi OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:5Qi"
+ ::= { qosEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.4
+ qosNonDynamic5QiPriorityLevel OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Priority Level"
+ ::= { qosEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.5
+ qosNonDynamic5QiAverWindow OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { qosEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.6
+ qosNonDynamic5QiMaxDataBurstVol OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { qosEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.7
+ qosDynamic5QiResourceType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ nonGBR(0),
+ nonCriticalGBR(1),
+ criticalGBR(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { qosEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.8
+ qosDynamic5QiPriorityLevel OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { qosEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.9
+ qosDynamic5QiPacketDelayBudget OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { qosEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.10
+ qosDynamic5QiPacketErrRate OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { qosEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.11
+ qosDynamic5QiAverWindow OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { qosEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.12
+ qosDynamic5QiMaxDataBurstVol OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { qosEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.13
+ qosArpPriorityLevel OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:ARP Priority"
+ ::= { qosEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.14
+ qosArpPreemptCap OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notPreempt(0),
+ mayPreempt(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:PreemptCap"
+ ::= { qosEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.15
+ qosArpPreemptionVuln OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ notPreemptable(0),
+ preemptable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:PreemptionVuln"
+ ::= { qosEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.53.2.8.1.1.16
+ qosRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { qosEntry 16 }
+
+
+
+ END
+
+--
+-- LGC-SS-UDM-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-VLR-MIB.my b/omc/bin/mib/LGC-SS-VLR-MIB.my
new file mode 100644
index 0000000..d0c09a6
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-VLR-MIB.my
@@ -0,0 +1,557 @@
+--
+-- LGC-SS-VLR-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Friday, March 08, 2013 at 11:24:05
+--
+
+ LGC-SS-VLR-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS
+ FROM LGC-MIB
+ Opaque, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2
+ vlr MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 2 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2
+ parameter OBJECT IDENTIFIER ::= { vlr 2 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2.4
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.2
+ management OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1
+ version OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..8))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Version
+ Remark:(Read Only) Version of VLR software."
+ ::= { management 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.2.2
+ status OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ abnormal(0),
+ normal(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Name:Status
+ Remark:(Read Only) The current status of VLR."
+ ::= { management 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.2.3
+ command OBJECT-TYPE
+ SYNTAX INTEGER { resetVLR(0) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { management 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.1
+ authentication OBJECT-TYPE
+ SYNTAX Opaque (SIZE (1))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Update Location[u]00.0-00.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable (Power On)
+ [v]3[opt]Enable (All)
+ [unit]MO[u]00.2-00.2[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]MT[u]00.3-00.3[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Reserved[u]00.4-00.7[u]input
+ [v]toDec-high-0
+ [remark]
+ Enable or disable authentication of the SIM in the mobile. Need AUC support.
+
+ Location Update:
+ - Power On means only the initial Location Update will be authenticated.
+ - All Location Update Authentication means all location update processes will be authenticated.
+
+ MO Call:
+ - MO Authentication ON means authentication is necessary when making a Mobile Originating call.
+
+ MT Call:
+ - MT Authentication ON means authentication is necessary when making a Mobile Terminating call."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.2
+ reuseTriplets OBJECT-TYPE
+ SYNTAX Opaque (SIZE (1))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Reuse Triplets[u]00.0-00.0[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Double Authentication[u]00.1-00.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Reserved[u]00.2-00.7[u]input
+ [v]toDec-high-0
+ [remark]
+ Reuse Triplets:
+ - Setting this parameter permits a mobile to reuse triplets previously assigned to it by the system.
+
+ Double Authentication:
+ - Enable this parameter to force the system to perform a second authentication processes when the initial authentication fails."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.3
+ ciphering OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Ciphering
+ Remark:Setting this parameter forces the mobile to use ciphering over the air interface."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.4
+ cipherAlgorithm OBJECT-TYPE
+ SYNTAX Opaque (SIZE (1))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]No encryption[u]00.0-00.0[u]select
+ [v]0[opt]Not permitted
+ [v]1[opt]Permitted
+ [unit]GSM A5/1[u]00.1-00.1[u]select
+ [v]0[opt]Not permitted
+ [v]1[opt]Permitted
+ [unit]GSM A5/2[u]00.2-00.2[u]select
+ [v]0[opt]Not permitted
+ [v]1[opt]Permitted
+ [unit]GSM A5/3[u]00.3-00.3[u]select
+ [v]0[opt]Not permitted
+ [v]1[opt]Permitted
+ [unit]GSM A5/4[u]00.4-00.4[u]select
+ [v]0[opt]Not permitted
+ [v]1[opt]Permitted
+ [unit]GSM A5/5[u]00.5-00.5[u]select
+ [v]0[opt]Not permitted
+ [v]1[opt]Permitted
+ [unit]GSM A5/6[u]00.6-00.6[u]select
+ [v]0[opt]Not permitted
+ [v]1[opt]Permitted
+ [unit]GSM A5/7[u]00.7-00.7[u]select
+ [v]0[opt]Not permitted
+ [v]1[opt]Permitted
+ [remark]
+ Select ciphering algorithm from the drop-down menu."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.5
+ tMSIAllocation OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ allocateTMSI(1),
+ reallocateTMSI(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:TMSI Allocation
+ Remark:Allocate TMSI forces the system to allocate a TMSI only the first time a call management service is requested.
Reallocate TMSI forces the system to allocate a new TMSI every time a call management service is requested."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.6
+ oSBDefinition OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ Disable(0),
+ Dis-CA(1),
+ CA-Dis(2),
+ Dis-CB(3),
+ CB-Dis(4),
+ CA-CA(5),
+ CA-CB(6),
+ CB-CA(7),
+ CB-CB(8)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OSB Definition
+ Remark:These options allow the operator to set whether a call is allowed or barred:
If this option is set to call allow, the call with the called number matched the dialing prefix with the OSB attribute enabled will be allowed to pass through, all other calls will be barred.
If it is set to call bar, the call with the destination number matching the dialing prefix defined with the OSB attribute enabled will be barred while all other calls will be allowed."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.7
+ eCSetupAllowed OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:EC Setup Allowed
+ Remark:Setting this parameter allows a non-registered mobile or a mobile with no SIM to make emergency calls."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.8
+ iMEIVerification OBJECT-TYPE
+ SYNTAX Opaque (SIZE (1))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Location Update[u]00.0-00.0[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]MO[u]00.1-00.1[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]MT[u]00.2-00.2[u]select
+ [v]0[opt]Disable
+ [v]1[opt]Enable
+ [unit]Spare[u]00.3-00.7[u]input
+ [v]toDec-high-0
+ [remark]
+ Enable or disable mobile equipment identity. Need EIR support.
+
+ Location Update:
+ - Setting this parameter forces the system to validate mobile equipment identity in Location Update processes.
+
+ MO Call:
+ - Setting this parameter forces the system to validate mobile equipment identity when making a Mobile Originating call.
+
+ MT Call:
+ - Setting this parameter forces the system to validate mobile equipment identity when making a Mobile Terminating call."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.9
+ vLRPurge OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:VLR Purge
+ Remark:Enable or disable the VLR Purging feature. When this feature is on, the system purges numbers from the VLR when they have been idle for the amount of time specified in the Idle Period to Purge fields."
+ ::= { system 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.10
+ idlePeriodToPurge OBJECT-TYPE
+ SYNTAX INTEGER (0..65535)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Idle Period to Purge
+ Remark:This field determines how long a VLR entry can remain idle before the system purges it.
- Range = 1 - 65535 minutes"
+ ::= { system 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.11
+ cDRFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ off(0),
+ on(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CDR Flag
+ Remark:Enable or disable Call Detail Record generation of VLR."
+ ::= { system 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.12
+ updateHLROption OBJECT-TYPE
+ SYNTAX Opaque (SIZE (1))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Normal LU[u]00.0-00.0[u]select
+ [v]0[opt]No Request
+ [v]1[opt]Request
+ [unit]Periodic LU[u]00.1-00.1[u]select
+ [v]0[opt]No Request
+ [v]1[opt]Request
+ [unit]IMSI Attach[u]00.2-00.2[u]select
+ [v]0[opt]No Request
+ [v]1[opt]Request
+ [unit]Reserved[u]00.3-00.7[u]input
+ [v]toDec-high-0
+ [remark]
+ Normal Location Update:
+ - Setting this parameter forces VLR to update subscriber data from HLR in normal location update processes.
+
+ Periodic Location Update:
+ - Setting this parameter forces VLR to update subscriber data from HLR in periodic location update processes.
+
+ IMSI Attach:
+ - Setting this parameter forces VLR to update subscriber data from HLR in IMSI attach processes."
+ ::= { system 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.13
+ mSRNStart OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MSRN Start
+ Remark:The beginning of the MSRN range."
+ ::= { system 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.14
+ mSRNEnd OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:MSRN End
+ Remark:The end of the MSRN range."
+ ::= { system 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.15
+ oPRFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPR Flag
+ Remark:Enable or disable OPR service."
+ ::= { system 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.16
+ iMDXFlag OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:IMDX Flag
+ Remark:Enable or disable IMDX service."
+ ::= { system 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.17
+ iMSIPrefixForOPPS OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (5))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:IMSI Prefix for OPPS
+ Remark:OPPS substitutes the IMSI prefix (MCC+MNC) of the inbound OPPS users by the predefined pseudo IMSI prefix for HLR routing purpose. It should be different from the IMSI prefix of the local network or any other roaming partners' networks."
+ ::= { system 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.18
+ defaultPriority OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ noPriority(0),
+ callPriorityLevel4(1),
+ callPriorityLevel3(2),
+ callPriorityLevel2(3),
+ callPriorityLevel1(4),
+ callPriorityLevel0(5),
+ callPriorityLevelB(6),
+ callPriorityLevelA(7)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Default Priority
+ Remark:Default Priority."
+ ::= { system 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.19
+ odbBoicSmsAllowed OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ disable(0),
+ enable(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:ODB BOIC SMS Barring
+ Remark:Enable or disable barring International SMS (or International SMS except to HPLMN) when ODB BOIC (or ODB BOIC-exHPLMN) is checked."
+ ::= { system 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.20
+ nRI OBJECT-TYPE
+ SYNTAX INTEGER (0..1023)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NRI (Network Resource Identifier)
+ Remark:is introduced to perform the MSC/VLR routing functionality on BSC side. Each MSC/VLR in the pool area has a dedicated NRI number. NRI is included in TMSI, value is 0~1023"
+ ::= { system 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.2.1.21
+ nRILen OBJECT-TYPE
+ SYNTAX INTEGER (0..10)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NRI (Network Resource Identifier) Length
+ Remark:length is 0~10 bits."
+ ::= { system 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.3
+ csta OBJECT IDENTIFIER ::= { vlr 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.3.1
+ cstaDataOid OBJECT-TYPE
+ SYNTAX OCTET STRING
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { csta 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.4
+ cdr OBJECT IDENTIFIER ::= { vlr 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.4.1
+ cdrHeadOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.4.2
+ cdrTailOid OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.2.4.3
+ cdrDataOid OBJECT-TYPE
+ SYNTAX OCTET STRING
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cdr 3 }
+
+
+
+ END
+
+--
+-- LGC-SS-VLR-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-VMS-MIB.my b/omc/bin/mib/LGC-SS-VMS-MIB.my
new file mode 100644
index 0000000..4f176cc
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-VMS-MIB.my
@@ -0,0 +1,3877 @@
+--
+-- LGC-SS-VMS-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, September 23, 2010 at 15:19:37
+--
+
+ LGC-SS-VMS-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, RowStatus, DisplayString
+ FROM LGC-MIB
+ Opaque, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9
+ vms MODULE-IDENTITY
+ LAST-UPDATED "200706291606Z" -- June 29, 2007 at 16:06 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "lcrd
+ lcrdsupport@lgcwireless.com"
+ DESCRIPTION
+ "Description."
+ REVISION "200706051219Z" -- June 05, 2007 at 12:19 GMT
+ DESCRIPTION
+ "This is the first release version of the MSC MIB"
+ ::= { application 9 }
+
+
+
+--
+-- Type definitions
+--
+
+ AvailStateChoices ::= INTEGER
+ {
+ inTest(0),
+ failed(1),
+ powerOff(2),
+ offLine(3),
+ onLine(4),
+ dependency(5),
+ degraded(6),
+ notInstalled(7)
+ }
+
+
+
+--
+-- Node definitions
+--
+
+-- Node definitions
+--
+-- The MIB module for WXC2.
+-- 1.3.6.1.4.1.1373.1.3
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3
+ -- 1.3.6.1.4.1.1373.2.3.3
+ application OBJECT IDENTIFIER ::= { wxc2 3 }
+
+
+-- 1.3.6.1.4.1.1373.1.3.3.2.2
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2
+ parameter OBJECT IDENTIFIER ::= { vms 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.1
+ cC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:CC
+ Remark:Country Code. The code that identifies the country's network."
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.2
+ nDC OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NDC
+ Remark:Network Destination Code. Define the national calling area or national network to which the subscriber belongs."
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.3
+ vMSNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:VMS Number
+ Remark:Define the MSISDN and service numbers for voicemail server. This number is used to route notification short message."
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.4
+ serviceNumberForPLMN OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PLMN Service Number
+ Remark:Define the service numbers for voicemail server. All numbers must include CC and NDC. Multiple VMS servers may use the same VMS MSISDN but different Service Numbers.
This service number is for the requests from local network. Subscriber dials this dedicated number to enter his mailbox or leave message to other subscribers."
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.5
+ serviceNumberForPSTN OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:PSTN Service Number
+ Remark:This service number is for the requests from PSTN. Subscriber dials this dedicated number from PSTN to access voicemail system. Inputs the mailbox number (MSISDN) and password (if password enabled) according to the system prompt to. After the verification the subscriber may enter his mailbox or leave message to other subscribers."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.6
+ leaveMessageNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Leave Message Number
+ Remark:Dedicated service number for directly leaving message. Subscriber dials this number from either PSTN or local network to leave message to system subscribers."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.7
+ checkMessageNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Remark:Dedicated service number for directly checking inbox message. Subscriber dials this number from either PSTN or local network to check his inbox message."
+ ::= { system 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.8
+ internationalPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:International Prefix
+ Remark:A digit or combination of digits used by a subscriber when making an international call. The international prefix is used to indicate that the following digits represent an international number and should be routed to an international gateway."
+ ::= { system 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.9
+ nationalPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:National Prefix
+ Remark:A digit or combination of digits used by a subscriber when calling a national destination (within the country) other than that of the local area network."
+ ::= { system 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.10
+ greetNumModify OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sub(0),
+ NDD(1),
+ IDD(2),
+ unknownLocal(3),
+ unknownNDD(4),
+ unknownIDD(5)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Greeting Number Modification
+ Remark:It determines the Number Attribute Identity of the host number which will be announced to the visitors in the greeting announcement.
- Sub = Unknown(Sub) = SN
- NDD = NDC+SN
- IDD = +CC+NDC+SN
- Unknown(NDD) = Nat Prefix+NDC+SN
- Unknown(IDD) = Int Prefix+CC+NDC+SN"
+ ::= { system 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.11
+ ringBackNumModify OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sub(0),
+ NDD(1),
+ IDD(2),
+ unknownLocal(3),
+ unknownNDD(4),
+ unknownIDD(5)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Ringback Number Modification
+ Remark:It determines the NAI (Number Attribute Identity) of the host number which will be sent as the calling number in the direct ringback ISUP messages."
+ ::= { system 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.12
+ linkType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ e1(0),
+ t1(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Link Type
+ Remark:Type of the VMS links."
+ ::= { system 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.13
+ codecType OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ u-law(0),
+ fr(3),
+ a-law(8),
+ g-729(18),
+ amr4-75(64),
+ amr5-15(65),
+ amr5-9(66),
+ amr6-7(67),
+ amr7-4(68),
+ amr7-95(69),
+ amr10-2(70),
+ amr12-2(71),
+ efr(84),
+ g-729b(118)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Codec Type
+ Remark:Codec (compression/decompression) algorithm of the VMS."
+ ::= { system 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.14
+ saveProfileCommand OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ saveUserProfiles(2),
+ saveCodec(3),
+ loadCodec(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.15
+ import OBJECT-TYPE
+ SYNTAX Opaque (SIZE (7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes
+ OPAQUE DECODE RULE:
+ [unit]Command[u]00.0-00.7[u]select
+ [v]0[opt]Idle
+ [v]1[opt]Sending Command
+ [v]2[opt]In Processing
+ [v]3[opt]Succeeded
+ [v]4[opt]Failed
+ [unit]Total Numbers[u]01.0-03.7[u]input
+ [v]toDec-high-0
+ [unit]Success Numbers[u]04.0-06.7[u]input
+ [v]toDec-high-0"
+ ::= { system 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.1.16
+ maxLicense OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Hidden Flag:Yes
+ OPAQUE DECODE RULE:
+ [unit]Command[u]00.0-00.7[u]select
+ [v]0[opt]Idle
+ [v]1[opt]Sending Command
+ [v]2[opt]In Processing
+ [v]3[opt]Succeeded
+ [v]4[opt]Failed
+ [unit]Total Numbers[u]01.0-03.7[u]input
+ [v]toDec-high-0
+ [unit]Success Numbers[u]04.0-06.7[u]input
+ [v]toDec-high-0"
+ ::= { system 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.2
+ trunk OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.2.1
+ networkIndicator OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ international(0),
+ internationalSpare(1),
+ national(2),
+ nationalSpare(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:NI
+ Remark:Network Indicator. Specify the VMS to a network. Choose the same network as MTP3 setting."
+ ::= { trunk 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.2.2
+ dPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:DPC
+ Remark:Point Code of MSC."
+ ::= { trunk 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.2.3
+ oPC OBJECT-TYPE
+ SYNTAX INTEGER (0..16777215)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:OPC
+ Remark:Assign a unique decimal Point Code to VMS."
+ ::= { trunk 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.2.4
+ cIC OBJECT-TYPE
+ SYNTAX Opaque (SIZE (8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "OPAQUE DECODE RULE:
+ [unit]Link 0[u]00.0-00.7[u]input
+ [v]toDec-high-0
+ [unit]Link 1[u]01.0-01.7[u]input
+ [v]toDec-high-0
+ [unit]Link 2[u]02.0-02.7[u]input
+ [v]toDec-high-0
+ [unit]Link 3[u]03.0-03.7[u]input
+ [v]toDec-high-0
+ [unit]Link 4[u]04.0-04.7[u]input
+ [v]toDec-high-0
+ [unit]Link 5[u]05.0-05.7[u]input
+ [v]toDec-high-0
+ [unit]Link 6[u]06.0-06.7[u]input
+ [v]toDec-high-0
+ [unit]Link 7[u]07.0-07.7[u]input
+ [v]toDec-high-0
+ [remark]
+ Specify the beginning Circuit ID Code of each trunk. Support up to 8 BICC trunks.
+ CIC = 32 x n + 1 ( n = Link No. )"
+ ::= { trunk 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.2.5
+ circuitSelection OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ clockwise(0),
+ anti-clockwise(1),
+ odd(2),
+ even(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Circuit Selection
+ Remark:Circuit selection mode of the traffic channel connections."
+ ::= { trunk 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.2.6
+ circuitDelay OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ withoutDelay(0),
+ oneSecond(1),
+ twoSeconds(2),
+ threeSeconds(3),
+ fourSeconds(4),
+ fiveSeconds(5)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Circuit Delay
+ Remark:Define the interval between sending ACM and ANM messages.
- Range = 0 - 5 seconds"
+ ::= { trunk 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.3
+ mailbox OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.3.1
+ minMessageLength OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ unlimited(0),
+ oneSecond(1),
+ twoSeconds(2),
+ threeSeconds(3),
+ fourSeconds(4),
+ fiveSeconds(5)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Min Message Length
+ Remark:Define the minimum length of a voicemail message. Any voicemail less than preset minimum length will not be recorded and sent to mailbox host."
+ ::= { mailbox 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.3.2
+ maxMessageLength OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ twentySeconds(20),
+ thirtySeconds(30),
+ fortySeconds(40),
+ sixtySeconds(60),
+ eightySeconds(80),
+ oneHundredSeconds(100),
+ twoMinutes(120)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Max Message Length
+ Remark:Define the maximum length of a voicemail message. The surplus part of the voicemail will be ignored."
+ ::= { mailbox 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.3.3
+ newMessageRetention OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:New Message Validity
+ Remark:Specify the storage period of an inbox new(unread) message. The message will be deleted after this period. Unit is day."
+ ::= { mailbox 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.3.4
+ savedMessageRetention OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Saved Message Validity
+ Remark:Specify the storage period of an inbox saved message. The message will be deleted after this period."
+ ::= { mailbox 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.3.5
+ messagePlayOrder OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ firstPlayNewMessage(0),
+ firstPlayOldMessage(1)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Message Play Order
+ Remark:Define the play sequence of the inbox messages."
+ ::= { mailbox 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.3.6
+ passwordRetryTimes OBJECT-TYPE
+ SYNTAX INTEGER (1..5)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Password Retry Times
+ Remark:VMS will refuse the access request after the password attempt times reaches this preset value.
- Range = 1 - 5"
+ ::= { mailbox 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.3.7
+ keyPressTimeout OBJECT-TYPE
+ SYNTAX INTEGER (5..30)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Key-press Timeout
+ Remark:Timeout for the interval between two continuous key-press. If the interval is longer than the preset timer, the system will regard that the digit collection (key-press) is completed.
- Range = 5 - 30 seconds"
+ ::= { mailbox 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.4
+ cLIModification OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.4.1
+ cLIModificationTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF CLIModificationEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { cLIModification 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.4.1.1
+ cLIModificationEntry OBJECT-TYPE
+ SYNTAX CLIModificationEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { nmIndex }
+ ::= { cLIModificationTable 1 }
+
+
+ CLIModificationEntry ::=
+ SEQUENCE {
+ nmIndex
+ INTEGER,
+ nmPrefix
+ OCTET STRING,
+ nmOriginalNAI
+ INTEGER,
+ nmDelNum
+ INTEGER,
+ nmInsertDigits
+ OCTET STRING,
+ nmModifiedNAI
+ INTEGER,
+ nmRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.4.1.1.1
+ nmIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..31)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index number ranges from 0 to 31."
+ ::= { cLIModificationEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.4.1.1.2
+ nmPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..15))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Prefix
+ Remark:The initial digits of the caller number. This number may be any number from PSTN or PLMN."
+ ::= { cLIModificationEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.4.1.1.3
+ nmOriginalNAI OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ subscriber(1),
+ unknown(2),
+ national(3),
+ international(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Original NAI
+ Remark:Original Number Attribute Identity of the caller numbers beginning with this prefix."
+ ::= { cLIModificationEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.4.1.1.4
+ nmDelNum OBJECT-TYPE
+ SYNTAX INTEGER (0..15)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Deletion Count
+ Remark:The amount of digits to be deleted from the beginning of the calling number.
- Range = 0 - 16"
+ ::= { cLIModificationEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.4.1.1.5
+ nmInsertDigits OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..15))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Inserted Digits
+ Remark:The digits to be added to the front of the calling number. Numeric max 16 digits."
+ ::= { cLIModificationEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.4.1.1.6
+ nmModifiedNAI OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ subscriber(1),
+ unknown(2),
+ national(3),
+ international(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Modified NAI
+ Remark:Number Attribute Identity of the caller number after manipulation."
+ ::= { cLIModificationEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.4.1.1.7
+ nmRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cLIModificationEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5
+ sMSNotification OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.1
+ newMessageTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF NewMessageEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSNotification 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.1.1
+ newMessageEntry OBJECT-TYPE
+ SYNTAX NewMessageEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { newmIndex }
+ ::= { newMessageTable 1 }
+
+
+ NewMessageEntry ::=
+ SEQUENCE {
+ newmIndex
+ INTEGER,
+ newmTitle
+ DisplayString,
+ newmCoding
+ INTEGER,
+ newmPreceding
+ DisplayString,
+ newmFollowing
+ OCTET STRING,
+ newmRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.1.1.1
+ newmIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..4)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index number ranges from 0 to 4. Define the notification short message contents for a new voicemail message."
+ ::= { newMessageEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.1.1.2
+ newmTitle OBJECT-TYPE
+ SYNTAX DisplayString (SIZE (0..12))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Message name for identification purpose only."
+ ::= { newMessageEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.1.1.3
+ newmCoding OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sevenBit(0),
+ eightBit(4),
+ unicode(8)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Coding Type
+ Remark:The coding scheme must be consistent with the SMPP setting."
+ ::= { newMessageEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.1.1.4
+ newmPreceding OBJECT-TYPE
+ SYNTAX DisplayString (SIZE (0..47))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Front Part
+ Remark:Enter the contents of the first half of notification short message, which is seperated by caller number.
- Default = You got a new voice mail from"
+ ::= { newMessageEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.1.1.5
+ newmFollowing OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..47))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Rear Part
+ Remark:Enter the contents of the second half of notification short message, which is seperated by caller number.
- Default = . Please dial xxx to check."
+ ::= { newMessageEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.1.1.6
+ newmRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { newMessageEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.2
+ unansweredCallCLITable OBJECT-TYPE
+ SYNTAX SEQUENCE OF UnansweredCallCLIEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSNotification 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.2.1
+ unansweredCallCLIEntry OBJECT-TYPE
+ SYNTAX UnansweredCallCLIEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "level:1"
+ INDEX { uaccIndex }
+ ::= { unansweredCallCLITable 1 }
+
+
+ UnansweredCallCLIEntry ::=
+ SEQUENCE {
+ uaccIndex
+ INTEGER,
+ uaccTitle
+ DisplayString,
+ uaccCoding
+ INTEGER,
+ uaccPreceding
+ DisplayString,
+ uaccPost
+ OCTET STRING,
+ uaccRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.2.1.1
+ uaccIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..4)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index number ranges from 0 to 4. Define the notification short message contents for an unanswered incoming call with caller number."
+ ::= { unansweredCallCLIEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.2.1.2
+ uaccTitle OBJECT-TYPE
+ SYNTAX DisplayString (SIZE (0..12))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Message name for identification purpose only."
+ ::= { unansweredCallCLIEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.2.1.3
+ uaccCoding OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sevenBit(0),
+ eightBit(4),
+ unicode(8)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Coding Type
+ Remark:The coding scheme must be consistent with the SMPP setting."
+ ::= { unansweredCallCLIEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.2.1.4
+ uaccPreceding OBJECT-TYPE
+ SYNTAX DisplayString (SIZE (0..47))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Front Part
+ Remark:Enter the contents of the first half of notification short message, which is seperated by caller number.
- Default = You got a missed call from"
+ ::= { unansweredCallCLIEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.2.1.5
+ uaccPost OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..47))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Rear Part
+ Remark:Enter the contents of the second half of notification short message, which is seperated by caller number.
- Default = ."
+ ::= { unansweredCallCLIEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.2.1.6
+ uaccRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { unansweredCallCLIEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.3
+ mailboxFullTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MailboxFullEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSNotification 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.3.1
+ mailboxFullEntry OBJECT-TYPE
+ SYNTAX MailboxFullEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { fmbIndex }
+ ::= { mailboxFullTable 1 }
+
+
+ MailboxFullEntry ::=
+ SEQUENCE {
+ fmbIndex
+ INTEGER,
+ fmbTitle
+ DisplayString,
+ fmbCoding
+ INTEGER,
+ fmbPreceding
+ DisplayString,
+ fmbFollowing
+ DisplayString,
+ fmbRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.3.1.1
+ fmbIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..4)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index number ranges from 0 to 4. Define the notification short message contents for an overload mailbox. The notification will be sent to the host when receiving a new message but the mailbox is full."
+ ::= { mailboxFullEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.3.1.2
+ fmbTitle OBJECT-TYPE
+ SYNTAX DisplayString (SIZE (0..12))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Message name for identification purpose only."
+ ::= { mailboxFullEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.3.1.3
+ fmbCoding OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sevenBit(0),
+ eightBit(4),
+ unicode(8)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Coding Type
+ Remark:The coding scheme must be consistent with the SMPP setting."
+ ::= { mailboxFullEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.3.1.4
+ fmbPreceding OBJECT-TYPE
+ SYNTAX DisplayString (SIZE (0..47))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Front Part
+ Remark:Enter the contents of the first half of notification short message, which is seperated by caller number.
- Default = Your mailbox is full."
+ ::= { mailboxFullEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.3.1.5
+ fmbFollowing OBJECT-TYPE
+ SYNTAX DisplayString (SIZE (0..47))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Rear Part
+ Remark:Enter the contents of the second half of notification short message, which is seperated by caller number.
- Default = tried to call you."
+ ::= { mailboxFullEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.3.1.6
+ fmbRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { mailboxFullEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.4
+ unansweredCallNoCLITable OBJECT-TYPE
+ SYNTAX SEQUENCE OF UnansweredCallNoCLIEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { sMSNotification 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.4.1
+ unansweredCallNoCLIEntry OBJECT-TYPE
+ SYNTAX UnansweredCallNoCLIEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { uacncIndex }
+ ::= { unansweredCallNoCLITable 1 }
+
+
+ UnansweredCallNoCLIEntry ::=
+ SEQUENCE {
+ uacncIndex
+ INTEGER,
+ uacncTitle
+ OCTET STRING,
+ uacncCoding
+ INTEGER,
+ uacncPreceding
+ OCTET STRING,
+ uacncRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.4.1.1
+ uacncIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..4)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index number ranges from 0 to 4. Define the notification short message contents for an unanswered incoming call without caller number."
+ ::= { unansweredCallNoCLIEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.4.1.2
+ uacncTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..12))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Message name for identification purpose only."
+ ::= { unansweredCallNoCLIEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.4.1.3
+ uacncCoding OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ sevenBit(0),
+ eightBit(4),
+ unicode(8)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Coding Type
+ Remark:The coding scheme must be consistent with the SMPP setting."
+ ::= { unansweredCallNoCLIEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.4.1.4
+ uacncPreceding OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..95))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Contents
+ Remark:Enter the contents of the notification short message.
- Default = You got a missed call."
+ ::= { unansweredCallNoCLIEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.5.4.1.5
+ uacncRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { unansweredCallNoCLIEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6
+ voiceGroup OBJECT IDENTIFIER ::= { parameter 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1
+ publicTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PublicEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { voiceGroup 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1
+ publicEntry OBJECT-TYPE
+ SYNTAX PublicEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { pvgIndex }
+ ::= { publicTable 1 }
+
+
+ PublicEntry ::=
+ SEQUENCE {
+ pvgIndex
+ INTEGER,
+ pvgUnit0
+ OCTET STRING,
+ pvgUnit1
+ OCTET STRING,
+ pvgUnit2
+ OCTET STRING,
+ pvgUnit3
+ OCTET STRING,
+ pvgUnit4
+ OCTET STRING,
+ pvgUnit5
+ OCTET STRING,
+ pvgUnit6
+ OCTET STRING,
+ pvgUnit7
+ OCTET STRING,
+ pvgUnit8
+ OCTET STRING,
+ pvgUnit9
+ OCTET STRING,
+ pvgUnit10
+ OCTET STRING,
+ pvgUnit11
+ OCTET STRING,
+ pvgUnit12
+ OCTET STRING,
+ pvgUnit13
+ OCTET STRING,
+ pvgUnit14
+ OCTET STRING,
+ pvgUnit15
+ OCTET STRING,
+ pvgUnit16
+ OCTET STRING,
+ pvgUnit17
+ OCTET STRING,
+ pvgUnit18
+ OCTET STRING,
+ pvgUnit19
+ OCTET STRING,
+ pvgUnit20
+ OCTET STRING,
+ pvgUnit21
+ OCTET STRING,
+ pvgUnit22
+ OCTET STRING,
+ pvgUnit23
+ OCTET STRING,
+ pvgUnit24
+ OCTET STRING,
+ pvgUnit25
+ OCTET STRING,
+ pvgUnit26
+ OCTET STRING,
+ pvgUnit27
+ OCTET STRING,
+ pvgUnit28
+ OCTET STRING,
+ pvgUnit29
+ OCTET STRING,
+ pvgUnit30
+ OCTET STRING,
+ pvgUnit31
+ OCTET STRING,
+ pvgRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.1
+ pvgIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Voice group index number ranges from 0 to 31."
+ ::= { publicEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.2
+ pvgUnit0 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 0
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.3
+ pvgUnit1 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 1
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.4
+ pvgUnit2 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 2
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.5
+ pvgUnit3 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 3
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.6
+ pvgUnit4 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 4
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.7
+ pvgUnit5 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 5
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.8
+ pvgUnit6 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 6
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.9
+ pvgUnit7 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 7
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.10
+ pvgUnit8 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 8
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.11
+ pvgUnit9 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 9
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.12
+ pvgUnit10 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 10
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.13
+ pvgUnit11 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 11
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.14
+ pvgUnit12 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 12
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.15
+ pvgUnit13 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 13
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.16
+ pvgUnit14 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 14
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.17
+ pvgUnit15 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 15
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.18
+ pvgUnit16 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 16
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.19
+ pvgUnit17 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 17
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.20
+ pvgUnit18 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 18
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.21
+ pvgUnit19 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 19
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.22
+ pvgUnit20 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 20
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.23
+ pvgUnit21 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 21
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 23 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.24
+ pvgUnit22 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 22
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 24 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.25
+ pvgUnit23 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 23
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.26
+ pvgUnit24 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 24
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.27
+ pvgUnit25 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 25
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 27 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.28
+ pvgUnit26 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 26
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.29
+ pvgUnit27 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 27
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 29 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.30
+ pvgUnit28 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 28
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 30 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.31
+ pvgUnit29 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 29
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 31 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.32
+ pvgUnit30 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 30
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 32 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.33
+ pvgUnit31 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 31
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { publicEntry 33 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.1.1.34
+ pvgRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { publicEntry 34 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2
+ language0Table OBJECT-TYPE
+ SYNTAX SEQUENCE OF Language0Entry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { voiceGroup 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1
+ language0Entry OBJECT-TYPE
+ SYNTAX Language0Entry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { lvgzeroIndex }
+ ::= { language0Table 1 }
+
+
+ Language0Entry ::=
+ SEQUENCE {
+ lvgzeroIndex
+ INTEGER,
+ lvgzeroUnit0
+ OCTET STRING,
+ lvgzeroUnit1
+ OCTET STRING,
+ lvgzeroUnit2
+ OCTET STRING,
+ lvgzeroUnit3
+ OCTET STRING,
+ lvgzeroUnit4
+ OCTET STRING,
+ lvgzeroUnit5
+ OCTET STRING,
+ lvgzeroUnit6
+ OCTET STRING,
+ lvgzeroUnit7
+ OCTET STRING,
+ lvgzeroUnit8
+ OCTET STRING,
+ lvgzeroUnit9
+ OCTET STRING,
+ lvgzeroUnit10
+ OCTET STRING,
+ lvgzeroUnit11
+ OCTET STRING,
+ lvgzeroUnit12
+ OCTET STRING,
+ lvgzeroUnit13
+ OCTET STRING,
+ lvgzeroUnit14
+ OCTET STRING,
+ lvgzeroUnit15
+ OCTET STRING,
+ lvgzeroUnit16
+ OCTET STRING,
+ lvgzeroUnit17
+ OCTET STRING,
+ lvgzeroUnit18
+ OCTET STRING,
+ lvgzeroUnit19
+ OCTET STRING,
+ lvgzeroUnit20
+ OCTET STRING,
+ lvgzeroUnit21
+ OCTET STRING,
+ lvgzeroUnit22
+ OCTET STRING,
+ lvgzeroUnit23
+ OCTET STRING,
+ lvgzeroUnit24
+ OCTET STRING,
+ lvgzeroUnit25
+ OCTET STRING,
+ lvgzeroUnit26
+ OCTET STRING,
+ lvgzeroUnit27
+ OCTET STRING,
+ lvgzeroUnit28
+ OCTET STRING,
+ lvgzeroUnit29
+ OCTET STRING,
+ lvgzeroUnit30
+ OCTET STRING,
+ lvgzeroUnit31
+ OCTET STRING,
+ lvgzeroRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.1
+ lvgzeroIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index from 0 to 255."
+ ::= { language0Entry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.2
+ lvgzeroUnit0 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 0
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.3
+ lvgzeroUnit1 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 1
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.4
+ lvgzeroUnit2 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 2
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.5
+ lvgzeroUnit3 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 3
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.6
+ lvgzeroUnit4 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 4
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.7
+ lvgzeroUnit5 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 5
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.8
+ lvgzeroUnit6 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 6
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.9
+ lvgzeroUnit7 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 7
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.10
+ lvgzeroUnit8 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 8
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.11
+ lvgzeroUnit9 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 9
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.12
+ lvgzeroUnit10 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 10
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.13
+ lvgzeroUnit11 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 11
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.14
+ lvgzeroUnit12 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 12
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.15
+ lvgzeroUnit13 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 13
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.16
+ lvgzeroUnit14 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 14
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.17
+ lvgzeroUnit15 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 15
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.18
+ lvgzeroUnit16 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 16
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.19
+ lvgzeroUnit17 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 17
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.20
+ lvgzeroUnit18 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 18
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.21
+ lvgzeroUnit19 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 19
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.22
+ lvgzeroUnit20 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 20
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.23
+ lvgzeroUnit21 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 21
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 23 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.24
+ lvgzeroUnit22 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 22
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 24 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.25
+ lvgzeroUnit23 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 23
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.26
+ lvgzeroUnit24 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 24
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.27
+ lvgzeroUnit25 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 25
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 27 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.28
+ lvgzeroUnit26 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 26
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.29
+ lvgzeroUnit27 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 27
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 29 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.30
+ lvgzeroUnit28 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 28
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 30 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.31
+ lvgzeroUnit29 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 29
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 31 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.32
+ lvgzeroUnit30 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 30
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 32 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.33
+ lvgzeroUnit31 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 31
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language0Entry 33 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.2.1.34
+ lvgzeroRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { language0Entry 34 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3
+ language1Table OBJECT-TYPE
+ SYNTAX SEQUENCE OF Language1Entry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { voiceGroup 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1
+ language1Entry OBJECT-TYPE
+ SYNTAX Language1Entry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { lvgoneIndex }
+ ::= { language1Table 1 }
+
+
+ Language1Entry ::=
+ SEQUENCE {
+ lvgoneIndex
+ INTEGER,
+ lvgoneUnit0
+ OCTET STRING,
+ lvgoneUnit1
+ OCTET STRING,
+ lvgoneUnit2
+ OCTET STRING,
+ lvgoneUnit3
+ OCTET STRING,
+ lvgoneUnit4
+ OCTET STRING,
+ lvgoneUnit5
+ OCTET STRING,
+ lvgoneUnit6
+ OCTET STRING,
+ lvgoneUnit7
+ OCTET STRING,
+ lvgoneUnit8
+ OCTET STRING,
+ lvgoneUnit9
+ OCTET STRING,
+ lvgoneUnit10
+ OCTET STRING,
+ lvgoneUnit11
+ OCTET STRING,
+ lvgoneUnit12
+ OCTET STRING,
+ lvgoneUnit13
+ OCTET STRING,
+ lvgoneUnit14
+ OCTET STRING,
+ lvgoneUnit15
+ OCTET STRING,
+ lvgoneUnit16
+ OCTET STRING,
+ lvgoneUnit17
+ OCTET STRING,
+ lvgoneUnit18
+ OCTET STRING,
+ lvgoneUnit19
+ OCTET STRING,
+ lvgoneUnit20
+ OCTET STRING,
+ lvgoneUnit21
+ OCTET STRING,
+ lvgoneUnit22
+ OCTET STRING,
+ lvgoneUnit23
+ OCTET STRING,
+ lvgoneUnit24
+ OCTET STRING,
+ lvgoneUnit25
+ OCTET STRING,
+ lvgoneUnit26
+ OCTET STRING,
+ lvgoneUnit27
+ OCTET STRING,
+ lvgoneUnit28
+ OCTET STRING,
+ lvgoneUnit29
+ OCTET STRING,
+ lvgoneUnit30
+ OCTET STRING,
+ lvgoneUnit31
+ OCTET STRING,
+ lvgoneRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.1
+ lvgoneIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index from 0 to 4."
+ ::= { language1Entry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.2
+ lvgoneUnit0 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 0
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.3
+ lvgoneUnit1 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 1
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.4
+ lvgoneUnit2 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 2
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.5
+ lvgoneUnit3 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 3
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.6
+ lvgoneUnit4 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 4
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.7
+ lvgoneUnit5 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 5
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.8
+ lvgoneUnit6 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 6
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.9
+ lvgoneUnit7 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 7
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.10
+ lvgoneUnit8 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 8
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.11
+ lvgoneUnit9 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 9
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.12
+ lvgoneUnit10 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 10
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.13
+ lvgoneUnit11 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 11
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.14
+ lvgoneUnit12 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 12
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.15
+ lvgoneUnit13 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 13
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.16
+ lvgoneUnit14 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 14
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.17
+ lvgoneUnit15 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 15
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.18
+ lvgoneUnit16 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 16
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.19
+ lvgoneUnit17 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 17
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.20
+ lvgoneUnit18 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 18
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.21
+ lvgoneUnit19 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 19
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.22
+ lvgoneUnit20 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 20
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.23
+ lvgoneUnit21 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 21
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 23 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.24
+ lvgoneUnit22 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 22
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 24 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.25
+ lvgoneUnit23 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 23
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.26
+ lvgoneUnit24 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 24
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.27
+ lvgoneUnit25 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 25
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 27 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.28
+ lvgoneUnit26 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 26
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.29
+ lvgoneUnit27 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 27
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 29 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.30
+ lvgoneUnit28 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 28
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 30 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.31
+ lvgoneUnit29 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 29
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 31 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.32
+ lvgoneUnit30 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 30
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 32 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.33
+ lvgoneUnit31 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 31
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language1Entry 33 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.3.1.34
+ lvgoneRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { language1Entry 34 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4
+ language2Table OBJECT-TYPE
+ SYNTAX SEQUENCE OF Language2Entry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { voiceGroup 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1
+ language2Entry OBJECT-TYPE
+ SYNTAX Language2Entry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { lvgtwoIndex }
+ ::= { language2Table 1 }
+
+
+ Language2Entry ::=
+ SEQUENCE {
+ lvgtwoIndex
+ INTEGER,
+ lvgtwoUnit0
+ OCTET STRING,
+ lvgtwoUnit1
+ OCTET STRING,
+ lvgtwoUnit2
+ OCTET STRING,
+ lvgtwoUnit3
+ OCTET STRING,
+ lvgtwoUnit4
+ OCTET STRING,
+ lvgtwoUnit5
+ OCTET STRING,
+ lvgtwoUnit6
+ OCTET STRING,
+ lvgtwoUnit7
+ OCTET STRING,
+ lvgtwoUnit8
+ OCTET STRING,
+ lvgtwoUnit9
+ OCTET STRING,
+ lvgtwoUnit10
+ OCTET STRING,
+ lvgtwoUnit11
+ OCTET STRING,
+ lvgtwoUnit12
+ OCTET STRING,
+ lvgtwoUnit13
+ OCTET STRING,
+ lvgtwoUnit14
+ OCTET STRING,
+ lvgtwoUnit15
+ OCTET STRING,
+ lvgtwoUnit16
+ OCTET STRING,
+ lvgtwoUnit17
+ OCTET STRING,
+ lvgtwoUnit18
+ OCTET STRING,
+ lvgtwoUnit19
+ OCTET STRING,
+ lvgtwoUnit20
+ OCTET STRING,
+ lvgtwoUnit21
+ OCTET STRING,
+ lvgtwoUnit22
+ OCTET STRING,
+ lvgtwoUnit23
+ OCTET STRING,
+ lvgtwoUnit24
+ OCTET STRING,
+ lvgtwoUnit25
+ OCTET STRING,
+ lvgtwoUnit26
+ OCTET STRING,
+ lvgtwoUnit27
+ OCTET STRING,
+ lvgtwoUnit28
+ OCTET STRING,
+ lvgtwoUnit29
+ OCTET STRING,
+ lvgtwoUnit30
+ OCTET STRING,
+ lvgtwoUnit31
+ OCTET STRING,
+ lvgtwoRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.1
+ lvgtwoIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index from 0 to 255."
+ ::= { language2Entry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.2
+ lvgtwoUnit0 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 0
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.3
+ lvgtwoUnit1 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 1
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.4
+ lvgtwoUnit2 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 2
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.5
+ lvgtwoUnit3 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 3
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.6
+ lvgtwoUnit4 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 4
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.7
+ lvgtwoUnit5 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 5
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.8
+ lvgtwoUnit6 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 6
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.9
+ lvgtwoUnit7 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 7
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.10
+ lvgtwoUnit8 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 8
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.11
+ lvgtwoUnit9 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 9
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.12
+ lvgtwoUnit10 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 10
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.13
+ lvgtwoUnit11 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 11
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.14
+ lvgtwoUnit12 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 12
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.15
+ lvgtwoUnit13 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 13
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.16
+ lvgtwoUnit14 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 14
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.17
+ lvgtwoUnit15 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 15
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.18
+ lvgtwoUnit16 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 16
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.19
+ lvgtwoUnit17 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 17
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.20
+ lvgtwoUnit18 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 18
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.21
+ lvgtwoUnit19 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 19
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.22
+ lvgtwoUnit20 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 20
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.23
+ lvgtwoUnit21 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 21
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 23 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.24
+ lvgtwoUnit22 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 22
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 24 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.25
+ lvgtwoUnit23 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 23
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.26
+ lvgtwoUnit24 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 24
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.27
+ lvgtwoUnit25 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 25
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 27 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.28
+ lvgtwoUnit26 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 26
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.29
+ lvgtwoUnit27 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 27
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 29 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.30
+ lvgtwoUnit28 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 28
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 30 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.31
+ lvgtwoUnit29 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 29
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 31 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.32
+ lvgtwoUnit30 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 30
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 32 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.33
+ lvgtwoUnit31 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 31
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language2Entry 33 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.4.1.34
+ lvgtwoRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { language2Entry 34 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5
+ language3Table OBJECT-TYPE
+ SYNTAX SEQUENCE OF Language3Entry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { voiceGroup 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1
+ language3Entry OBJECT-TYPE
+ SYNTAX Language3Entry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { lvgthreeIndex }
+ ::= { language3Table 1 }
+
+
+ Language3Entry ::=
+ SEQUENCE {
+ lvgthreeIndex
+ INTEGER,
+ lvgthreeUnit0
+ OCTET STRING,
+ lvgthreeUnit1
+ OCTET STRING,
+ lvgthreeUnit2
+ OCTET STRING,
+ lvgthreeUnit3
+ OCTET STRING,
+ lvgthreeUnit4
+ OCTET STRING,
+ lvgthreeUnit5
+ OCTET STRING,
+ lvgthreeUnit6
+ OCTET STRING,
+ lvgthreeUnit7
+ OCTET STRING,
+ lvgthreeUnit8
+ OCTET STRING,
+ lvgthreeUnit9
+ OCTET STRING,
+ lvgthreeUnit10
+ OCTET STRING,
+ lvgthreeUnit11
+ OCTET STRING,
+ lvgthreeUnit12
+ OCTET STRING,
+ lvgthreeUnit13
+ OCTET STRING,
+ lvgthreeUnit14
+ OCTET STRING,
+ lvgthreeUnit15
+ OCTET STRING,
+ lvgthreeUnit16
+ OCTET STRING,
+ lvgthreeUnit17
+ OCTET STRING,
+ lvgthreeUnit18
+ OCTET STRING,
+ lvgthreeUnit19
+ OCTET STRING,
+ lvgthreeUnit20
+ OCTET STRING,
+ lvgthreeUnit21
+ OCTET STRING,
+ lvgthreeUnit22
+ OCTET STRING,
+ lvgthreeUnit23
+ OCTET STRING,
+ lvgthreeUnit24
+ OCTET STRING,
+ lvgthreeUnit25
+ OCTET STRING,
+ lvgthreeUnit26
+ OCTET STRING,
+ lvgthreeUnit27
+ OCTET STRING,
+ lvgthreeUnit28
+ OCTET STRING,
+ lvgthreeUnit29
+ OCTET STRING,
+ lvgthreeUnit30
+ OCTET STRING,
+ lvgthreeUnit31
+ OCTET STRING,
+ lvgthreeRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.1
+ lvgthreeIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index from 0 to 255."
+ ::= { language3Entry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.2
+ lvgthreeUnit0 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 0
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.3
+ lvgthreeUnit1 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 1
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.4
+ lvgthreeUnit2 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 2
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.5
+ lvgthreeUnit3 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 3
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.6
+ lvgthreeUnit4 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 4
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.7
+ lvgthreeUnit5 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 5
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.8
+ lvgthreeUnit6 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 6
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.9
+ lvgthreeUnit7 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 7
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.10
+ lvgthreeUnit8 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 8
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.11
+ lvgthreeUnit9 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 9
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.12
+ lvgthreeUnit10 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 10
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.13
+ lvgthreeUnit11 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 11
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.14
+ lvgthreeUnit12 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 12
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.15
+ lvgthreeUnit13 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 13
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.16
+ lvgthreeUnit14 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 14
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.17
+ lvgthreeUnit15 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 15
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.18
+ lvgthreeUnit16 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 16
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.19
+ lvgthreeUnit17 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 17
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.20
+ lvgthreeUnit18 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 18
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.21
+ lvgthreeUnit19 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 19
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.22
+ lvgthreeUnit20 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 20
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.23
+ lvgthreeUnit21 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 21
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 23 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.24
+ lvgthreeUnit22 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 22
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 24 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.25
+ lvgthreeUnit23 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 23
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.26
+ lvgthreeUnit24 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 24
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.27
+ lvgthreeUnit25 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 25
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 27 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.28
+ lvgthreeUnit26 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 26
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.29
+ lvgthreeUnit27 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 27
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 29 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.30
+ lvgthreeUnit28 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 28
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 30 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.31
+ lvgthreeUnit29 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 29
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 31 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.32
+ lvgthreeUnit30 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 30
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 32 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.33
+ lvgthreeUnit31 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 31
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language3Entry 33 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.5.1.34
+ lvgthreeRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { language3Entry 34 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6
+ language4Table OBJECT-TYPE
+ SYNTAX SEQUENCE OF Language4Entry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { voiceGroup 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1
+ language4Entry OBJECT-TYPE
+ SYNTAX Language4Entry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { lvgfourIndex }
+ ::= { language4Table 1 }
+
+
+ Language4Entry ::=
+ SEQUENCE {
+ lvgfourIndex
+ INTEGER,
+ lvgfourUnit0
+ OCTET STRING,
+ lvgfourUnit1
+ OCTET STRING,
+ lvgfourUnit2
+ OCTET STRING,
+ lvgfourUnit3
+ OCTET STRING,
+ lvgfourUnit4
+ OCTET STRING,
+ lvgfourUnit5
+ OCTET STRING,
+ lvgfourUnit6
+ OCTET STRING,
+ lvgfourUnit7
+ OCTET STRING,
+ lvgfourUnit8
+ OCTET STRING,
+ lvgfourUnit9
+ OCTET STRING,
+ lvgfourUnit10
+ OCTET STRING,
+ lvgfourUnit11
+ OCTET STRING,
+ lvgfourUnit12
+ OCTET STRING,
+ lvgfourUnit13
+ OCTET STRING,
+ lvgfourUnit14
+ OCTET STRING,
+ lvgfourUnit15
+ OCTET STRING,
+ lvgfourUnit16
+ OCTET STRING,
+ lvgfourUnit17
+ OCTET STRING,
+ lvgfourUnit18
+ OCTET STRING,
+ lvgfourUnit19
+ OCTET STRING,
+ lvgfourUnit20
+ OCTET STRING,
+ lvgfourUnit21
+ OCTET STRING,
+ lvgfourUnit22
+ OCTET STRING,
+ lvgfourUnit23
+ OCTET STRING,
+ lvgfourUnit24
+ OCTET STRING,
+ lvgfourUnit25
+ OCTET STRING,
+ lvgfourUnit26
+ OCTET STRING,
+ lvgfourUnit27
+ OCTET STRING,
+ lvgfourUnit28
+ OCTET STRING,
+ lvgfourUnit29
+ OCTET STRING,
+ lvgfourUnit30
+ OCTET STRING,
+ lvgfourUnit31
+ OCTET STRING,
+ lvgfourRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.1
+ lvgfourIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Index from 0 to 255."
+ ::= { language4Entry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.2
+ lvgfourUnit0 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 0
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.3
+ lvgfourUnit1 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 1
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.4
+ lvgfourUnit2 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 2
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.5
+ lvgfourUnit3 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 3
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.6
+ lvgfourUnit4 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 4
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.7
+ lvgfourUnit5 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 5
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.8
+ lvgfourUnit6 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 6
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.9
+ lvgfourUnit7 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 7
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.10
+ lvgfourUnit8 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Unit 8
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.11
+ lvgfourUnit9 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 9
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 11 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.12
+ lvgfourUnit10 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 10
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.13
+ lvgfourUnit11 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 11
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 13 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.14
+ lvgfourUnit12 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 12
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 14 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.15
+ lvgfourUnit13 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 13
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 15 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.16
+ lvgfourUnit14 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 14
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 16 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.17
+ lvgfourUnit15 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 15
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 17 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.18
+ lvgfourUnit16 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 16
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 18 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.19
+ lvgfourUnit17 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 17
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 19 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.20
+ lvgfourUnit18 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 18
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 20 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.21
+ lvgfourUnit19 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 19
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 21 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.22
+ lvgfourUnit20 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 20
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 22 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.23
+ lvgfourUnit21 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 21
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 23 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.24
+ lvgfourUnit22 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 22
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 24 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.25
+ lvgfourUnit23 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 23
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 25 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.26
+ lvgfourUnit24 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 24
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 26 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.27
+ lvgfourUnit25 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 25
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 27 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.28
+ lvgfourUnit26 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 26
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 28 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.29
+ lvgfourUnit27 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 27
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 29 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.30
+ lvgfourUnit28 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 28
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 30 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.31
+ lvgfourUnit29 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 29
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 31 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.32
+ lvgfourUnit30 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 30
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 32 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.33
+ lvgfourUnit31 OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..4))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Name:Unit 31
+ Remark:The voice group determines an announcement. Any invalid BCD digit,
such as 0xa000, indicate end of voice group."
+ ::= { language4Entry 33 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.3.9.2.6.6.1.34
+ lvgfourRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { language4Entry 34 }
+
+
+
+ END
+
+--
+-- LGC-SS-VMS-MIB.my
+--
diff --git a/omc/bin/mib/LGC-SS-XAPP-MIB.my b/omc/bin/mib/LGC-SS-XAPP-MIB.my
new file mode 100644
index 0000000..9a8d25f
--- /dev/null
+++ b/omc/bin/mib/LGC-SS-XAPP-MIB.my
@@ -0,0 +1,689 @@
+--
+-- LGC-SS-XAPP-MIB.my
+-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 209
+-- Thursday, September 23, 2010 at 15:51:37
+--
+
+ LGC-SS-XAPP-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ lgcSS, DisplayString, RowStatus
+ FROM LGC-MIB
+ Opaque, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI;
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5
+ xapp MODULE-IDENTITY
+ LAST-UPDATED "200709061209Z" -- September 06, 2007 at 12:09 GMT
+ ORGANIZATION
+ "LGC Wireless"
+ CONTACT-INFO
+ "Contact-info."
+ DESCRIPTION
+ "Description."
+ ::= { platform 5 }
+
+
+
+
+
+--
+-- Node definitions
+--
+
+ -- 1.3.6.1.4.1.1373.2.3
+ wxc2 OBJECT IDENTIFIER ::= { lgcSS 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2
+ platform OBJECT IDENTIFIER ::= { wxc2 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2
+ parameter OBJECT IDENTIFIER ::= { xapp 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.1
+ system OBJECT IDENTIFIER ::= { parameter 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.1.1
+ mCC OBJECT-TYPE
+ SYNTAX Opaque (SIZE (2))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ OPAQUE DECODE RULE:
+ [unit]MCC[u]00.0-01.7[u]input
+ [v]keepHex-low-E
+ [remark]
+ Mobile Country Code"
+ ::= { system 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.1.2
+ mNC OBJECT-TYPE
+ SYNTAX Opaque (SIZE (2))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ OPAQUE DECODE RULE:
+ [unit]MNC[u]00.0-01.7[u]input
+ [v]keepHex-low-E
+ [remark]
+ Mobile Network Code"
+ ::= { system 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.1.3
+ cC OBJECT-TYPE
+ SYNTAX Opaque (SIZE (2))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ OPAQUE DECODE RULE:
+ [unit]CC[u]00.0-01.7[u]input
+ [v]keepHex-low-E
+ [remark]
+ Country Code"
+ ::= { system 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.1.4
+ nDC OBJECT-TYPE
+ SYNTAX Opaque (SIZE (3))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ OPAQUE DECODE RULE:
+ [unit]NDC[u]00.0-02.7[u]input
+ [v]keepHex-low-E
+ [remark]
+ National Destination Code"
+ ::= { system 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.1.5
+ internationalPrefix OBJECT-TYPE
+ SYNTAX Opaque (SIZE (2))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ OPAQUE DECODE RULE:
+ [unit]International Prefix[u]00.0-01.7[u]input
+ [v]keepHex-low-E
+ [remark]
+ Access code for international network."
+ ::= { system 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.1.6
+ nationalPrefix OBJECT-TYPE
+ SYNTAX Opaque (SIZE (2))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes
+ OPAQUE DECODE RULE:
+ [unit]National Prefix[u]00.0-01.7[u]input
+ [v]keepHex-low-E
+ [remark]
+ National prefix for the operating country to make a national call."
+ ::= { system 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.1.12
+ command OBJECT-TYPE
+ SYNTAX INTEGER { saveParameter(1) }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { system 12 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.2
+ prefixManipulation OBJECT IDENTIFIER ::= { parameter 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.2.1
+ prefixManipulationTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PrefixManipulationEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Convert service number format for MAP applications. Such as prepaid charging, querying and voice mail routing."
+ ::= { prefixManipulation 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.2.1.1
+ prefixManipulationEntry OBJECT-TYPE
+ SYNTAX PrefixManipulationEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { pmIndex }
+ ::= { prefixManipulationTable 1 }
+
+
+ PrefixManipulationEntry ::=
+ SEQUENCE {
+ pmIndex
+ INTEGER,
+ pmTitle
+ OCTET STRING,
+ pmPrefix
+ OCTET STRING,
+ pmDeletionCount
+ INTEGER,
+ pmInsertionCount
+ INTEGER,
+ pmInsertedDigits
+ OCTET STRING,
+ pmNumberLength
+ INTEGER,
+ pmRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.2.1.1.1
+ pmIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Prefix index number ranges from 0 to 127."
+ ::= { prefixManipulationEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.2.1.1.2
+ pmTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Prefix name for identification purpose only."
+ ::= { prefixManipulationEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.2.1.1.3
+ pmPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Prefix
+ Remark:A combination digits that dialed to the destination."
+ ::= { prefixManipulationEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.2.1.1.4
+ pmDeletionCount OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Deletion Count
+ Remark:The amount of digits to be deleted from the beginning of the incoming number."
+ DEFVAL { 0 }
+ ::= { prefixManipulationEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.2.1.1.5
+ pmInsertionCount OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Insertion Count
+ Remark:The amount of digits to be inserted to the front of the dialed number."
+ DEFVAL { 0 }
+ ::= { prefixManipulationEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.2.1.1.6
+ pmInsertedDigits OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Inserted Digits
+ Remark:The digits to be added to the front of the dialed number."
+ ::= { prefixManipulationEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.2.1.1.7
+ pmNumberLength OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Number Length
+ Remark:The length of the incoming number."
+ ::= { prefixManipulationEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.2.1.1.8
+ pmRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { prefixManipulationEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.3
+ numberGroup OBJECT IDENTIFIER ::= { parameter 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.3.1
+ numberGroupTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF NumberGroupEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { numberGroup 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.3.1.1
+ numberGroupEntry OBJECT-TYPE
+ SYNTAX NumberGroupEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { ngIndex }
+ ::= { numberGroupTable 1 }
+
+
+ NumberGroupEntry ::=
+ SEQUENCE {
+ ngIndex
+ INTEGER,
+ ngTitle
+ OCTET STRING,
+ ngStartNumber
+ OCTET STRING,
+ ngEndNumber
+ OCTET STRING,
+ ngReplaceDigitStart
+ INTEGER,
+ ngReplaceDigitEnd
+ INTEGER,
+ ngReplaceDigitWith
+ OCTET STRING,
+ ngRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.3.1.1.1
+ ngIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Number group index number ranges from 0 to 127."
+ ::= { numberGroupEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.3.1.1.2
+ ngTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Number group name for identification purpose only."
+ ::= { numberGroupEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.3.1.1.3
+ ngStartNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Start Number
+ Remark:First number in the group."
+ ::= { numberGroupEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.3.1.1.4
+ ngEndNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:End Number
+ Remark:Last number in the group."
+ ::= { numberGroupEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.3.1.1.5
+ ngReplaceDigitStart OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Replace Digits From
+ Remark:First digit to replace (position)."
+ ::= { numberGroupEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.3.1.1.6
+ ngReplaceDigitEnd OBJECT-TYPE
+ SYNTAX INTEGER (0..255)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Replace Digits To
+ Remark:Last digit to replace (position)."
+ ::= { numberGroupEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.3.1.1.7
+ ngReplaceDigitWith OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..12))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Replace Digits With
+ Remark:Replace digits with this string."
+ ::= { numberGroupEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.3.1.1.9
+ ngRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { numberGroupEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.4
+ cLIManipulation OBJECT IDENTIFIER ::= { parameter 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.4.1
+ cLIManipulationTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF CLIManipulationEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Remark:Customize the presented caller number format for receiving short message."
+ ::= { cLIManipulation 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.4.1.1
+ cLIManipulationEntry OBJECT-TYPE
+ SYNTAX CLIManipulationEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { cmIndex }
+ ::= { cLIManipulationTable 1 }
+
+
+ CLIManipulationEntry ::=
+ SEQUENCE {
+ cmIndex
+ INTEGER,
+ cmTitle
+ OCTET STRING,
+ cmOriginalNAI
+ INTEGER,
+ cmPrefix
+ OCTET STRING,
+ cmDeletionCount
+ INTEGER,
+ cmModifiedNAI
+ INTEGER,
+ cmInsertionCount
+ INTEGER,
+ cmInsertedDigits
+ OCTET STRING,
+ cmNumberLength
+ INTEGER,
+ cmRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.4.1.1.1
+ cmIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..63)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Prefix index number ranges from 0 to 63."
+ ::= { cLIManipulationEntry 1 }
+
+
+-- Title
+-- 1.3.6.1.4.1.1373.2.3.3.2.2.2.1.1.2
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.4.1.1.2
+ cmTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..8))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Prefix name for identification purpose only."
+ ::= { cLIManipulationEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.4.1.1.3
+ cmOriginalNAI OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ idd(1),
+ ndd(2),
+ unknown(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Original NAI
+ Remark:Original Number Attribute Identity of the caller numbers beginning with this prefix."
+ ::= { cLIManipulationEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.4.1.1.4
+ cmPrefix OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Prefix
+ Remark:The initial digits of the caller number."
+ ::= { cLIManipulationEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.4.1.1.5
+ cmDeletionCount OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Deletion Count
+ Remark:The amount of digits to be deleted from the beginning of the calling number."
+ DEFVAL { 0 }
+ ::= { cLIManipulationEntry 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.4.1.1.6
+ cmModifiedNAI OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ idd(1),
+ ndd(2),
+ unknown(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Modified NAI
+ Remark:Number Attribute Identity of the caller number after manipulation."
+ ::= { cLIManipulationEntry 6 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.4.1.1.7
+ cmInsertionCount OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Insertion Count
+ Remark:The amount of digits to be inserted to the front of the calling number."
+ DEFVAL { 0 }
+ ::= { cLIManipulationEntry 7 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.4.1.1.8
+ cmInsertedDigits OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Inserted Digits
+ Remark:The digits to be added to the front of the calling number."
+ ::= { cLIManipulationEntry 8 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.4.1.1.9
+ cmNumberLength OBJECT-TYPE
+ SYNTAX INTEGER (0..16)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Number Length
+ Remark:The length of the caller number."
+ ::= { cLIManipulationEntry 9 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.4.1.1.10
+ cmRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { cLIManipulationEntry 10 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.5
+ localMSISDN OBJECT IDENTIFIER ::= { parameter 5 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.5.1
+ localMSISDNTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LocalMSISDNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ ::= { localMSISDN 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.5.1.1
+ localMSISDNEntry OBJECT-TYPE
+ SYNTAX LocalMSISDNEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Description."
+ INDEX { lmIndex }
+ ::= { localMSISDNTable 1 }
+
+
+ LocalMSISDNEntry ::=
+ SEQUENCE {
+ lmIndex
+ INTEGER,
+ lmTitle
+ OCTET STRING,
+ lmStartNumber
+ OCTET STRING,
+ lmEndNumber
+ OCTET STRING,
+ lmRowStatus
+ RowStatus
+ }
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.5.1.1.1
+ lmIndex OBJECT-TYPE
+ SYNTAX INTEGER (0..127)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Index
+ Remark:Local MSISDN entry index number ranges from 0 to 127."
+ ::= { localMSISDNEntry 1 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.5.1.1.2
+ lmTitle OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..7))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Title
+ Remark:Local MSISDN entry name for identification purpose only."
+ ::= { localMSISDNEntry 2 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.5.1.1.3
+ lmStartNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:Start Number
+ Remark:First number in the local MSISDN range."
+ ::= { localMSISDNEntry 3 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.5.1.1.4
+ lmEndNumber OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (0..16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes Name:End Number
+ Remark:Last number in the local MSISDN range."
+ ::= { localMSISDNEntry 4 }
+
+
+ -- 1.3.6.1.4.1.1373.2.3.2.5.2.5.1.1.5
+ lmRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Key Parameter:Yes"
+ ::= { localMSISDNEntry 5 }
+
+
+
+ END
+
+--
+-- LGC-SS-XAPP-MIB.my
+--
diff --git a/omc/bin/mib/SNMPv2-SMI b/omc/bin/mib/SNMPv2-SMI
new file mode 100644
index 0000000..1c01e1d
--- /dev/null
+++ b/omc/bin/mib/SNMPv2-SMI
@@ -0,0 +1,344 @@
+SNMPv2-SMI DEFINITIONS ::= BEGIN
+
+-- the path to the root
+
+org OBJECT IDENTIFIER ::= { iso 3 } -- "iso" = 1
+dod OBJECT IDENTIFIER ::= { org 6 }
+internet OBJECT IDENTIFIER ::= { dod 1 }
+
+directory OBJECT IDENTIFIER ::= { internet 1 }
+
+mgmt OBJECT IDENTIFIER ::= { internet 2 }
+mib-2 OBJECT IDENTIFIER ::= { mgmt 1 }
+transmission OBJECT IDENTIFIER ::= { mib-2 10 }
+
+experimental OBJECT IDENTIFIER ::= { internet 3 }
+
+private OBJECT IDENTIFIER ::= { internet 4 }
+enterprises OBJECT IDENTIFIER ::= { private 1 }
+
+security OBJECT IDENTIFIER ::= { internet 5 }
+
+snmpV2 OBJECT IDENTIFIER ::= { internet 6 }
+
+-- transport domains
+snmpDomains OBJECT IDENTIFIER ::= { snmpV2 1 }
+
+-- transport proxies
+snmpProxys OBJECT IDENTIFIER ::= { snmpV2 2 }
+
+-- module identities
+snmpModules OBJECT IDENTIFIER ::= { snmpV2 3 }
+
+-- Extended UTCTime, to allow dates with four-digit years
+-- (Note that this definition of ExtUTCTime is not to be IMPORTed
+-- by MIB modules.)
+ExtUTCTime ::= OCTET STRING(SIZE(11 | 13))
+ -- format is YYMMDDHHMMZ or YYYYMMDDHHMMZ
+
+ -- where: YY - last two digits of year (only years
+ -- between 1900-1999)
+ -- YYYY - last four digits of the year (any year)
+ -- MM - month (01 through 12)
+ -- DD - day of month (01 through 31)
+ -- HH - hours (00 through 23)
+ -- MM - minutes (00 through 59)
+ -- Z - denotes GMT (the ASCII character Z)
+ --
+ -- For example, "9502192015Z" and "199502192015Z" represent
+ -- 8:15pm GMT on 19 February 1995. Years after 1999 must use
+ -- the four digit year format. Years 1900-1999 may use the
+ -- two or four digit format.
+
+-- definitions for information modules
+
+MODULE-IDENTITY MACRO ::=
+BEGIN
+ TYPE NOTATION ::=
+ "LAST-UPDATED" value(Update ExtUTCTime)
+ "ORGANIZATION" Text
+ "CONTACT-INFO" Text
+ "DESCRIPTION" Text
+ RevisionPart
+
+ VALUE NOTATION ::=
+ value(VALUE OBJECT IDENTIFIER)
+
+ RevisionPart ::=
+ Revisions
+ | empty
+ Revisions ::=
+ Revision
+ | Revisions Revision
+ Revision ::=
+ "REVISION" value(Update ExtUTCTime)
+ "DESCRIPTION" Text
+
+ -- a character string as defined in section 3.1.1
+ Text ::= value(IA5String)
+END
+
+OBJECT-IDENTITY MACRO ::=
+BEGIN
+ TYPE NOTATION ::=
+ "STATUS" Status
+ "DESCRIPTION" Text
+
+ ReferPart
+
+ VALUE NOTATION ::=
+ value(VALUE OBJECT IDENTIFIER)
+
+ Status ::=
+ "current"
+ | "deprecated"
+ | "obsolete"
+
+ ReferPart ::=
+ "REFERENCE" Text
+ | empty
+
+ -- a character string as defined in section 3.1.1
+ Text ::= value(IA5String)
+END
+
+-- names of objects
+-- (Note that these definitions of ObjectName and NotificationName
+-- are not to be IMPORTed by MIB modules.)
+
+ObjectName ::=
+ OBJECT IDENTIFIER
+
+NotificationName ::=
+ OBJECT IDENTIFIER
+
+-- syntax of objects
+
+-- the "base types" defined here are:
+-- 3 built-in ASN.1 types: INTEGER, OCTET STRING, OBJECT IDENTIFIER
+-- 8 application-defined types: Integer32, IpAddress, Counter32,
+-- Gauge32, Unsigned32, TimeTicks, Opaque, and Counter64
+
+ObjectSyntax ::=
+ CHOICE {
+ simple
+ SimpleSyntax,
+ -- note that SEQUENCEs for conceptual tables and
+ -- rows are not mentioned here...
+
+ application-wide
+ ApplicationSyntax
+ }
+
+-- built-in ASN.1 types
+
+SimpleSyntax ::=
+ CHOICE {
+ -- INTEGERs with a more restrictive range
+ -- may also be used
+ integer-value -- includes Integer32
+ INTEGER (-2147483648..2147483647),
+ -- OCTET STRINGs with a more restrictive size
+ -- may also be used
+ string-value
+ OCTET STRING (SIZE (0..65535)),
+ objectID-value
+ OBJECT IDENTIFIER
+ }
+
+-- indistinguishable from INTEGER, but never needs more than
+-- 32-bits for a two's complement representation
+Integer32 ::=
+ INTEGER (-2147483648..2147483647)
+
+-- application-wide types
+
+ApplicationSyntax ::=
+ CHOICE {
+ ipAddress-value
+ IpAddress,
+ counter-value
+ Counter32,
+ timeticks-value
+ TimeTicks,
+ arbitrary-value
+ Opaque,
+ big-counter-value
+ Counter64,
+ unsigned-integer-value -- includes Gauge32
+ Unsigned32
+ }
+
+-- in network-byte order
+
+-- (this is a tagged type for historical reasons)
+IpAddress ::=
+ [APPLICATION 0]
+ IMPLICIT OCTET STRING (SIZE (4))
+
+-- this wraps
+Counter32 ::=
+ [APPLICATION 1]
+ IMPLICIT INTEGER (0..4294967295)
+
+-- this doesn't wrap
+Gauge32 ::=
+ [APPLICATION 2]
+ IMPLICIT INTEGER (0..4294967295)
+
+-- an unsigned 32-bit quantity
+-- indistinguishable from Gauge32
+Unsigned32 ::=
+ [APPLICATION 2]
+ IMPLICIT INTEGER (0..4294967295)
+
+-- hundredths of seconds since an epoch
+TimeTicks ::=
+ [APPLICATION 3]
+ IMPLICIT INTEGER (0..4294967295)
+
+-- for backward-compatibility only
+Opaque ::=
+ [APPLICATION 4]
+ IMPLICIT OCTET STRING
+
+-- for counters that wrap in less than one hour with only 32 bits
+Counter64 ::=
+ [APPLICATION 6]
+ IMPLICIT INTEGER (0..18446744073709551615)
+
+-- definition for objects
+
+OBJECT-TYPE MACRO ::=
+BEGIN
+ TYPE NOTATION ::=
+ "SYNTAX" Syntax
+ UnitsPart
+ "MAX-ACCESS" Access
+ "STATUS" Status
+ "DESCRIPTION" Text
+ ReferPart
+
+ IndexPart
+ DefValPart
+
+ VALUE NOTATION ::=
+ value(VALUE ObjectName)
+
+ Syntax ::= -- Must be one of the following:
+ -- a base type (or its refinement),
+ -- a textual convention (or its refinement), or
+ -- a BITS pseudo-type
+ type
+ | "BITS" "{" NamedBits "}"
+
+ NamedBits ::= NamedBit
+ | NamedBits "," NamedBit
+
+ NamedBit ::= identifier "(" number ")" -- number is nonnegative
+
+ UnitsPart ::=
+ "UNITS" Text
+ | empty
+
+ Access ::=
+ "not-accessible"
+ | "accessible-for-notify"
+ | "read-only"
+ | "read-write"
+ | "read-create"
+
+ Status ::=
+ "current"
+ | "deprecated"
+ | "obsolete"
+
+ ReferPart ::=
+ "REFERENCE" Text
+ | empty
+
+ IndexPart ::=
+ "INDEX" "{" IndexTypes "}"
+ | "AUGMENTS" "{" Entry "}"
+ | empty
+ IndexTypes ::=
+ IndexType
+ | IndexTypes "," IndexType
+ IndexType ::=
+ "IMPLIED" Index
+ | Index
+
+ Index ::=
+ -- use the SYNTAX value of the
+ -- correspondent OBJECT-TYPE invocation
+ value(ObjectName)
+ Entry ::=
+ -- use the INDEX value of the
+ -- correspondent OBJECT-TYPE invocation
+ value(ObjectName)
+
+ DefValPart ::= "DEFVAL" "{" Defvalue "}"
+ | empty
+
+ Defvalue ::= -- must be valid for the type specified in
+ -- SYNTAX clause of same OBJECT-TYPE macro
+ value(ObjectSyntax)
+ | "{" BitsValue "}"
+
+ BitsValue ::= BitNames
+ | empty
+
+ BitNames ::= BitName
+ | BitNames "," BitName
+
+ BitName ::= identifier
+
+ -- a character string as defined in section 3.1.1
+ Text ::= value(IA5String)
+END
+
+-- definitions for notifications
+
+NOTIFICATION-TYPE MACRO ::=
+BEGIN
+ TYPE NOTATION ::=
+ ObjectsPart
+ "STATUS" Status
+ "DESCRIPTION" Text
+ ReferPart
+
+ VALUE NOTATION ::=
+ value(VALUE NotificationName)
+
+ ObjectsPart ::=
+ "OBJECTS" "{" Objects "}"
+ | empty
+ Objects ::=
+ Object
+
+ | Objects "," Object
+ Object ::=
+ value(ObjectName)
+
+ Status ::=
+ "current"
+ | "deprecated"
+ | "obsolete"
+
+ ReferPart ::=
+ "REFERENCE" Text
+ | empty
+
+ -- a character string as defined in section 3.1.1
+ Text ::= value(IA5String)
+END
+
+-- definitions of administrative identifiers
+
+zeroDotZero OBJECT-IDENTITY
+ STATUS current
+ DESCRIPTION
+ "A value used for null identifiers."
+ ::= { 0 0 }
+
+END
diff --git a/omc/bin/mib/SNMPv2-TC b/omc/bin/mib/SNMPv2-TC
new file mode 100644
index 0000000..860bf71
--- /dev/null
+++ b/omc/bin/mib/SNMPv2-TC
@@ -0,0 +1,772 @@
+SNMPv2-TC DEFINITIONS ::= BEGIN
+
+IMPORTS
+ TimeTicks FROM SNMPv2-SMI;
+
+-- definition of textual conventions
+
+TEXTUAL-CONVENTION MACRO ::=
+
+BEGIN
+ TYPE NOTATION ::=
+ DisplayPart
+ "STATUS" Status
+ "DESCRIPTION" Text
+ ReferPart
+ "SYNTAX" Syntax
+
+ VALUE NOTATION ::=
+ value(VALUE Syntax) -- adapted ASN.1
+
+ DisplayPart ::=
+ "DISPLAY-HINT" Text
+ | empty
+
+ Status ::=
+ "current"
+ | "deprecated"
+ | "obsolete"
+
+ ReferPart ::=
+ "REFERENCE" Text
+ | empty
+
+ -- a character string as defined in [2]
+ Text ::= value(IA5String)
+
+ Syntax ::= -- Must be one of the following:
+ -- a base type (or its refinement), or
+ -- a BITS pseudo-type
+ type
+ | "BITS" "{" NamedBits "}"
+
+ NamedBits ::= NamedBit
+ | NamedBits "," NamedBit
+
+ NamedBit ::= identifier "(" number ")" -- number is nonnegative
+
+END
+
+DisplayString ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT "255a"
+ STATUS current
+ DESCRIPTION
+ "Represents textual information taken from the NVT ASCII
+
+ character set, as defined in pages 4, 10-11 of RFC 854.
+
+ To summarize RFC 854, the NVT ASCII repertoire specifies:
+
+ - the use of character codes 0-127 (decimal)
+
+ - the graphics characters (32-126) are interpreted as
+ US ASCII
+
+ - NUL, LF, CR, BEL, BS, HT, VT and FF have the special
+ meanings specified in RFC 854
+
+ - the other 25 codes have no standard interpretation
+
+ - the sequence 'CR LF' means newline
+
+ - the sequence 'CR NUL' means carriage-return
+
+ - an 'LF' not preceded by a 'CR' means moving to the
+ same column on the next line.
+
+ - the sequence 'CR x' for any x other than LF or NUL is
+ illegal. (Note that this also means that a string may
+ end with either 'CR LF' or 'CR NUL', but not with CR.)
+
+ Any object defined using this syntax may not exceed 255
+ characters in length."
+ SYNTAX OCTET STRING (SIZE (0..255))
+
+PhysAddress ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT "1x:"
+ STATUS current
+ DESCRIPTION
+ "Represents media- or physical-level addresses."
+ SYNTAX OCTET STRING
+
+MacAddress ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT "1x:"
+ STATUS current
+ DESCRIPTION
+ "Represents an 802 MAC address represented in the
+ `canonical' order defined by IEEE 802.1a, i.e., as if it
+ were transmitted least significant bit first, even though
+ 802.5 (in contrast to other 802.x protocols) requires MAC
+ addresses to be transmitted most significant bit first."
+ SYNTAX OCTET STRING (SIZE (6))
+
+TruthValue ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "Represents a boolean value."
+ SYNTAX INTEGER { true(1), false(2) }
+
+TestAndIncr ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "Represents integer-valued information used for atomic
+ operations. When the management protocol is used to specify
+ that an object instance having this syntax is to be
+ modified, the new value supplied via the management protocol
+ must precisely match the value presently held by the
+ instance. If not, the management protocol set operation
+ fails with an error of `inconsistentValue'. Otherwise, if
+ the current value is the maximum value of 2^31-1 (2147483647
+ decimal), then the value held by the instance is wrapped to
+ zero; otherwise, the value held by the instance is
+ incremented by one. (Note that regardless of whether the
+ management protocol set operation succeeds, the variable-
+ binding in the request and response PDUs are identical.)
+
+ The value of the ACCESS clause for objects having this
+ syntax is either `read-write' or `read-create'. When an
+ instance of a columnar object having this syntax is created,
+ any value may be supplied via the management protocol.
+
+ When the network management portion of the system is re-
+ initialized, the value of every object instance having this
+ syntax must either be incremented from its value prior to
+ the re-initialization, or (if the value prior to the re-
+ initialization is unknown) be set to a pseudo-randomly
+ generated value."
+ SYNTAX INTEGER (0..2147483647)
+
+AutonomousType ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "Represents an independently extensible type identification
+ value. It may, for example, indicate a particular sub-tree
+ with further MIB definitions, or define a particular type of
+ protocol or hardware."
+ SYNTAX OBJECT IDENTIFIER
+
+InstancePointer ::= TEXTUAL-CONVENTION
+ STATUS obsolete
+ DESCRIPTION
+ "A pointer to either a specific instance of a MIB object or
+ a conceptual row of a MIB table in the managed device. In
+ the latter case, by convention, it is the name of the
+ particular instance of the first accessible columnar object
+ in the conceptual row.
+
+ The two uses of this textual convention are replaced by
+ VariablePointer and RowPointer, respectively."
+ SYNTAX OBJECT IDENTIFIER
+
+VariablePointer ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "A pointer to a specific object instance. For example,
+ sysContact.0 or ifInOctets.3."
+ SYNTAX OBJECT IDENTIFIER
+
+RowPointer ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "Represents a pointer to a conceptual row. The value is the
+ name of the instance of the first accessible columnar object
+ in the conceptual row.
+
+ For example, ifIndex.3 would point to the 3rd row in the
+ ifTable (note that if ifIndex were not-accessible, then
+ ifDescr.3 would be used instead)."
+ SYNTAX OBJECT IDENTIFIER
+
+RowStatus ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "The RowStatus textual convention is used to manage the
+ creation and deletion of conceptual rows, and is used as the
+ value of the SYNTAX clause for the status column of a
+ conceptual row (as described in Section 7.7.1 of [2].)
+
+ The status column has six defined values:
+
+ - `active', which indicates that the conceptual row is
+ available for use by the managed device;
+
+ - `notInService', which indicates that the conceptual
+ row exists in the agent, but is unavailable for use by
+ the managed device (see NOTE below); 'notInService' has
+ no implication regarding the internal consistency of
+ the row, availability of resources, or consistency with
+ the current state of the managed device;
+
+ - `notReady', which indicates that the conceptual row
+ exists in the agent, but is missing information
+ necessary in order to be available for use by the
+ managed device (i.e., one or more required columns in
+ the conceptual row have not been instanciated);
+
+ - `createAndGo', which is supplied by a management
+ station wishing to create a new instance of a
+ conceptual row and to have its status automatically set
+ to active, making it available for use by the managed
+ device;
+
+ - `createAndWait', which is supplied by a management
+ station wishing to create a new instance of a
+ conceptual row (but not make it available for use by
+ the managed device); and,
+ - `destroy', which is supplied by a management station
+ wishing to delete all of the instances associated with
+ an existing conceptual row.
+
+ Whereas five of the six values (all except `notReady') may
+ be specified in a management protocol set operation, only
+ three values will be returned in response to a management
+ protocol retrieval operation: `notReady', `notInService' or
+ `active'. That is, when queried, an existing conceptual row
+ has only three states: it is either available for use by
+ the managed device (the status column has value `active');
+ it is not available for use by the managed device, though
+ the agent has sufficient information to attempt to make it
+ so (the status column has value `notInService'); or, it is
+ not available for use by the managed device, and an attempt
+ to make it so would fail because the agent has insufficient
+ information (the state column has value `notReady').
+
+ NOTE WELL
+
+ This textual convention may be used for a MIB table,
+ irrespective of whether the values of that table's
+ conceptual rows are able to be modified while it is
+ active, or whether its conceptual rows must be taken
+ out of service in order to be modified. That is, it is
+ the responsibility of the DESCRIPTION clause of the
+ status column to specify whether the status column must
+ not be `active' in order for the value of some other
+ column of the same conceptual row to be modified. If
+ such a specification is made, affected columns may be
+ changed by an SNMP set PDU if the RowStatus would not
+ be equal to `active' either immediately before or after
+ processing the PDU. In other words, if the PDU also
+ contained a varbind that would change the RowStatus
+ value, the column in question may be changed if the
+ RowStatus was not equal to `active' as the PDU was
+ received, or if the varbind sets the status to a value
+ other than 'active'.
+
+ Also note that whenever any elements of a row exist, the
+ RowStatus column must also exist.
+
+ To summarize the effect of having a conceptual row with a
+ status column having a SYNTAX clause value of RowStatus,
+ consider the following state diagram:
+
+ STATE
+ +--------------+-----------+-------------+-------------
+ | A | B | C | D
+ | |status col.|status column|
+ |status column | is | is |status column
+ ACTION |does not exist| notReady | notInService| is active
+--------------+--------------+-----------+-------------+-------------
+set status |noError ->D|inconsist- |inconsistent-|inconsistent-
+column to | or | entValue| Value| Value
+createAndGo |inconsistent- | | |
+ | Value| | |
+--------------+--------------+-----------+-------------+-------------
+set status |noError see 1|inconsist- |inconsistent-|inconsistent-
+column to | or | entValue| Value| Value
+createAndWait |wrongValue | | |
+--------------+--------------+-----------+-------------+-------------
+set status |inconsistent- |inconsist- |noError |noError
+column to | Value| entValue| |
+active | | | |
+ | | or | |
+ | | | |
+ | |see 2 ->D|see 8 ->D| ->D
+--------------+--------------+-----------+-------------+-------------
+set status |inconsistent- |inconsist- |noError |noError ->C
+column to | Value| entValue| |
+notInService | | | |
+ | | or | | or
+ | | | |
+ | |see 3 ->C| ->C|see 6
+--------------+--------------+-----------+-------------+-------------
+set status |noError |noError |noError |noError ->A
+column to | | | | or
+destroy | ->A| ->A| ->A|see 7
+--------------+--------------+-----------+-------------+-------------
+set any other |see 4 |noError |noError |see 5
+column to some| | | |
+value | | see 1| ->C| ->D
+--------------+--------------+-----------+-------------+-------------
+
+ (1) goto B or C, depending on information available to the
+ agent.
+
+ (2) if other variable bindings included in the same PDU,
+ provide values for all columns which are missing but
+ required, and all columns have acceptable values, then
+ return noError and goto D.
+
+ (3) if other variable bindings included in the same PDU,
+ provide legal values for all columns which are missing but
+ required, then return noError and goto C.
+
+ (4) at the discretion of the agent, the return value may be
+ either:
+
+ inconsistentName: because the agent does not choose to
+ create such an instance when the corresponding
+ RowStatus instance does not exist, or
+
+ inconsistentValue: if the supplied value is
+ inconsistent with the state of some other MIB object's
+ value, or
+
+ noError: because the agent chooses to create the
+ instance.
+
+ If noError is returned, then the instance of the status
+ column must also be created, and the new state is B or C,
+ depending on the information available to the agent. If
+ inconsistentName or inconsistentValue is returned, the row
+ remains in state A.
+
+ (5) depending on the MIB definition for the column/table,
+ either noError or inconsistentValue may be returned.
+
+ (6) the return value can indicate one of the following
+ errors:
+
+ wrongValue: because the agent does not support
+ notInService (e.g., an agent which does not support
+ createAndWait), or
+
+ inconsistentValue: because the agent is unable to take
+ the row out of service at this time, perhaps because it
+ is in use and cannot be de-activated.
+
+ (7) the return value can indicate the following error:
+
+ inconsistentValue: because the agent is unable to
+ remove the row at this time, perhaps because it is in
+ use and cannot be de-activated.
+
+ (8) the transition to D can fail, e.g., if the values of the
+ conceptual row are inconsistent, then the error code would
+ be inconsistentValue.
+
+ NOTE: Other processing of (this and other varbinds of) the
+ set request may result in a response other than noError
+ being returned, e.g., wrongValue, noCreation, etc.
+
+ Conceptual Row Creation
+
+ There are four potential interactions when creating a
+ conceptual row: selecting an instance-identifier which is
+ not in use; creating the conceptual row; initializing any
+ objects for which the agent does not supply a default; and,
+ making the conceptual row available for use by the managed
+ device.
+
+ Interaction 1: Selecting an Instance-Identifier
+
+ The algorithm used to select an instance-identifier varies
+ for each conceptual row. In some cases, the instance-
+ identifier is semantically significant, e.g., the
+ destination address of a route, and a management station
+ selects the instance-identifier according to the semantics.
+
+ In other cases, the instance-identifier is used solely to
+ distinguish conceptual rows, and a management station
+ without specific knowledge of the conceptual row might
+ examine the instances present in order to determine an
+ unused instance-identifier. (This approach may be used, but
+ it is often highly sub-optimal; however, it is also a
+ questionable practice for a naive management station to
+ attempt conceptual row creation.)
+
+ Alternately, the MIB module which defines the conceptual row
+ might provide one or more objects which provide assistance
+ in determining an unused instance-identifier. For example,
+ if the conceptual row is indexed by an integer-value, then
+ an object having an integer-valued SYNTAX clause might be
+ defined for such a purpose, allowing a management station to
+ issue a management protocol retrieval operation. In order
+ to avoid unnecessary collisions between competing management
+ stations, `adjacent' retrievals of this object should be
+ different.
+
+ Finally, the management station could select a pseudo-random
+ number to use as the index. In the event that this index
+
+ was already in use and an inconsistentValue was returned in
+ response to the management protocol set operation, the
+ management station should simply select a new pseudo-random
+ number and retry the operation.
+
+ A MIB designer should choose between the two latter
+ algorithms based on the size of the table (and therefore the
+ efficiency of each algorithm). For tables in which a large
+ number of entries are expected, it is recommended that a MIB
+ object be defined that returns an acceptable index for
+ creation. For tables with small numbers of entries, it is
+ recommended that the latter pseudo-random index mechanism be
+ used.
+
+ Interaction 2: Creating the Conceptual Row
+
+ Once an unused instance-identifier has been selected, the
+ management station determines if it wishes to create and
+ activate the conceptual row in one transaction or in a
+ negotiated set of interactions.
+
+ Interaction 2a: Creating and Activating the Conceptual Row
+
+ The management station must first determine the column
+ requirements, i.e., it must determine those columns for
+ which it must or must not provide values. Depending on the
+ complexity of the table and the management station's
+ knowledge of the agent's capabilities, this determination
+ can be made locally by the management station. Alternately,
+ the management station issues a management protocol get
+ operation to examine all columns in the conceptual row that
+ it wishes to create. In response, for each column, there
+ are three possible outcomes:
+
+ - a value is returned, indicating that some other
+ management station has already created this conceptual
+ row. We return to interaction 1.
+
+ - the exception `noSuchInstance' is returned,
+ indicating that the agent implements the object-type
+ associated with this column, and that this column in at
+ least one conceptual row would be accessible in the MIB
+ view used by the retrieval were it to exist. For those
+ columns to which the agent provides read-create access,
+ the `noSuchInstance' exception tells the management
+ station that it should supply a value for this column
+ when the conceptual row is to be created.
+
+ - the exception `noSuchObject' is returned, indicating
+ that the agent does not implement the object-type
+ associated with this column or that there is no
+ conceptual row for which this column would be
+ accessible in the MIB view used by the retrieval. As
+ such, the management station can not issue any
+ management protocol set operations to create an
+ instance of this column.
+
+ Once the column requirements have been determined, a
+ management protocol set operation is accordingly issued.
+ This operation also sets the new instance of the status
+ column to `createAndGo'.
+
+ When the agent processes the set operation, it verifies that
+ it has sufficient information to make the conceptual row
+ available for use by the managed device. The information
+ available to the agent is provided by two sources: the
+ management protocol set operation which creates the
+ conceptual row, and, implementation-specific defaults
+ supplied by the agent (note that an agent must provide
+ implementation-specific defaults for at least those objects
+ which it implements as read-only). If there is sufficient
+ information available, then the conceptual row is created, a
+ `noError' response is returned, the status column is set to
+ `active', and no further interactions are necessary (i.e.,
+ interactions 3 and 4 are skipped). If there is insufficient
+ information, then the conceptual row is not created, and the
+ set operation fails with an error of `inconsistentValue'.
+ On this error, the management station can issue a management
+ protocol retrieval operation to determine if this was
+ because it failed to specify a value for a required column,
+ or, because the selected instance of the status column
+ already existed. In the latter case, we return to
+ interaction 1. In the former case, the management station
+ can re-issue the set operation with the additional
+ information, or begin interaction 2 again using
+ `createAndWait' in order to negotiate creation of the
+ conceptual row.
+
+ NOTE WELL
+
+ Regardless of the method used to determine the column
+ requirements, it is possible that the management
+ station might deem a column necessary when, in fact,
+ the agent will not allow that particular columnar
+ instance to be created or written. In this case, the
+ management protocol set operation will fail with an
+ error such as `noCreation' or `notWritable'. In this
+ case, the management station decides whether it needs
+ to be able to set a value for that particular columnar
+ instance. If not, the management station re-issues the
+ management protocol set operation, but without setting
+ a value for that particular columnar instance;
+ otherwise, the management station aborts the row
+ creation algorithm.
+
+ Interaction 2b: Negotiating the Creation of the Conceptual
+ Row
+
+ The management station issues a management protocol set
+ operation which sets the desired instance of the status
+ column to `createAndWait'. If the agent is unwilling to
+ process a request of this sort, the set operation fails with
+ an error of `wrongValue'. (As a consequence, such an agent
+ must be prepared to accept a single management protocol set
+ operation, i.e., interaction 2a above, containing all of the
+ columns indicated by its column requirements.) Otherwise,
+ the conceptual row is created, a `noError' response is
+ returned, and the status column is immediately set to either
+ `notInService' or `notReady', depending on whether it has
+ sufficient information to (attempt to) make the conceptual
+ row available for use by the managed device. If there is
+ sufficient information available, then the status column is
+ set to `notInService'; otherwise, if there is insufficient
+ information, then the status column is set to `notReady'.
+ Regardless, we proceed to interaction 3.
+
+ Interaction 3: Initializing non-defaulted Objects
+
+ The management station must now determine the column
+ requirements. It issues a management protocol get operation
+ to examine all columns in the created conceptual row. In
+ the response, for each column, there are three possible
+ outcomes:
+
+ - a value is returned, indicating that the agent
+ implements the object-type associated with this column
+ and had sufficient information to provide a value. For
+ those columns to which the agent provides read-create
+ access (and for which the agent allows their values to
+ be changed after their creation), a value return tells
+ the management station that it may issue additional
+ management protocol set operations, if it desires, in
+ order to change the value associated with this column.
+
+ - the exception `noSuchInstance' is returned,
+ indicating that the agent implements the object-type
+ associated with this column, and that this column in at
+ least one conceptual row would be accessible in the MIB
+ view used by the retrieval were it to exist. However,
+ the agent does not have sufficient information to
+ provide a value, and until a value is provided, the
+ conceptual row may not be made available for use by the
+ managed device. For those columns to which the agent
+ provides read-create access, the `noSuchInstance'
+ exception tells the management station that it must
+ issue additional management protocol set operations, in
+ order to provide a value associated with this column.
+
+ - the exception `noSuchObject' is returned, indicating
+ that the agent does not implement the object-type
+ associated with this column or that there is no
+ conceptual row for which this column would be
+ accessible in the MIB view used by the retrieval. As
+ such, the management station can not issue any
+ management protocol set operations to create an
+ instance of this column.
+
+ If the value associated with the status column is
+ `notReady', then the management station must first deal with
+ all `noSuchInstance' columns, if any. Having done so, the
+ value of the status column becomes `notInService', and we
+ proceed to interaction 4.
+
+ Interaction 4: Making the Conceptual Row Available
+
+ Once the management station is satisfied with the values
+ associated with the columns of the conceptual row, it issues
+ a management protocol set operation to set the status column
+ to `active'. If the agent has sufficient information to
+ make the conceptual row available for use by the managed
+ device, the management protocol set operation succeeds (a
+ `noError' response is returned). Otherwise, the management
+ protocol set operation fails with an error of
+ `inconsistentValue'.
+
+ NOTE WELL
+
+ A conceptual row having a status column with value
+ `notInService' or `notReady' is unavailable to the
+ managed device. As such, it is possible for the
+ managed device to create its own instances during the
+ time between the management protocol set operation
+ which sets the status column to `createAndWait' and the
+ management protocol set operation which sets the status
+ column to `active'. In this case, when the management
+ protocol set operation is issued to set the status
+ column to `active', the values held in the agent
+ supersede those used by the managed device.
+
+ If the management station is prevented from setting the
+ status column to `active' (e.g., due to management station
+ or network failure) the conceptual row will be left in the
+ `notInService' or `notReady' state, consuming resources
+ indefinitely. The agent must detect conceptual rows that
+ have been in either state for an abnormally long period of
+ time and remove them. It is the responsibility of the
+ DESCRIPTION clause of the status column to indicate what an
+ abnormally long period of time would be. This period of
+ time should be long enough to allow for human response time
+ (including `think time') between the creation of the
+ conceptual row and the setting of the status to `active'.
+ In the absence of such information in the DESCRIPTION
+ clause, it is suggested that this period be approximately 5
+ minutes in length. This removal action applies not only to
+ newly-created rows, but also to previously active rows which
+ are set to, and left in, the notInService state for a
+ prolonged period exceeding that which is considered normal
+ for such a conceptual row.
+
+ Conceptual Row Suspension
+
+ When a conceptual row is `active', the management station
+ may issue a management protocol set operation which sets the
+ instance of the status column to `notInService'. If the
+ agent is unwilling to do so, the set operation fails with an
+ error of `wrongValue' or `inconsistentValue'. Otherwise,
+ the conceptual row is taken out of service, and a `noError'
+ response is returned. It is the responsibility of the
+ DESCRIPTION clause of the status column to indicate under
+ what circumstances the status column should be taken out of
+ service (e.g., in order for the value of some other column
+ of the same conceptual row to be modified).
+
+ Conceptual Row Deletion
+
+ For deletion of conceptual rows, a management protocol set
+ operation is issued which sets the instance of the status
+ column to `destroy'. This request may be made regardless of
+ the current value of the status column (e.g., it is possible
+ to delete conceptual rows which are either `notReady',
+ `notInService' or `active'.) If the operation succeeds,
+ then all instances associated with the conceptual row are
+ immediately removed."
+ SYNTAX INTEGER {
+ -- the following two values are states:
+ -- these values may be read or written
+ active(1),
+ notInService(2),
+ -- the following value is a state:
+ -- this value may be read, but not written
+ notReady(3),
+ -- the following three values are
+ -- actions: these values may be written,
+ -- but are never read
+ createAndGo(4),
+ createAndWait(5),
+ destroy(6)
+ }
+
+TimeStamp ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "The value of the sysUpTime object at which a specific
+ occurrence happened. The specific occurrence must be
+
+ defined in the description of any object defined using this
+ type.
+
+ If sysUpTime is reset to zero as a result of a re-
+ initialization of the network management (sub)system, then
+ the values of all TimeStamp objects are also reset.
+ However, after approximately 497 days without a re-
+ initialization, the sysUpTime object will reach 2^^32-1 and
+ then increment around to zero; in this case, existing values
+ of TimeStamp objects do not change. This can lead to
+ ambiguities in the value of TimeStamp objects."
+ SYNTAX TimeTicks
+
+TimeInterval ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "A period of time, measured in units of 0.01 seconds."
+ SYNTAX INTEGER (0..2147483647)
+
+DateAndTime ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT "2d-1d-1d,1d:1d:1d.1d,1a1d:1d"
+ STATUS current
+ DESCRIPTION
+ "A date-time specification.
+
+ field octets contents range
+ ----- ------ -------- -----
+ 1 1-2 year* 0..65536
+ 2 3 month 1..12
+ 3 4 day 1..31
+ 4 5 hour 0..23
+ 5 6 minutes 0..59
+ 6 7 seconds 0..60
+ (use 60 for leap-second)
+ 7 8 deci-seconds 0..9
+ 8 9 direction from UTC '+' / '-'
+ 9 10 hours from UTC* 0..13
+ 10 11 minutes from UTC 0..59
+
+ * Notes:
+ - the value of year is in network-byte order
+ - daylight saving time in New Zealand is +13
+
+ For example, Tuesday May 26, 1992 at 1:30:15 PM EDT would be
+ displayed as:
+
+ 1992-5-26,13:30:15.0,-4:0
+
+ Note that if only local time is known, then timezone
+ information (fields 8-10) is not present."
+ SYNTAX OCTET STRING (SIZE (8 | 11))
+
+StorageType ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "Describes the memory realization of a conceptual row. A
+ row which is volatile(2) is lost upon reboot. A row which
+ is either nonVolatile(3), permanent(4) or readOnly(5), is
+ backed up by stable storage. A row which is permanent(4)
+ can be changed but not deleted. A row which is readOnly(5)
+ cannot be changed nor deleted.
+
+ If the value of an object with this syntax is either
+ permanent(4) or readOnly(5), it cannot be written.
+ Conversely, if the value is either other(1), volatile(2) or
+ nonVolatile(3), it cannot be modified to be permanent(4) or
+ readOnly(5). (All illegal modifications result in a
+ 'wrongValue' error.)
+
+ Every usage of this textual convention is required to
+ specify the columnar objects which a permanent(4) row must
+ at a minimum allow to be writable."
+ SYNTAX INTEGER {
+ other(1), -- eh?
+ volatile(2), -- e.g., in RAM
+ nonVolatile(3), -- e.g., in NVRAM
+ permanent(4), -- e.g., partially in ROM
+ readOnly(5) -- e.g., completely in ROM
+ }
+
+TDomain ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "Denotes a kind of transport service.
+
+ Some possible values, such as snmpUDPDomain, are defined in
+ the SNMPv2-TM MIB module. Other possible values are defined
+ in other MIB modules."
+ REFERENCE "The SNMPv2-TM MIB module is defined in RFC 1906."
+ SYNTAX OBJECT IDENTIFIER
+
+TAddress ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "Denotes a transport service address.
+
+ A TAddress value is always interpreted within the context of a
+ TDomain value. Thus, each definition of a TDomain value must
+ be accompanied by a definition of a textual convention for use
+ with that TDomain. Some possible textual conventions, such as
+ SnmpUDPAddress for snmpUDPDomain, are defined in the SNMPv2-TM
+ MIB module. Other possible textual conventions are defined in
+ other MIB modules."
+ REFERENCE "The SNMPv2-TM MIB module is defined in RFC 1906."
+ SYNTAX OCTET STRING (SIZE (1..255))
+
+END
diff --git a/omc/bin/mib/change b/omc/bin/mib/change
new file mode 100644
index 0000000..6e9e698
--- /dev/null
+++ b/omc/bin/mib/change
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+chown root LGC-*
+chgrp root LGC-*
+chmod 644 LGC-*
diff --git a/omc/bin/mib/index b/omc/bin/mib/index
new file mode 100644
index 0000000..c499859
--- /dev/null
+++ b/omc/bin/mib/index
@@ -0,0 +1,36 @@
+LGC-MIB.my
+LGC-SS-MSC-MIB.my
+LGC-SS-SMEG-MIB.my
+LGC-SS-OPPS-MIB.my
+LGC-SS-AAS-MIB.my
+LGC-SS-AUC-MIB.my
+LGC-SS-EIR-MIB.my
+LGC-SS-HLR-MIB.my
+LGC-SS-SMPP-MIB.my
+LGC-SS-SMSC-MIB.my
+LGC-SS-VLR-MIB.my
+LGC-SS-XAPP-MIB.my
+LGC-SS-MRFC-MIB.my
+LGC-SS-VMS-MIB.my
+LGC-SS-PALIM-MIB.my
+LGC-SS-RLS-MIB.my
+LGC-SS-MHC-MIB.my
+LGC-SS-MNP-MIB.my
+LGC-SS-MTP3-MIB.my
+LGC-SS-SCCP-MIB.my
+LGC-SS-PPS-MIB.my
+LGC-SS-MME-MIB.my
+LGC-SS-SPGW-MIB.my
+LGC-SS-IMS-MIB.my
+LGC-SS-RCS-MIB.my
+LGC-SS-UDM-MIB.my
+LGC-SS-AUSF-MIB.my
+LGC-SS-GRS-MIB.my
+LGC-SS-TMG-MIB.my
+LGC-SS-AMRMG-MIB.my
+LGC-SS-GbC-MIB.my
+LGC-SS-MCA-MIB.my
+LGC-SS-RCM-MIB.my
+LGC-SS-RTPPROXY-MIB.my
+SNMPv2-SMI
+SNMPv2-TC
diff --git a/omc/bin/myipcrm b/omc/bin/myipcrm
new file mode 100644
index 0000000..80534ab
--- /dev/null
+++ b/omc/bin/myipcrm
@@ -0,0 +1,33 @@
+#!/bin/sh
+
+ipcrm='To delete ipcrm shm'
+
+#program name
+if [ `whoami` != "root" ] ; then
+ echo "Permission denied!"
+ exit
+fi
+
+ipcsm=`ipcs -m`
+echo "$ipcsm"
+
+ipcsm=`ipcs -m|grep '0x'|awk '{print $2}'`
+for FILE in $ipcsm; do
+ ipcrm shm $FILE
+done
+
+ipcsm=`ipcs -s`
+echo "$ipcsm"
+
+ipcsm=`ipcs -s|grep '0x'|awk '{print $2}'`
+for FILE in $ipcsm; do
+ ipcrm sem $FILE
+done
+
+ipcsm=`ipcs -q`
+echo "$ipcsm"
+
+ipcsm=`ipcs -q|grep '0x'|awk '{print $2}'`
+for FILE in $ipcsm; do
+ ipcrm msg $FILE
+done
diff --git a/omc/bin/mysql_OMCmain_Auditlog_filter b/omc/bin/mysql_OMCmain_Auditlog_filter
new file mode 100644
index 0000000..7ad348f
--- /dev/null
+++ b/omc/bin/mysql_OMCmain_Auditlog_filter
@@ -0,0 +1,4 @@
+#!/bin/sh
+service auditd restart
+auditctl -A exit,never -S all -F uid=100
+auditctl -A entry,never -S all -F ppid=$(pgrep -x omcMain)
diff --git a/omc/bin/nrtrde b/omc/bin/nrtrde
new file mode 100644
index 0000000..fd1085e
Binary files /dev/null and b/omc/bin/nrtrde differ
diff --git a/omc/bin/omcCleaner b/omc/bin/omcCleaner
new file mode 100644
index 0000000..168c4ba
Binary files /dev/null and b/omc/bin/omcCleaner differ
diff --git a/omc/bin/omcMain b/omc/bin/omcMain
new file mode 100644
index 0000000..18cfc73
Binary files /dev/null and b/omc/bin/omcMain differ
diff --git a/omc/bin/omcMain.nolicense b/omc/bin/omcMain.nolicense
new file mode 100644
index 0000000..afa9239
Binary files /dev/null and b/omc/bin/omcMain.nolicense differ
diff --git a/omc/bin/omcMainWatcher b/omc/bin/omcMainWatcher
new file mode 100644
index 0000000..9737c0b
--- /dev/null
+++ b/omc/bin/omcMainWatcher
@@ -0,0 +1,170 @@
+#!/bin/bash
+
+# This script is use to monitor the omcMain.
+# Restart omcd when the omcMain is stopped
+# When the omcMain process is suspended
+# single: restart omcd
+# dual: stop omcd
+# The script run every minute and will write the event into /usr/local/omc/log/omcMainWatcherxxx.log
+# Time: 2009-06-11
+# Author: Zheng Jianhui
+
+if [ `whoami` != "root" ] ; then
+ echo "Permission denied! Need root user"
+ exit
+fi
+
+/usr/local/omc/bin/dual/check_proc_status.sh
+
+mysql_user=`/usr/local/mssBak/script/encryption 1 "6266706d736f7a7c7b6b7f7b7f"`
+mysql_pw=`/usr/local/mssBak/script/encryption 1 "2b3a392757557b697b7e7e757b777c"`
+
+
+
+#----- Get the omcSysNo -------------------------
+confDir=/usr/local/omc/bin/conf
+if [ `cat $confDir/omcd.conf |grep -c 'omcSysNo=0'` -eq 1 ] ; then
+ omcSysNo=0
+else
+ omcSysNo=1
+fi
+
+#----- Get the dual mode ------------------------
+#----- 0 single,1 dual ------------------------
+if [ `cat $confDir/omcd.conf |grep -c 'omcRunMode=0'` -eq 1 ] ; then
+ omcRunMode=0
+else
+ omcRunMode=1
+fi
+
+
+############################################################
+################# Write event log #########################
+################# Parameter: content #######################
+function writeLog()
+{
+ watcherLogFile=/usr/local/omc/log/watcher`date +%Y%m%d`.log
+ timestr=`date +%H:%M:%S`
+ #echo $timestr
+ `echo "$timestr $1" >> $watcherLogFile`
+}
+#writeLog hello
+################# End writeLog function ####################
+################# Insert alarm log #########################
+############## Parameter: stop, suspend ####################
+function insertAlarmLog()
+{
+ case "$1" in
+ 'stop')
+
+#----- Get the previous record number -----------
+prev_record_arr=`/usr/bin/mysql -u$mysql_user -p$mysql_pw <<_EOF_
+SELECT count(*) as record_count FROM OMC_PUB.sysAlarmLog WHERE sysTypeNo=0 and sysNo=$omcSysNo and compCode=130 and alarmCode=1 and clearTime = '0000-00-00 00:00:00';
+_EOF_`
+prev_record=`echo $prev_record_arr | awk '{print $2}'`
+
+#----- Insert the alarm -------------------------
+if [ "$prev_record" == "0" ] ; then
+/usr/bin/mysql -u$mysql_user -p$mysql_pw <<_EOF_
+INSERT INTO OMC_PUB.sysAlarmLog (sysTypeNo,sysNo,subSysNo,compCode,alarmCode,alarmTime) VALUES (0,$omcSysNo,0,130,1,CURRENT_TIMESTAMP);
+_EOF_
+fi
+
+ ;;
+ 'suspend')
+
+#----- Get the previous record number -----------
+prev_record_arr=`/usr/bin/mysql -u$mysql_user -p$mysql_pw <<_EOF_
+SELECT count(*) as record_count FROM OMC_PUB.sysAlarmLog WHERE sysTypeNo=0 and sysNo=$omcSysNo and compCode=130 and alarmCode=2 and clearTime = '0000-00-00 00:00:00';
+_EOF_`
+prev_record=`echo $prev_record_arr | awk '{print $2}'`
+
+#----- Insert the alarm -------------------------
+if [ "$prev_record" == "0" ] ; then
+/usr/bin/mysql -u$mysql_user -p$mysql_pw <<_EOF_
+INSERT INTO OMC_PUB.sysAlarmLog (sysTypeNo,sysNo,subSysNo,compCode,alarmCode,alarmTime) VALUES (0,$omcSysNo,0,130,2,CURRENT_TIMESTAMP);
+_EOF_
+fi
+
+ ;;
+ esac
+}
+################# End insertAlarmLog function #################
+
+
+#----- Check the process id of the omcMain -------
+. /etc/rc.d/init.d/functions
+
+procName=omcMain
+pid=`status $procName`
+if [ "$pid" == "omcMain is stopped" ]; then
+
+#----- omcMain is stopped -----------------
+ insertAlarmLog stop
+ writeLog "omcMain is stop, restart it"
+ tmpLogFile=/usr/local/omc/log/watcher`date +%Y%m%d`.log
+ `tail -5 /usr/local/omc/install.log >> $tmpLogFile`
+ wxc2dm=`/usr/local/omc/bin/wxc2_omcd restart`
+
+else
+
+#----- omcMain is running -----------------
+update_time_arr=`/usr/bin/mysql -u$mysql_user -p$mysql_pw <<_EOF_
+SELECT UNIX_TIMESTAMP(updateTime) as updateTime FROM OMC_PUB.sysInfo WHERE sysTypeNo=0 and sysNo=$omcSysNo;
+_EOF_`
+update_time=`echo $update_time_arr | awk '{print $2}'`
+if [ -z "$update_time" ]; then
+ writeLog "omcMain is just running, check heartbeat later"
+ exit
+fi
+
+now_time=`date +%s`
+time_delay=$[$now_time - $update_time]
+
+#echo update_time=$update_time
+#echo now_time=$now_time
+#echo time_delay=$time_delay
+
+#----- check heartbeat updatetime ---------
+if [ "$time_delay" -ge "180" ]; then
+
+ insertAlarmLog suspend
+ writeLog "omcMain is suspended"
+ if [ "$omcRunMode" -eq "0" ]; then
+ writeLog "omcMain is running in single mode, restart it"
+ wxc2dm=`/usr/local/omc/bin/wxc2_omcd restart`
+ else
+ writeLog "omcMain is running in dual mode, restart it"
+ wxc2dm=`/usr/local/omc/bin/wxc2_omcd restart`
+ fi
+fi
+
+
+
+fi
+
+ProcList="iptrans omcMain paraComm subsComm logCollector omcCleaner smcli cdrCollector subsDataBackup ftpSend alarmAgent nrtrde sftpSend alive bsscomm"
+
+logFile=/usr/local/omc/log/watcher`date +%Y%m%d`.log
+
+printf "`date '+%D %H:%M:%S'` " >> $logFile
+for ProcName in $ProcList; do
+ if [ -z "`pidof $ProcName`" ]; then
+ state="N"
+ else
+ state="Y"
+ fi
+ printf "$state " >> $logFile
+done
+printf "\n" >> $logFile
+
+
+chmod 777 /usr/local/apache/htdocs/ftpFile
+chmod 640 /usr/local/omc/log/*
+chmod -R 777 /usr/local/apache/htdocs/db_backup/
+
+
+#echo Finish
+
+
+
diff --git a/omc/bin/paraComm b/omc/bin/paraComm
new file mode 100644
index 0000000..b2f9ceb
Binary files /dev/null and b/omc/bin/paraComm differ
diff --git a/omc/bin/parseResult b/omc/bin/parseResult
new file mode 100644
index 0000000..2650cf2
--- /dev/null
+++ b/omc/bin/parseResult
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+#This script parse the result.txt file
+#to judge whether the operation of sending file is successful
+
+#The local do not have the Permission to access the remote directory
+if [ `grep -c "handle" /tmp/result$1.txt` -gt 0 ] ; then
+ `echo 4 >/tmp/temp$1.txt`
+ #echo "The local do not have the Permission to access the remote directory"
+ exit
+fi
+
+#The name or the password is not fit
+if [ `grep -c "Permission denied" /tmp/result$1.txt` -gt 0 ] ; then
+ `echo 2 >/tmp/temp$1.txt`
+ #echo "The name or the password is not fit"
+ exit
+fi
+
+#Successful
+if [ `grep -c "100%" /tmp/result$1.txt` -gt 0 ] ; then
+ `echo 0 >/tmp/temp$1.txt`
+ #echo "Send the file successfully"
+ exit
+fi
+
+#The remote server is unavailable
+ `echo 1 >/tmp/temp$1.txt`
+ #echo "The remote server is unavailable"
+ exit
+
diff --git a/omc/bin/raidAgent b/omc/bin/raidAgent
new file mode 100644
index 0000000..652aab7
Binary files /dev/null and b/omc/bin/raidAgent differ
diff --git a/omc/bin/sendfile b/omc/bin/sendfile
new file mode 100644
index 0000000..b608829
--- /dev/null
+++ b/omc/bin/sendfile
@@ -0,0 +1,34 @@
+#!/usr/bin/expect
+
+#This script interative with the remote server, and send the file to it
+
+#This script have 6 parameters
+#remoteip: the ip of the remote server
+#username: the name for logining in
+#userpass: the password for logining in
+#resdir: the directory to store the files
+#sendfile: the file to send to the remote server
+#desdir: the directory to send the files
+
+set remoteip [lindex $argv 0]
+set username [lindex $argv 1]
+set userpass [lindex $argv 2]
+set resdir [lindex $argv 3]
+set sendfile [lindex $argv 4]
+set desdir [lindex $argv 5]
+
+set timeout 120
+
+spawn sftp $username@$remoteip
+
+
+
+expect "*(yes/no)?" {send "yes\n"; expect "*assword: "} "*assword: "
+send "$userpass\n"
+expect "*sftp>*"
+send "cd $desdir\n"
+send "lcd $resdir\n"
+send "put $sendfile\n"
+
+expect "*100%*"
+exit
diff --git a/omc/bin/setRunMode b/omc/bin/setRunMode
new file mode 100644
index 0000000..611424f
--- /dev/null
+++ b/omc/bin/setRunMode
@@ -0,0 +1,260 @@
+#!/bin/bash
+#Script to configurate dual omc
+#create by Liang Hanxi 2002/8/24
+#changed by hewd 2002/09/16
+
+#my.cnf and server.conf should be in current directory
+#or this script will not work
+
+#Three file will be changed:./server.conf /etc/hosts /etc/my.cnf
+#backup them at first if needed
+#I will make a backup of /etc/my.cnf for you,path of which is /etc/my.cnf.bak
+
+if [ `uname -r |grep -c '2.4.7-10'` -eq 1 ] ; then
+ mysqllib_dir="/usr/local/mysql/lib"
+else
+ mysqllib_dir=/usr/lib/mysql
+fi
+omcBin="/usr/local/omc/bin"
+
+# by simon,for ubuntu 22.04
+#mysql_user=`/usr/local/mssBak/script/encryption 1 "6266706d736f7a7c7b6b7f7b7f"`
+#mysql_pw=`/usr/local/mssBak/script/encryption 1 "2b3a392757557b697b7e7e757b777c"`
+
+
+
+arg_1=$1
+
+##################################################################
+###### Function
+##################################################################
+chkHostName()
+{
+ thisHostName=`hostname -s`
+
+ if [ `echo "$thisHostName"|grep -c '\-[01]$'` -eq 1 ] ;then
+ if [ `echo "$thisHostName"|grep -c '\-0$'` -eq 1 ] ;then
+ echo "This is Master server!!"
+ else
+ echo "This is Slave server!!"
+ fi
+ else
+ echo "The server's hostname must be configured like following[x is the any displayable ASCII character]"
+ echo "xxx-0 or xxx-1"
+ sleep 3
+ exit 1
+ fi
+
+
+
+ #if [ "$thisHostName" != "omc-0" ] && [ "$thisHostName" != "omc-1" ] ; then
+ # echo "This server's hostname is $thisHostName !!"
+ # echo "It must be \"omc-0\" or \"omc-1\" !! Please set it."
+ # sleep 3
+ # exit 1
+ #else
+ # if [ "$thisHostName" == "omc-0" ] ; then
+ # echo "This is Master server!!"
+ # else
+ # echo "This is Slave server!!"
+ # fi
+ #fi
+}
+
+checkip()
+{
+ result=`echo "$1" |grep "[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}"`
+ if [ -z "$result" ];then
+ echo "invalid"
+ else
+ result=`ping $1 -c 1 |grep "icmp_seq="`
+ if [ -z "$result" ];then
+ echo "fail"
+ else
+ echo "ok"
+ fi
+ fi
+}
+
+getipbyname()
+{
+ hostlist="/etc/hosts"
+
+ [ -f $hostlist ] || exit 1
+
+ cmdline='/'$1'/{print $1}'
+ awkcmd="awk '$cmdline' $hostlist"
+ ip=`echo $awkcmd|bash`
+
+ if [ -z "$ip" ];then
+ echo "Can't resolve ip address of host. You can input it now:"
+
+ read ip
+ echo "Check ip address now.pleae wait for a while......"
+ rtn=`checkip $ip`
+
+ if [ "$rtn" = "invalid" ];then
+ echo "Invalid IP!"
+ exit 1
+ elif [ "$rtn" = "fail" ];then
+ echo 'Dest ip Unreachable! I(gnore)/E(xit)'
+ read act
+ case $act in
+ "I") echo "continue......"
+ ;;
+ *) exit 1
+ ;;
+ esac
+ fi
+ echo $ip' '$1'.iwv '$1>>$hostlist
+ fi
+}
+
+replaceValue()
+{
+ tmpFileName=${1}_tmp
+ bakFileName==${1}_bak
+ if [ `grep -c $2 $1` -gt 0 ] ; then
+ sed -e 's/$2/$3/' $1 > $tmpFileName
+ mv $1 $bakFileName
+ rm $1
+ mv $tmpFileName $1
+ fi
+}
+
+##################################################################
+cd $omcBin
+#check hostname,must =xxx-0 or xxx-1
+chkHostName ""
+
+./changehostname
+
+if [ "$arg_1" == "-auto" ] ; then
+ runMode=2
+else
+ echo "+-------Running Mode------+"
+ echo "| 1.Single EMS |"
+ echo "| 2.Dual EMS |"
+ echo "+-------------------------+"
+ echo -n "Please select EMS running mode(1/2):"
+ read runMode
+ echo ""
+fi
+
+case "$runMode" in
+ '1')
+ echo "You have selected 'Single EMS' mode"
+ echo ""
+ #my.conf
+ hostName='single'
+ #mv -f /etc/my.cnf /etc/my.cnf_bak
+ cp -f ../config/mariadb-50-server.cnf /etc/mysql/mariadb.conf.d/50-server.cnf
+ chmod 644 /etc/mysql/mariadb.conf.d/50-server.cnf
+ echo "set configuration file: /etc/mysql/mariadb.conf.d/50-server.cnf ok!"
+
+ #hosts
+ #mv /etc/hosts /etc/hosts_bak
+ #cp ../config/hosts /etc/hosts
+ #chmod 644 /etc/hosts
+ #echo "set config file: /etc/hosts ok!"
+
+ #server.conf
+ mv ./conf/server.conf ./conf/server.conf_bak
+ cp ../config/server.conf ./conf/server.conf
+ chmod 644 ./conf/server.conf
+ echo "set configuration file: ./conf/server.conf ok!"
+
+ #omcd.conf
+ mv ./conf/omcd.conf ./conf/omcd.conf_bak
+ cp ../config/omcd.conf_$hostName ./conf/omcd.conf
+ chmod 644 ./conf/omcd.conf
+ echo "set configuration file: ./conf/omcd.conf ok!"
+ ;;
+ '2')
+ echo "You have selected 'Dual EMS' mode"
+ echo ""
+
+ #reset database sync
+ #/usr/local/mysql/bin/mysql -u$mysql_user -p$mysql_pw <<_EOF_
+ # reset master;
+ # reset slave;
+ #_EOF_
+
+ #get hostname
+ hostName='single'
+
+ #my.conf
+ mv -f /etc/my.cnf /etc/my.cnf_bak
+ cp -f ../config/mariadb-50-server.cnf /etc/mysql/mariadb.conf.d/50-server.cnf
+ chmod 644 /etc/mysql/mariadb.conf.d/50-server.cnf
+ echo "set configuration file: /etc/mysql/mariadb.conf.d/50-server.cnf ok!"
+
+ #hosts
+ #mv /etc/hosts /etc/hosts_bak
+ #cp ../config/hosts /etc/hosts
+ #chmod 644 /etc/hosts
+ #echo "set config file: /etc/hosts ok!"
+
+ #server.conf
+ mv ./conf/server.conf ./conf/server.conf_bak
+ cp ../config/server.conf ./conf/server.conf
+ chmod 644 ./conf/server.conf
+ echo "set configuration file: ./conf/server.conf ok!"
+
+ #omcd.conf
+ hostName=`hostname -s|sed 's/^.*-/omc-/'`
+ mv ./conf/omcd.conf ./conf/omcd.conf_bak
+ cp ../config/omcd.conf_$hostName ./conf/omcd.conf
+ chmod 644 ./conf/omcd.conf
+ echo "set configuration file: ./conf/omcd.conf ok!"
+ ;;
+ *)
+ echo "Invalid input,Exited."
+ exit
+ ;;
+esac
+
+#reset database sync
+if [ `uname -r |grep -c '2.4.7-10'` -eq 1 ] ; then
+ mysqlBinDir=/usr/local/mysql/bin
+else
+ mysqlBinDir=/usr/bin
+fi
+# by simon,for ubuntu 22.04
+#$mysqlBinDir/mysql -u$mysql_user -p$mysql_pw <<_EOF_
+# slave stop;
+# reset master;
+# reset slave;
+#_EOF_
+initDir=/etc/init.d
+service mysql stop
+if [ -n "`pidof mysqld`" ] ;then
+ kill -9 `pidof mysqld`
+fi
+service mysql start
+
+if [ "$2" == "install" ] ; then
+ echo " "
+else
+ omcd restart
+fi
+
+exit 1
+
+##############################
+#echo "configurate /etc/my.cnf......"
+#cp ../config/my.cnf_
+
+#echo "#!/bin/sed -f" > tmpconf.sed
+#echo "/master-host/ c\\" >> tmpconf.sed
+#echo "master-host = "$mysql_master >>tmpconf.sed
+
+#echo "/server-id/ c\\" >> tmpconf.sed
+#echo "server-id = "$mysql_id >>tmpconf.sed
+
+#mv -f /etc/my.cnf /etc/my.cnf.bak
+
+#chmod 777 tmpconf.sed
+#tmpconf.sed my.cnf > /etc/my.cnf
+#rm -f tmpconf.sed
+##############################
diff --git a/omc/bin/sftpSend b/omc/bin/sftpSend
new file mode 100644
index 0000000..e10631d
Binary files /dev/null and b/omc/bin/sftpSend differ
diff --git a/omc/bin/smcli b/omc/bin/smcli
new file mode 100644
index 0000000..561a2b6
Binary files /dev/null and b/omc/bin/smcli differ
diff --git a/omc/bin/subsComm b/omc/bin/subsComm
new file mode 100644
index 0000000..1f27539
Binary files /dev/null and b/omc/bin/subsComm differ
diff --git a/omc/bin/subsDataBackup b/omc/bin/subsDataBackup
new file mode 100644
index 0000000..6d443a7
Binary files /dev/null and b/omc/bin/subsDataBackup differ
diff --git a/omc/bin/wsms b/omc/bin/wsms
new file mode 100644
index 0000000..7262ba2
Binary files /dev/null and b/omc/bin/wsms differ
diff --git a/omc/bin/wxc2_omcd b/omc/bin/wxc2_omcd
new file mode 100644
index 0000000..f30869a
--- /dev/null
+++ b/omc/bin/wxc2_omcd
@@ -0,0 +1,189 @@
+#!/bin/bash
+
+### BEGIN INIT INFO
+# Provides: omcd
+# Required-Start:
+# Required-Stop:
+# Default-Start: 2 3 4 5
+# Default-Stop: 0 1 6
+# Short-Description: Start omcd daemon at boot time
+# Description: Start omcd daemon at boot time
+### END INIT INFO
+
+# chkconfig: 2345 98 18
+# description: as following
+# CVS $Id: omcd,v 1.2 2002/09/10 19:53:49 hewd Exp $
+# For WXC2 OMC
+# Comments to support chkconfig on RedHat Linux
+
+
+userName=`whoami`
+
+#mysql_user=`/usr/local/mssBak/script/encryption 1 "6266706d736f7a7c7b6b7f7b7f"`
+#mysql_pw=`/usr/local/mssBak/script/encryption 1 "2b3a392757557b697b7e7e757b777c"`
+
+
+clear_crontab()
+{
+ echo "Clear EMS crontab"
+ crontab -l > /tmp/cur_crontab
+ sed '/backup_mss/d' /tmp/cur_crontab | sed '/audit_ems_log/d' | sed '/omcMainWatcher/d' | sed '/createMscHourlyCsta/d' | sed '/audit_mysql_log/d' | sed '/^\s*$/d' > /tmp/new_crontab
+ crontab -u root /tmp/new_crontab
+ rm -rf /tmp/cur_crontab /tmp/new_crontab
+ rm -rf /tmp/*.lock
+}
+
+resume_crontab()
+{
+ echo "Resume EMS crontab"
+ crontab -l > /tmp/new_crontab
+
+ if test `grep -c cdr_io_proc /tmp/new_crontab` -eq 1 ; then
+ sed -i '/cdr_io_proc/d' /tmp/new_crontab
+ fi
+ if test `grep -c cdr_data_proc /tmp/new_crontab` -eq 1 ; then
+ sed -i '/cdr_data_proc/d' /tmp/new_crontab
+ fi
+
+ cat /usr/local/mssBak/script/cronset >> /tmp/new_crontab
+ sed '/^\s*$/d' /tmp/new_crontab > /tmp/new_crontab1
+ crontab -u root /tmp/new_crontab1
+ rm -rf /tmp/new_crontab /tmp/new_crontab1
+}
+
+if [ `uname -r |grep -c '2.4.7-10'` -eq 1 ] ; then
+ LD_LIBRARY_PATH=/usr/local/mysql/lib ; export LD_LIBRARY_PATH
+else
+ LD_LIBRARY_PATH=/usr/lib/mysql ; export LD_LIBRARY_PATH
+fi
+
+startProcList="iptrans omcMain paraComm subsComm logCollector omcCleaner smcli cdrCollector subsDataBackup ftpSend alarmAgent nrtrde sftpSend cstaCollector"
+#alive bsscomm
+stopProcList="iptrans omcMain paraComm subsComm logCollector omcCleaner smcli cdrCollector subsDataBackup ftpSend alarmAgent nrtrde sftpSend cstaCollector"
+statusProcList=$stopProcList
+
+slaveStartProcList="iptrans omcMain"
+#include some functions like status,killproc
+. /etc/init.d/functions
+
+omcBinDir=/usr/local/omc/bin
+cd $omcBinDir
+
+#find omcRunMode
+omcRunMode=`grep omcRunMode ./conf/omcd.conf|cut -d"=" -f2`
+
+if [ "$omcRunMode" = "0" ] ; then
+ echo "+--------------------------------+"
+ echo "+ Running In Single EMS Mode +"
+ echo "+--------------------------------+"
+else
+ echo "+--------------------------------+"
+ echo "+ Running In Dual EMS Mode +"
+ echo "+--------------------------------+"
+fi
+
+mode=$1
+case "$mode" in
+ start)
+ ln -s /tmp/mysql.sock /var/lib/mysql/mysql.sock 2>/dev/null
+ if [ "$userName" != "root" ] ; then
+ echo "Just root user can run this sever!!"
+ exit 1
+ fi
+ if [ "$omcRunMode" = "0" ] ; then
+ for procName in $startProcList;do
+ if(test -x $procName) then
+ killall $procName 2>/dev/null
+ ./$procName -d 2>/dev/null
+ echo "Starting $procName process ..."
+ else
+ echo "Can't startup $procName process"
+ fi
+ sleep 1
+ done
+ else
+ for procName in $slaveStartProcList;do
+ if(test -x $procName) then
+ killall $procName 2>/dev/null
+ ./$procName -d 2>/dev/null
+ echo "Starting $procName process ..."
+ else
+ echo "Can't startup $procName process"
+ fi
+ sleep 1
+ done
+ fi
+ resume_crontab
+
+
+
+ #while [ -z `pidof omcMain` ];
+ #do
+ # sleep 1
+ #done
+ #/usr/local/omc/bin/mysql_OMCmain_Auditlog_filter
+
+ if [ -z `pidof omcMain` ] ; then
+ sleep 2
+ if [ -z `pidof omcMain` ] ; then
+ echo "omcMain still not starts"
+ else
+ /usr/local/omc/bin/mysql_OMCmain_Auditlog_filter
+ fi
+ else
+ /usr/local/omc/bin/mysql_OMCmain_Auditlog_filter
+ fi
+
+ #raid_package=`rpm -q sas_snmp`
+ #if [ `echo $raid_package |grep -c 'not'` -eq 1 ] ; then
+ # echo ""
+ #else
+ # echo "restart RAID related process"
+ # service snmpd restart
+ # service lsi_mrdsnmpd restart
+ #fi
+
+
+ ;;
+ status)
+ for procName in $statusProcList;do
+ status $procName
+ done
+ ;;
+ stop)
+ if [ "$userName" != "root" ] ; then
+ echo "Just root user can run this sever!!"
+ exit 1
+ fi
+ clear_crontab
+ for procName in $stopProcList;do
+ if [ `uname -r |grep -c '2.4.7-10'` -eq 1 ] ; then
+ killproc $procName -SIGTERM
+ else
+ /usr/bin/killall $procName
+ fi
+ echo "$procName stopped";
+ done
+ clear_crontab
+ clear_crontab
+#`/usr/bin/mysql -u${mysql_user} -p${mysql_pw} <<_EOF_
+#stop slave;
+#_EOF_`
+ ;;
+ restart)
+ $0 stop
+ sleep 1
+ $0 start
+ ;;
+ version)
+ thisVersion=`tail -3 ../install.log |grep -v Date | awk '{print $3}'`
+ echo "AgrandTech EMS $thisVersion"
+ ;;
+ *)
+ echo "AgrandTech EMS"
+ echo "Usage: $0 start|status|stop|restart|version"
+ exit 3
+ ;;
+esac
+
+exit 0
\ No newline at end of file
diff --git a/omc/bin/wxc2_omcdm b/omc/bin/wxc2_omcdm
new file mode 100644
index 0000000..5d569e4
--- /dev/null
+++ b/omc/bin/wxc2_omcdm
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+#program name
+if [ `whoami` != "root" ] ; then
+ echo "Permission denied!"
+ exit
+fi
+
+. /etc/rc.d/init.d/functions
+
+procName=omcMain
+
+pid=`status $procName`
+#pid=`pidof omcMain`
+echo $pid
+
+if [ "$pid" == "omcMain is stopped" ]; then
+ echo "restart..."
+ wxc2dm=`/usr/local/omc/bin/wxc2_omcd restart`
+else
+ echo "existing..."
+fi
+
+