add: omc bin & conf & mib
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -12,7 +12,6 @@
|
||||
|
||||
# Run temp file and dir
|
||||
reference
|
||||
omc/bin
|
||||
omc/tools
|
||||
|
||||
# Built Visual Studio Code Extensions
|
||||
|
||||
BIN
omc/bin/alarmAgent
Normal file
BIN
omc/bin/alarmAgent
Normal file
Binary file not shown.
BIN
omc/bin/alive
Normal file
BIN
omc/bin/alive
Normal file
Binary file not shown.
BIN
omc/bin/bsscomm
Normal file
BIN
omc/bin/bsscomm
Normal file
Binary file not shown.
BIN
omc/bin/cdrCollector
Normal file
BIN
omc/bin/cdrCollector
Normal file
Binary file not shown.
47
omc/bin/changehostname
Normal file
47
omc/bin/changehostname
Normal file
@@ -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
|
||||
|
||||
19
omc/bin/chgDate
Normal file
19
omc/bin/chgDate
Normal file
@@ -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
|
||||
|
||||
41
omc/bin/chkDb
Normal file
41
omc/bin/chkDb
Normal file
@@ -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
|
||||
26
omc/bin/clearDb
Normal file
26
omc/bin/clearDb
Normal file
@@ -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!!"
|
||||
|
||||
48
omc/bin/conf/NR.conf
Normal file
48
omc/bin/conf/NR.conf
Normal file
@@ -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/
|
||||
|
||||
|
||||
1
omc/bin/conf/chkDb.conf
Normal file
1
omc/bin/conf/chkDb.conf
Normal file
@@ -0,0 +1 @@
|
||||
dbStopMode=0
|
||||
BIN
omc/bin/conf/conv_prefix.conf
Normal file
BIN
omc/bin/conf/conv_prefix.conf
Normal file
Binary file not shown.
6
omc/bin/conf/debug.conf
Normal file
6
omc/bin/conf/debug.conf
Normal file
@@ -0,0 +1,6 @@
|
||||
//Debug Conf File
|
||||
|
||||
System Type = CDMA ; // GSM, CDMA , GC_SSW
|
||||
MMI Switch = OFF ; // ON , OFF
|
||||
|
||||
|
||||
20
omc/bin/conf/help_page
Normal file
20
omc/bin/conf/help_page
Normal file
@@ -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".
|
||||
|
||||
$
|
||||
5
omc/bin/conf/hosts
Normal file
5
omc/bin/conf/hosts
Normal file
@@ -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
|
||||
946
omc/bin/conf/httpd.conf
Normal file
946
omc/bin/conf/httpd.conf
Normal file
@@ -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 <URL:http://www.apache.org/docs/> 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 <URL:http://www.apache.org/docs/mod/core.html#lockfile>);
|
||||
# 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 <VirtualHost>
|
||||
# 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 <VirtualHost> 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
|
||||
# <VirtualHost> definition. These values also provide defaults for
|
||||
# any <VirtualHost> containers you may define later in the file.
|
||||
#
|
||||
# All of these directives may appear inside <VirtualHost> 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.
|
||||
#
|
||||
<Directory />
|
||||
Options FollowSymLinks
|
||||
AllowOverride None
|
||||
</Directory>
|
||||
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
<Directory "/usr/local/apache/htdocs/">
|
||||
|
||||
#
|
||||
# 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
|
||||
</Directory>
|
||||
|
||||
#
|
||||
# UserDir: The name of the directory which is appended onto a user's home
|
||||
# directory if a ~user request is received.
|
||||
#
|
||||
<IfModule mod_userdir.c>
|
||||
UserDir public_html
|
||||
</IfModule>
|
||||
|
||||
#
|
||||
# Control access to UserDir directories. The following is an example
|
||||
# for a site where these directories are restricted to read-only.
|
||||
#
|
||||
#<Directory /home/*/public_html>
|
||||
# AllowOverride FileInfo AuthConfig Limit
|
||||
# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
|
||||
# <Limit GET POST OPTIONS PROPFIND>
|
||||
# Order allow,deny
|
||||
# Allow from all
|
||||
# </Limit>
|
||||
# <LimitExcept GET POST OPTIONS PROPFIND>
|
||||
# Order deny,allow
|
||||
# Deny from all
|
||||
# </LimitExcept>
|
||||
#</Directory>
|
||||
|
||||
#
|
||||
# DirectoryIndex: Name of the file or files to use as a pre-written HTML
|
||||
# directory index. Separate multiple entries with spaces.
|
||||
#
|
||||
<IfModule mod_dir.c>
|
||||
DirectoryIndex index.php index.html index.php3
|
||||
</IfModule>
|
||||
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
<Files ~ "^\.ht">
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
</Files>
|
||||
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
<IfModule mod_mime.c>
|
||||
TypesConfig /usr/local/apache/conf/mime.types
|
||||
</IfModule>
|
||||
|
||||
#
|
||||
# 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 <IfModule> container.
|
||||
# This means that the MIMEMagicFile directive will only be processed if the
|
||||
# module is part of the server.
|
||||
#
|
||||
<IfModule mod_mime_magic.c>
|
||||
MIMEMagicFile /usr/local/apache/conf/magic
|
||||
</IfModule>
|
||||
|
||||
#
|
||||
# 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 <VirtualHost>
|
||||
# container, error messages relating to that virtual host will be
|
||||
# logged here. If you *do* define an error logfile for a <VirtualHost>
|
||||
# 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 <VirtualHost>
|
||||
# container, they will be logged here. Contrariwise, if you *do*
|
||||
# define per-<VirtualHost> 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
|
||||
#
|
||||
<IfModule mod_alias.c>
|
||||
|
||||
#
|
||||
# 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/"
|
||||
|
||||
<Directory "/usr/local/apache/icons">
|
||||
Options Indexes MultiViews
|
||||
AllowOverride None
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
</Directory>
|
||||
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
<Directory "/usr/local/apache/cgi-bin">
|
||||
AllowOverride None
|
||||
Options None
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
</Directory>
|
||||
|
||||
</IfModule>
|
||||
# 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.
|
||||
#
|
||||
<IfModule mod_autoindex.c>
|
||||
|
||||
#
|
||||
# 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
|
||||
|
||||
</IfModule>
|
||||
# End of indexing directives.
|
||||
|
||||
#
|
||||
# Document types.
|
||||
#
|
||||
<IfModule mod_mime.c>
|
||||
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
<IfModule mod_negotiation.c>
|
||||
LanguagePriority en da nl et fr de el it ja pl pt pt-br ltz ca es sv
|
||||
</IfModule>
|
||||
|
||||
#
|
||||
# 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
|
||||
|
||||
</IfModule>
|
||||
# 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
|
||||
#
|
||||
<IfModule mod_setenvif.c>
|
||||
|
||||
#
|
||||
# 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
|
||||
|
||||
</IfModule>
|
||||
|
||||
#
|
||||
# Allow server status reports, with the URL of http://servername/server-status
|
||||
# Change the ".your_domain.com" to match your domain to enable.
|
||||
#
|
||||
#<Location /server-status>
|
||||
# SetHandler server-status
|
||||
# Order deny,allow
|
||||
# Deny from all
|
||||
# Allow from .your_domain.com
|
||||
#</Location>
|
||||
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
#<Location /server-info>
|
||||
# SetHandler server-info
|
||||
# Order deny,allow
|
||||
# Deny from all
|
||||
# Allow from .your_domain.com
|
||||
#</Location>
|
||||
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
#<Location /cgi-bin/phf*>
|
||||
# Deny from all
|
||||
# ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
|
||||
#</Location>
|
||||
|
||||
#
|
||||
# Proxy Server directives. Uncomment the following lines to
|
||||
# enable the proxy server:
|
||||
#
|
||||
#<IfModule mod_proxy.c>
|
||||
#ProxyRequests On
|
||||
#
|
||||
#<Directory proxy:*>
|
||||
# Order deny,allow
|
||||
# Deny from all
|
||||
# Allow from .your_domain.com
|
||||
#</Directory>
|
||||
|
||||
#
|
||||
# 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
|
||||
|
||||
#</IfModule>
|
||||
# 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 <URL:http://www.apache.org/docs/vhosts/>
|
||||
# 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.
|
||||
#
|
||||
|
||||
#<VirtualHost 192.168.1.230 >
|
||||
# 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
|
||||
# </VirtualHost>
|
||||
|
||||
#<VirtualHost 192.168.1.230 >
|
||||
# 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
|
||||
# </VirtualHost>
|
||||
|
||||
|
||||
|
||||
#<VirtualHost _default_:*>
|
||||
#</VirtualHost>
|
||||
25
omc/bin/conf/iptrans.conf
Normal file
25
omc/bin/conf/iptrans.conf
Normal file
@@ -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
|
||||
BIN
omc/bin/conf/manager_engine.conf
Normal file
BIN
omc/bin/conf/manager_engine.conf
Normal file
Binary file not shown.
2
omc/bin/conf/mcms_conf.txt
Normal file
2
omc/bin/conf/mcms_conf.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
bind ip=192.168.4.75
|
||||
shm key shift=0
|
||||
17
omc/bin/conf/menu_page
Normal file
17
omc/bin/conf/menu_page
Normal file
@@ -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
|
||||
17
omc/bin/conf/menu_page2
Normal file
17
omc/bin/conf/menu_page2
Normal file
@@ -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
|
||||
1477
omc/bin/conf/mtp3.conf
Normal file
1477
omc/bin/conf/mtp3.conf
Normal file
File diff suppressed because it is too large
Load Diff
BIN
omc/bin/conf/nrtrde_seq.conf
Normal file
BIN
omc/bin/conf/nrtrde_seq.conf
Normal file
Binary file not shown.
50
omc/bin/conf/omc_db.conf
Normal file
50
omc/bin/conf/omc_db.conf
Normal file
@@ -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
|
||||
|
||||
19
omc/bin/conf/omcd.conf
Normal file
19
omc/bin/conf/omcd.conf
Normal file
@@ -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
|
||||
19
omc/bin/conf/omcd.conf_bak
Normal file
19
omc/bin/conf/omcd.conf_bak
Normal file
@@ -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
|
||||
19
omc/bin/conf/omcd.conf_omc-0
Normal file
19
omc/bin/conf/omcd.conf_omc-0
Normal file
@@ -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
|
||||
19
omc/bin/conf/omcd.conf_omc-1
Normal file
19
omc/bin/conf/omcd.conf_omc-1
Normal file
@@ -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
|
||||
19
omc/bin/conf/omcd.conf_single
Normal file
19
omc/bin/conf/omcd.conf_single
Normal file
@@ -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
|
||||
1
omc/bin/conf/omcd_serialnum.conf
Normal file
1
omc/bin/conf/omcd_serialnum.conf
Normal file
@@ -0,0 +1 @@
|
||||
omcSN=13750015
|
||||
14
omc/bin/conf/omctrap_iplist.conf
Normal file
14
omc/bin/conf/omctrap_iplist.conf
Normal file
@@ -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
|
||||
|
||||
|
||||
|
||||
48
omc/bin/conf/profile
Normal file
48
omc/bin/conf/profile
Normal file
@@ -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"
|
||||
24
omc/bin/conf/raid.conf
Normal file
24
omc/bin/conf/raid.conf
Normal file
@@ -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
|
||||
|
||||
15
omc/bin/conf/rsyncd.conf
Normal file
15
omc/bin/conf/rsyncd.conf
Normal file
@@ -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
|
||||
1058
omc/bin/conf/sccp.conf
Normal file
1058
omc/bin/conf/sccp.conf
Normal file
File diff suppressed because it is too large
Load Diff
31
omc/bin/conf/server.conf
Normal file
31
omc/bin/conf/server.conf
Normal file
@@ -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
|
||||
|
||||
BIN
omc/bin/conf/smeg.conf
Normal file
BIN
omc/bin/conf/smeg.conf
Normal file
Binary file not shown.
35
omc/bin/conf/smpp.conf
Normal file
35
omc/bin/conf/smpp.conf
Normal file
@@ -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
|
||||
36
omc/bin/conf/snmp.conf
Normal file
36
omc/bin/conf/snmp.conf
Normal file
@@ -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
|
||||
|
||||
0
omc/bin/conf/sync.conf
Normal file
0
omc/bin/conf/sync.conf
Normal file
11
omc/bin/conf/welcomeSMS.conf
Normal file
11
omc/bin/conf/welcomeSMS.conf
Normal file
@@ -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
|
||||
|
||||
BIN
omc/bin/cstaCollector
Normal file
BIN
omc/bin/cstaCollector
Normal file
Binary file not shown.
54
omc/bin/dual/cdr_data_proc.sh
Normal file
54
omc/bin/dual/cdr_data_proc.sh
Normal file
@@ -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
|
||||
98
omc/bin/dual/cdr_io_proc.sh
Normal file
98
omc/bin/dual/cdr_io_proc.sh
Normal file
@@ -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
|
||||
BIN
omc/bin/dual/cdr_io_proc/file.index
Normal file
BIN
omc/bin/dual/cdr_io_proc/file.index
Normal file
Binary file not shown.
119
omc/bin/dual/check_proc_status.sh
Normal file
119
omc/bin/dual/check_proc_status.sh
Normal file
@@ -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
|
||||
1
omc/bin/dual/dualstate
Normal file
1
omc/bin/dual/dualstate
Normal file
@@ -0,0 +1 @@
|
||||
State=Single
|
||||
1
omc/bin/dual/procstatus
Normal file
1
omc/bin/dual/procstatus
Normal file
@@ -0,0 +1 @@
|
||||
0011111111111111
|
||||
38
omc/bin/dual/sendfile
Normal file
38
omc/bin/dual/sendfile
Normal file
@@ -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
|
||||
|
||||
7
omc/bin/dual/sync_source.conf
Normal file
7
omc/bin/dual/sync_source.conf
Normal file
@@ -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
|
||||
|
||||
BIN
omc/bin/ftpSend
Normal file
BIN
omc/bin/ftpSend
Normal file
Binary file not shown.
32
omc/bin/initKeys
Normal file
32
omc/bin/initKeys
Normal file
@@ -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
|
||||
|
||||
BIN
omc/bin/iptrans
Normal file
BIN
omc/bin/iptrans
Normal file
Binary file not shown.
BIN
omc/bin/logCollector
Normal file
BIN
omc/bin/logCollector
Normal file
Binary file not shown.
656
omc/bin/mib/LGC-MIB.my
Normal file
656
omc/bin/mib/LGC-MIB.my
Normal file
@@ -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
|
||||
--
|
||||
260
omc/bin/mib/LGC-SS-AAS-MIB.my
Normal file
260
omc/bin/mib/LGC-SS-AAS-MIB.my
Normal file
@@ -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.<br>- 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.<br>- 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
|
||||
--
|
||||
263
omc/bin/mib/LGC-SS-AMRMG-MIB.my
Normal file
263
omc/bin/mib/LGC-SS-AMRMG-MIB.my
Normal file
@@ -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.<br>- 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.<br>- 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
|
||||
--
|
||||
567
omc/bin/mib/LGC-SS-AUC-MIB.my
Normal file
567
omc/bin/mib/LGC-SS-AUC-MIB.my
Normal file
@@ -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
|
||||
--
|
||||
184
omc/bin/mib/LGC-SS-AUC-MIB.my_bak
Normal file
184
omc/bin/mib/LGC-SS-AUC-MIB.my_bak
Normal file
@@ -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
|
||||
--
|
||||
241
omc/bin/mib/LGC-SS-AUSF-MIB.my
Normal file
241
omc/bin/mib/LGC-SS-AUSF-MIB.my
Normal file
@@ -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
|
||||
--
|
||||
253
omc/bin/mib/LGC-SS-EIR-MIB.my
Normal file
253
omc/bin/mib/LGC-SS-EIR-MIB.my
Normal file
@@ -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: <br>- TAC = 6 digits (Type Approval Code)<br>- FAC = 2 digits (Final Assembly Code)<br>- SNR = 6 digits (Serial Number)<br>- 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
|
||||
--
|
||||
2225
omc/bin/mib/LGC-SS-GRS-MIB.my
Normal file
2225
omc/bin/mib/LGC-SS-GRS-MIB.my
Normal file
File diff suppressed because it is too large
Load Diff
287
omc/bin/mib/LGC-SS-GbC-MIB.my
Normal file
287
omc/bin/mib/LGC-SS-GbC-MIB.my
Normal file
@@ -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.<br>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.<br>- 0 = Disable<br>- 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. <br>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.<br>- 0 = Disable<br>- 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
|
||||
--
|
||||
7454
omc/bin/mib/LGC-SS-HLR-MIB.my
Normal file
7454
omc/bin/mib/LGC-SS-HLR-MIB.my
Normal file
File diff suppressed because it is too large
Load Diff
428
omc/bin/mib/LGC-SS-IMS-MIB.my
Normal file
428
omc/bin/mib/LGC-SS-IMS-MIB.my
Normal file
@@ -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
|
||||
--
|
||||
305
omc/bin/mib/LGC-SS-MCA-MIB.my
Normal file
305
omc/bin/mib/LGC-SS-MCA-MIB.my
Normal file
@@ -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
|
||||
--
|
||||
564
omc/bin/mib/LGC-SS-MHC-MIB.my
Normal file
564
omc/bin/mib/LGC-SS-MHC-MIB.my
Normal file
@@ -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.<br>- 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.<br>- 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.<br>- 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.<br>- 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]<br>Enable or disable checksum for each HLR subscriber data fields.<br>"
|
||||
::= { 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.<br>- 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.<br>- Unblock = Enable blocked MHC node.<br>- 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
|
||||
--
|
||||
609
omc/bin/mib/LGC-SS-MME-MIB.my
Normal file
609
omc/bin/mib/LGC-SS-MME-MIB.my
Normal file
@@ -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
|
||||
--
|
||||
689
omc/bin/mib/LGC-SS-MME-MIB.my_bak
Normal file
689
omc/bin/mib/LGC-SS-MME-MIB.my_bak
Normal file
@@ -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
|
||||
--
|
||||
378
omc/bin/mib/LGC-SS-MNP-MIB.my
Normal file
378
omc/bin/mib/LGC-SS-MNP-MIB.my
Normal file
@@ -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:<UL><LI>Direct = Route the calls directly from the PLMN to the ported subscriber's network.</LI><LI>Indirect = Route the calls from the PLMN to the ported subscriber's subscription network via the number range holder.</LI></UL>"
|
||||
::= { 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. <br>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:<UL><LI>MNP-SRF = Mobile Number Portability Signaling Relay Function</LI><LI>ANSI IN = American National Standard Institute Intelligent Network</LI></UL>"
|
||||
::= { 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
|
||||
--
|
||||
381
omc/bin/mib/LGC-SS-MRFC-MIB.my
Normal file
381
omc/bin/mib/LGC-SS-MRFC-MIB.my
Normal file
@@ -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.<br>- 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.<br>- 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.<br>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.<br>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
|
||||
--
|
||||
4939
omc/bin/mib/LGC-SS-MSC-MIB.my
Normal file
4939
omc/bin/mib/LGC-SS-MSC-MIB.my
Normal file
File diff suppressed because it is too large
Load Diff
4920
omc/bin/mib/LGC-SS-MSC-MIB_bak.my
Normal file
4920
omc/bin/mib/LGC-SS-MSC-MIB_bak.my
Normal file
File diff suppressed because it is too large
Load Diff
4932
omc/bin/mib/LGC-SS-MSC-MIB_baknew.my
Normal file
4932
omc/bin/mib/LGC-SS-MSC-MIB_baknew.my
Normal file
File diff suppressed because it is too large
Load Diff
2414
omc/bin/mib/LGC-SS-MTP3-MIB.my
Normal file
2414
omc/bin/mib/LGC-SS-MTP3-MIB.my
Normal file
File diff suppressed because it is too large
Load Diff
538
omc/bin/mib/LGC-SS-OPPS-MIB.my
Normal file
538
omc/bin/mib/LGC-SS-OPPS-MIB.my
Normal file
@@ -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. <br><br>- 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.<br><br>- Allow = The following PLMN list is a white-list.<br>- 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:<br><br>- Normal = Full IMDX functions.<br>- Exclusive Half = Prohibit the public (roaming) users from registration.<br>- Exclusive Full = Prohibit both public (roaming) and hybrid users from registration.<br>- 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:<br><br>- C11 = PLMN not allowed<br>- C12 = LA not allowed<br>- 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.<br><br>- 80 = Unknown<br>- 81 = National number<br>- 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
|
||||
--
|
||||
4985
omc/bin/mib/LGC-SS-PALIM-MIB.my
Normal file
4985
omc/bin/mib/LGC-SS-PALIM-MIB.my
Normal file
File diff suppressed because it is too large
Load Diff
5116
omc/bin/mib/LGC-SS-PPS-MIB.my
Normal file
5116
omc/bin/mib/LGC-SS-PPS-MIB.my
Normal file
File diff suppressed because it is too large
Load Diff
3779
omc/bin/mib/LGC-SS-RCM-MIB.my
Normal file
3779
omc/bin/mib/LGC-SS-RCM-MIB.my
Normal file
File diff suppressed because it is too large
Load Diff
1123
omc/bin/mib/LGC-SS-RCS-MIB.my
Normal file
1123
omc/bin/mib/LGC-SS-RCS-MIB.my
Normal file
File diff suppressed because it is too large
Load Diff
588
omc/bin/mib/LGC-SS-RLS-MIB.my
Normal file
588
omc/bin/mib/LGC-SS-RLS-MIB.my
Normal file
@@ -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
|
||||
--
|
||||
225
omc/bin/mib/LGC-SS-RTPPROXY-MIB.my
Normal file
225
omc/bin/mib/LGC-SS-RTPPROXY-MIB.my
Normal file
@@ -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
|
||||
--
|
||||
1280
omc/bin/mib/LGC-SS-SCCP-MIB.my
Normal file
1280
omc/bin/mib/LGC-SS-SCCP-MIB.my
Normal file
File diff suppressed because it is too large
Load Diff
313
omc/bin/mib/LGC-SS-SMEG-MIB.my
Normal file
313
omc/bin/mib/LGC-SS-SMEG-MIB.my
Normal file
@@ -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
|
||||
--
|
||||
400
omc/bin/mib/LGC-SS-SMPP-MIB.my
Normal file
400
omc/bin/mib/LGC-SS-SMPP-MIB.my
Normal file
@@ -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.<br><br>- Client = Work as External Short Message Entity (ESME)<br>- 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.<br><br>- Tx = Work as Transmitter<br>- Rx = Work as Receiver<br>- 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.<br>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.<br>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.<br>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
|
||||
--
|
||||
546
omc/bin/mib/LGC-SS-SMSC-MIB.my
Normal file
546
omc/bin/mib/LGC-SS-SMSC-MIB.my
Normal file
@@ -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.<br><br>- Tx = Work as Transmitter<br>- Rx = Work as Receiver<br>- 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.<br>- 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
|
||||
--
|
||||
1207
omc/bin/mib/LGC-SS-SPGW-MIB.my
Normal file
1207
omc/bin/mib/LGC-SS-SPGW-MIB.my
Normal file
File diff suppressed because it is too large
Load Diff
293
omc/bin/mib/LGC-SS-TMG-MIB.my
Normal file
293
omc/bin/mib/LGC-SS-TMG-MIB.my
Normal file
@@ -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.<br>- 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.<br>- 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
|
||||
--
|
||||
1384
omc/bin/mib/LGC-SS-UDM-MIB.my
Normal file
1384
omc/bin/mib/LGC-SS-UDM-MIB.my
Normal file
File diff suppressed because it is too large
Load Diff
557
omc/bin/mib/LGC-SS-VLR-MIB.my
Normal file
557
omc/bin/mib/LGC-SS-VLR-MIB.my
Normal file
@@ -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.<br>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:<br><br>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.<br><br>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.<br><br>- 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
|
||||
--
|
||||
3877
omc/bin/mib/LGC-SS-VMS-MIB.my
Normal file
3877
omc/bin/mib/LGC-SS-VMS-MIB.my
Normal file
File diff suppressed because it is too large
Load Diff
689
omc/bin/mib/LGC-SS-XAPP-MIB.my
Normal file
689
omc/bin/mib/LGC-SS-XAPP-MIB.my
Normal file
@@ -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
|
||||
--
|
||||
344
omc/bin/mib/SNMPv2-SMI
Normal file
344
omc/bin/mib/SNMPv2-SMI
Normal file
@@ -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
|
||||
772
omc/bin/mib/SNMPv2-TC
Normal file
772
omc/bin/mib/SNMPv2-TC
Normal file
@@ -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
|
||||
5
omc/bin/mib/change
Normal file
5
omc/bin/mib/change
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
chown root LGC-*
|
||||
chgrp root LGC-*
|
||||
chmod 644 LGC-*
|
||||
36
omc/bin/mib/index
Normal file
36
omc/bin/mib/index
Normal file
@@ -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
|
||||
33
omc/bin/myipcrm
Normal file
33
omc/bin/myipcrm
Normal file
@@ -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
|
||||
4
omc/bin/mysql_OMCmain_Auditlog_filter
Normal file
4
omc/bin/mysql_OMCmain_Auditlog_filter
Normal file
@@ -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)
|
||||
BIN
omc/bin/nrtrde
Normal file
BIN
omc/bin/nrtrde
Normal file
Binary file not shown.
BIN
omc/bin/omcCleaner
Normal file
BIN
omc/bin/omcCleaner
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user