Friday, December 30, 2011

F5 : Bigip Platform Naming Conversion

Supported platforms

This installation method is supported only on the following platforms:

  • BIG-IP 520 and 540 (D35)
  • BIG-IP 1000 (C36)
  • BIG-IP 1500 (C36)
  • BIG-IP 1600 (C102)
  • BIG-IP 2400 (D44)
  • BIG-IP 3400 (C62)
  • BIG-IP 3410 (C100)
  • BIG-IP 3600 (C103)
  • BIG-IP 3900 (C106)
  • BIG-IP 4100 (D46) (for standalone Application Security Manager installations)
  • BIG-IP 5100 and 5110 (D51)
  • BIG-IP 6400 (D63)
  • BIG-IP 6800 (D68)
  • BIG-IP 6900 (D68)
  • BIG-IP 8400 (D84)
  • BIG-IP 8800 (D88)
  • BIG-IP 8900 (D106)

If you are unsure which platform you have, look at the sticker on the back of the chassis to find the platform number

Wednesday, December 28, 2011

CIsco ASA - FW priority and state

It has been sometime since I posted something related to ASA :),

How to see the FW status in a cluster?

Defenitely you can see this by running "show failover" but what if you dont have enable access.. Infact no way (Both Name in ASA will be same by default)

But following command can help you,

conf t#

prompt hostname context priority state

Now you will see the priority and state of FW along with the name., no need to be in enable mode :)

Tuesday, December 27, 2011

Checkpoint : Connection / NAT Tables

NAT Cache Table
-------------------

[Expert@GEHfiSJPhino11]# fw tab -t fwx_cache -s
HOST NAME ID #VALS #PEAK #SLINKS
localhost fwx_cache 8116 7965 13295 0

NAT Table
-----------

[Expert@GEHfiSJPhino11]# fw tab -t fwx_alloc -s
HOST NAME ID #VALS #PEAK #SLINKS
localhost fwx_alloc 8187 72 3460 0



Connection Table
-------------------
[Expert@GEHfiSJPhino11]# fw tab -t connections -s
HOST NAME ID #VALS #PEAK #SLINKS
localhost connections 8158 14144 26665 56550

Wednesday, December 21, 2011

Checkpoint : SecureXL

When SecureXL is enabled, all traffic should be accelerated, except traffic that matches the following conditions:
  • The first packets of any new TCP session, unless a "template" exists.
  • The first packet of any new UDP session.
  • All traffic that matches a service that uses a Resource.
  • Certain traffic that matches a service that is inspected by a SmartDefence or Web Intelligence feature. For example, traffic on which SSH protections are activated is not accelerated. For more details, refer to sk42401: Factors that adversely affect performance in SecureXL.
  • All traffic that is supposed to be dropped or rejected, according to the rule base.
  • All traffic that matches a rule, whose source or destination is the Gateway itself.
  • All traffic that matches a rule with a Security Server.
  • All traffic that matches a rule with User Authentication or Session Authentication.
  • Non-TCP/UDP/GRE/ESP traffic.
  • All multicast traffic.
  • All fragmented traffic.
  • All traffic with IP options.
  • RST packets, when the "Spoofed Reset Protection" feature is activated.
  • When using ClusterXL in Load Sharing mode with 'Sticky Decision Function'.
  • Traffic that violates stateful inspection paradigm, or that is suspected to be spoofed.
  • IPv6 traffic


Connection establishment acceleration ("templates" mechanism)

In order to enhance connection establishment acceleration, a mechanism attempts to "group together" all connections that match a particular service and whose sole discriminating element is the Source Port. This type of "grouping" enables even the very first packets of a TCP handshake to be accelerated. This is very useful on short connections, in which the percentage of TCP handshake traffic is very high.

The very first packets of the first connection on the same service will be forwarded to the Security Gateway's kernel, which will then create a "template" of the connection and notify the SecureXL device. Any subsequent TCP establishments on the same service (where only the source port is different) will already be accelerated (as well as any other traffic, of course).

There are several conditions that will prevent a template from being created:

  • Connections that cannot be discriminated ONLY by the source port cannot be templated.
  • NATed traffic cannot be templated.
  • VPN traffic cannot be templated.
  • Complex connections (FTP, H323, etc.) cannot be templated.
  • Non-TCP/Non-UDP traffic cannot be templated.
  • The following rules will prevent a Connection Template from being created. All subsequent rules below such rules will not be templated as well, regardless of the rule. It is advised that all rules that can be templated, be placed at the top of the rule base (unless of course, this will violate other optimization considerations):
    • Rule with service 'Any'
    • Rule with a service that has a 'handler' (where a specific protocol is chosen in 'Protocol Type' field - instead of 'None' ; go to service object - right-click - Edit... - Advanced... - Protocol Type:).
    • Rules with the following objects:
      • Time object
      • Port range object
      • Dynamic object
    • Rules with "complex" services (i.e., services that have anything specified in the "Match" field, or "Enable reply from any port" of their "Advanced" section or Source Port is defined).
    • Rules with RPC/DCOM/DCE-RPC services.
    • Rules with Client Authentication or Session Authentication.
    • When SYN Defender or Small PMTU features are activated in SmartDefense/IPS

Sunday, December 18, 2011

Checkpoint : Memory

hmem
failures mean that the hmem is full. This is not a real memory problem, but indicates a configuration problem. If low hmem limit was configured, it leads to improper usage of the OS memory.
Possible reasons for
smem failures are: smem reached its limit, exhausted the OS memory or large non-sleep allocations. This can indicate some memory shortage.


kmem
failed allocations means that some applications did not get memory. his is usually an indication for a memory problem. The most common memory problem is memory shortage. Memory shortage sometimes indicates a memory leak. In order to troubleshoot memory shortage, stop the load and let connections close.

In case memory consumption went back to normal, you are not dealing with a memory leak. Such shortage might happen when traffic volumes are too high for the device capacity. If the memory shortage happens after a change in the system or the environment, undo the change, and check whether kmem memory consumption goes down.

Checkpoint : Delete old log files on SPLAT machines

There is no way to configure your SPLAT box or UTM-1 appliance in a way, that only logs for the last X days were kept.

The only work-around would be to configure on the firewall object -> Logs and Masters -> Required Free Disc Space together with the option Do not delete log files from the last X days.

By configuring a very high value for required free disc space you could have the script run every day and with the other option prevent it from deleting the needed logs.

OR – you could implement a short script:

[Expert@fw1]# cat /usr/bin/del_logs.sh

#!/bin/bash

/usr/bin/find /var/log/opt/CPsuite-R65/fw1/*.log* -ctime +217 -print -exec rm -f {} \;

The parameter ctime is the amount of days for the logs to keep.

Run the script with cron:

[Expert@fw1]# crontab -l

# DO NOT EDIT THIS FILE - edit the master and reinstall.

# (/tmp/crontab.19431 installed on Mon May 10 10:21:33 2010)

# (Cron version -- $Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp $)

42 11 * * * /usr/bin/del_logs.sh

50 2 * * 1,2,3,4,5,6,7 backup_util sched

Now you’re able to delete the old logs as you like. If you backup your firewall or SmartCenter to your local disc, maybe you want to do this with your backups, too?

Friday, December 16, 2011

Checkpoint - SecureXL

When SecureXL is enabled, all traffic that matches following conditions will not be accelerated:

* The first packets of any new TCP session, unless a "template" exists.
* The first packet of any new UDP session.
* All traffic that matches a service that uses a resource.
* All traffic that matches a service that is inspected by a SmartDefence or Web Intelligence feature.
* All traffic that is supposed to be dropped or rejected, according to the rule base.
* All traffic that matches a rule, whose source or destination is the gateway itself.
* All traffic that matches a rule with a security server.
* All traffic that matches a rule with user authentication or session authentication.
* Non-TCP/UDP/GRE/ESP trafic (e.g. ICMP, IGRP, etc.)
* All multicast traffic. **** Prior to IPSO-3.9. In IPSO-3.9 has support for Multicast PIM acceleration for IP225x. IPSO-4.2 supports Multicast PIM acceleration for all Nokia Platforms.
* All fragmented traffic.
* All traffic with IP options.
* RST packets, when the "Spoofed Reset Protection" feature is activated.
* Traffic that violates stateful inspection paradigm or that is suspected to be spoofed.
* Rules where the service has an INSPECT handler (e.g. FTP control connection)
* Rules with action "encrypt" with no VPN H/W Accelerator card.
* All VoIP traffic
* All VPN traffic with IP Compression enabled.
* All directed broadcast traff

Connection establishment acceleration ("templates" mechanism)

In order to enhance connection establishment acceleration, a mechanism attempts to "group together" all connections that match a particular service and whose sole discriminating element is the source port. This type of "grouping" enables even the very first packets of a TCP handshake to be accelerated. This is very useful on short connections, in which the percentage of TCP handshake traffic is very high.

The very first packets of the first connection on the same service will be forwarded to the security gateway, which will then create a "template" of the connection and notify the SecureXL device. Any subsequent TCP establishments on the same service (where only the source port is different) will already be accelerated (as well as any other traffic, of course).

Conditions that will prevent a template from being created:

* All connections that cannot be discriminated ONLY by the source port.
* Traffic subject to NAT.
* VPN traffic.
* Non-trivial TCP/UDP connections (FTP, H323, etc.).
* Non-TCP/UDP traffic.

Thursday, December 8, 2011

FTP : Active/Passive Modes

FTP
===

Two types - Active and Passive

Passive : Client will always intaiate connection
------------------------------------------------

1. Client:Hightport -> server:21
2. Server will reply with a hightend port (>1023) in PORT command
3. Client:Hightport -> Server : high port (which server replied with port command)
4. Server will ACK the 3rd step

Passive FTP :

command : client >1023 -> server 21
data : client >1023 -> server >1023

Active : Both Client and Server intaiates connection
----------------------------------------------------

1. Client:HighPOrt->Server:21 and issues port command with (Highport+1) say 1024+1=1025 to connect back
2. Server :21-> Client : Highport :- Server ACK the connection
3. Server : 20->Client:Hightport+1 (the one mentioned in the port command in step 2)
4. Client:Hightport+1->server: 20 :- Client Send ACK to Server

Active FTP :
command : client >1023 -> server 21
data : client >(1023+1) <- server 20

Tuesday, December 6, 2011

HP : ILO : CLI

ust ssh to the IP that you configured the iLO

admin@shellcore:~ $ ssh admin@192.168.50.118
admin@192.168.50.118′s password:
User: admin logged-in to ILO_TESTLABHP.(192.168.50.118)
iLO 2 Advanced Evaluation 1.81 at
Server Name: proliant_g5
Server Power: On

hpiLO->

Since I will access through a text terminal, Linux is configured to use the serial port (configured through the file /boot/grub/grub.conf)

hpiLO-> help
status=0
status_tag=COMMAND COMPLETED

DMTF SMASH CLP Commands:

help : Used to get context sensitive help.
show : Used to show values of a property or contents of a collection target.
create : Used to create new user account in the name space of the MAP.
Example: create /map1/accounts1 username= password=
name=
group=

delete : Used to delete user account in the name space of the MAP.
Example: delete /map1/accounts1/

load : Used to move a binary image from an URL to the MAP. The URL is
limited to 80 characters
Example : load -source http://192.168.1.1/images/fw/iLO2_130.bin

reset : Used to cause a target to cycle from enabled to disabled and back to
enabled.

set : Used to set a property or set of properties to a specific value.
start : Used to cause a target to change state to a higher run level.
stop : Used to cause a target to change state to a lower run level.
cd : Used to set the current default target.
Example: cd targetname

exit : Used to terminate the CLP session.
version : Used to query the version of the CLP implementation or other CLP
elements.

oemhp_ping : Used to determine if an IP address is reachable from this iLO 2.
Example : oemhp_ping 192.168.1.1 , where 192.168.1.1 is the IP address that you wish
to ping

oemhp_loadSSHKey : Used to authorize a SSH Key File from an URL The URL is
limited to 80 characters
Example : oemhp_loadSSHKey -source http://UserName:password@192.168.1.1/images/SSHkey1.ppk

HP CLI Commands:

POWER : Control server power.
UID : Control Unit-ID light.
NMI : Generate an NMI.
VM : Virtual media commands.
VSP : Invoke virtual serial port.

Type VSP and you’re in. To login as root you need to include the serial port (in this case ttyS1) on your /etc/securetty file or you will be given the error message that your user or password is wrong.

hpiLO-> VSP

Starting virtual serial port.
Press ‘ESC (‘ to return to the CLI Session.

hpiLO-> Virtual Serial Port active: IO=0x02F8 INT=3

login as:

To exit, press Esc and then ( – left parenthesis

Checkpoint : SNMP Support : cpsnmpd

urrently, cpsnmpd only support SNMP version 1. As shown in last line of /var/etc/snmpd.conf.
proxy -v 1 -p 260 -c public localhost .1.3.6.1.4.1.2620

Check Point snmp daemon (cpsnmpd) process is binded to port 260 (as opposed to the default port 161). cpsnmpd can be enabled via cpconfig [select 'SNMP Extensions'] or $FWDIR/bin/cpsnmpd -p 260 command. Since IPSO 3.1, IPSO is able to act as proxy to poll Checkpoint MIBs. I.e, user can poll Checkpoint MIB via port 161.


The following shows the output of snmp polling on port 260 using snmp version 1 & 2c. 'public' was used as snmp community name.



SNMP polling was successfully when SNMP version 1 was used



[root@linux root]# snmpwalk -v 1 -c public 10.58.18.70:260 -On .1.3.6.1.4.1.2620.1.1.25.1.0

.1.3.6.1.4.1.2620.1.1.25.1.0 = STRING: "Standard"

[root@linux root]#




SNMP polling failed when SNMP version 2c was used



[root@linux root]# snmpwalk -v 2c -c public 10.58.18.70:260 -On .1.3.6.1.4.1.2620.1.1.25.1.0

Timeout: No Response from 10.58.18.70:260

[root@linux root]#




SNMP polling using v2c without port 260 was successful



[root@linux root]# snmpwalk -v 2c -c public 10.58.18.70 .1.3.6.1.4.1.2620.1.1.25.1.0

SNMPv2-SMI::enterprises.2620.1.1.25.1.0 = STRING: "Standard"

[root@linux root]#

Monitoring Checkpoint Firewalls with SNMP


I've been doing some work for a client with Checkpoint Firewalls (running Secure Platform, or SPLAT), and wanted to monitor them using SNMP. The two main reasons being;

1. To graph Accepted/Dropped/Rejected packets over time and

2. To Poll the Firewalls for status using 3rd Party Management Tools like "Whats Up Gold" and "BMC Patrol".


So a brief summary of what I had to do to get it to work correctly:

1. Enable SNMPD
chkconfig snmpd on
service snmpd start

2. Edit /etc/snmp/snmpd.conf
Add "rocommunity NotPublicCommunityString 192.168.0.1"
Add "proxy -v1 -c public 127.0.0.1:260 .1.3.6.1.4.1.2620"

3. Edit $FWDIR/conf/snmp.C

Add :snmp_community (
:read (“public”)
:write(“private”)
)

4. Run cpconfig, and enable the cpsnmpd extension

5. Add required security rule to permit access to the firewall from the management server(s) (SNMP-UDP/161) (You don't need to permit access to cpsnmpd-UDP/260)


Following these changes you should be able to do a 'netstat -an' and see the cpsnmpd listening on :260, and perform a local snmp check:
snmpwalk -v1 -c public localhost 1.3.6.1.4.1.2620.1.6

Gotchas to note:

1. The local snmpwalk above uses the "public" string - the one in snmp.C - NOT the one in snmpd.conf

2. snmpwalk from a remote host uses the "NotPublicCommunityString" - not "public"

3. snmpwalk locally (and maybe remotely) using just the OID 1.3.6.1.4.1.2620 causes the cpsnmpd process to die (need to restart it using '$CPDIR/bin/cpsnmpd -p 260' or cpstop, cpstart)

Once the above are done the management servers can query the enforcement module for Checkpoint SNMP OIDs, such as accepted packets, dropped packets and Checkpoint OS OIDs like CPU usage (accurate), memory usage etc. These queries go to the Firewall on UDP/161 and internally the snmpd process proxies the snmp request for OID .1.3.6.1.4.1.2620 (checkpoint) to the cpsnmpd process on UDP/260.

This happens by default in Nokia IPSO, but not on SecurePlatform.

Some good OIDs to Graph:

Active Real Memory .1.3.6.1.4.1.2620.1.6.7.4.4.0
Total Real Memory .1.3.6.1.4.1.2620.1.6.7.4.3.0
Packets accepted .1.3.6.1.4.1.2620.1.1.4.0
Packets dropped .1.3.6.1.4.1.2620.1.1.6.0
Packets rejected .1.3.6.1.4.1.2620.1.1.5.0
Packets logged .1.3.6.1.4.1.2620.1.1.7.0
Current connections .1.3.6.1.4.1.2620.1.1.25.3.0
Processor (System) .1.3.6.1.4.1.2620.1.6.7.2.2.0
Processor (User) .1.3.6.1.4.1.2620.1.6.7.2.1.0

And good OIDs to monitor for status:
Firewall Module State (Installed) .1.3.6.1.4.1.2620.1.1.1.0
Processor Usage .1.3.6.1.4.1.2620.1.6.7.2.4.0

Useful Links:

Cacti - An excellent (+free) web front end to MRTG/RRD-Tool

Cacti Templates Index - Although the supplied Checkpoint/Nokia ones didnt work for me without customisation. I created some more graphs and data sources using the above OIDs.

What's Up Gold - The new version is very nice. Excellent Web based multi-user UI.

Checkpoint : SNMP OID

Object NameObject Identifier
checkpoint checkpoint 1.3.6.1.4.1.2620
products products 1.3.6.1.4.1.2620.1
fw fw 1.3.6.1.4.1.2620.1.1
fwModuleState fwModuleState 1.3.6.1.4.1.2620.1.1.1
fwProduct fwProduct 1.3.6.1.4.1.2620.1.1.10
fwEvent fwEvent 1.3.6.1.4.1.2620.1.1.11
fwFilterName fwFilterName 1.3.6.1.4.1.2620.1.1.2
fwProdName fwProdName 1.3.6.1.4.1.2620.1.1.21
fwVerMajor fwVerMajor 1.3.6.1.4.1.2620.1.1.22
fwVerMinor fwVerMinor 1.3.6.1.4.1.2620.1.1.23
fwKernelBuild fwKernelBuild 1.3.6.1.4.1.2620.1.1.24
fwPolicyStat fwPolicyStat 1.3.6.1.4.1.2620.1.1.25
fwPolicyName fwPolicyName 1.3.6.1.4.1.2620.1.1.25.1
fwInstallTime fwInstallTime 1.3.6.1.4.1.2620.1.1.25.2
fwNumConn fwNumConn 1.3.6.1.4.1.2620.1.1.25.3
fwPeakNumConn fwPeakNumConn 1.3.6.1.4.1.2620.1.1.25.4
fwIfTable fwIfTable 1.3.6.1.4.1.2620.1.1.25.5
fwIfEntry fwIfEntry 1.3.6.1.4.1.2620.1.1.25.5.1
fwIfIndex fwIfIndex 1.3.6.1.4.1.2620.1.1.25.5.1.1
fwDropPcktsOut fwDropPcktsOut 1.3.6.1.4.1.2620.1.1.25.5.1.10
fwRejectPcktsIn fwRejectPcktsIn 1.3.6.1.4.1.2620.1.1.25.5.1.11
fwRejectPcktsOut fwRejectPcktsOut 1.3.6.1.4.1.2620.1.1.25.5.1.12
fwLogIn fwLogIn 1.3.6.1.4.1.2620.1.1.25.5.1.13
fwLogOut fwLogOut 1.3.6.1.4.1.2620.1.1.25.5.1.14
fwIfName fwIfName 1.3.6.1.4.1.2620.1.1.25.5.1.2
fwAcceptPcktsIn fwAcceptPcktsIn 1.3.6.1.4.1.2620.1.1.25.5.1.5
fwAcceptPcktsOut fwAcceptPcktsOut 1.3.6.1.4.1.2620.1.1.25.5.1.6
fwAcceptBytesIn fwAcceptBytesIn 1.3.6.1.4.1.2620.1.1.25.5.1.7
fwAcceptBytesOut fwAcceptBytesOut 1.3.6.1.4.1.2620.1.1.25.5.1.8
fwDropPcktsIn fwDropPcktsIn 1.3.6.1.4.1.2620.1.1.25.5.1.9
fwPerfStat fwPerfStat 1.3.6.1.4.1.2620.1.1.26
fwHmem fwHmem 1.3.6.1.4.1.2620.1.1.26.1
fwHmem-block-size fwHmem-block-size 1.3.6.1.4.1.2620.1.1.26.1.1
fwHmem-maximum-pools fwHmem-maximum-pools 1.3.6.1.4.1.2620.1.1.26.1.10
fwHmem-bytes-used fwHmem-bytes-used 1.3.6.1.4.1.2620.1.1.26.1.11
fwHmem-blocks-used fwHmem-blocks-used 1.3.6.1.4.1.2620.1.1.26.1.12
fwHmem-bytes-unused fwHmem-bytes-unused 1.3.6.1.4.1.2620.1.1.26.1.13
fwHmem-blocks-unused fwHmem-blocks-unused 1.3.6.1.4.1.2620.1.1.26.1.14
fwHmem-bytes-peak fwHmem-bytes-peak 1.3.6.1.4.1.2620.1.1.26.1.15
fwHmem-blocks-peak fwHmem-blocks-peak 1.3.6.1.4.1.2620.1.1.26.1.16
fwHmem-bytes-internal-use fwHmem-bytes-internal-use 1.3.6.1.4.1.2620.1.1.26.1.17
fwHmem-number-of-items fwHmem-number-of-items 1.3.6.1.4.1.2620.1.1.26.1.18
fwHmem-alloc-operations fwHmem-alloc-operations 1.3.6.1.4.1.2620.1.1.26.1.19
fwHmem-requested-bytes fwHmem-requested-bytes 1.3.6.1.4.1.2620.1.1.26.1.2
fwHmem-free-operations fwHmem-free-operations 1.3.6.1.4.1.2620.1.1.26.1.20
fwHmem-failed-alloc fwHmem-failed-alloc 1.3.6.1.4.1.2620.1.1.26.1.21
fwHmem-failed-free fwHmem-failed-free 1.3.6.1.4.1.2620.1.1.26.1.22
fwHmem-initial-allocated-bytes fwHmem-initial-allocated-bytes 1.3.6.1.4.1.2620.1.1.26.1.3
fwHmem-initial-allocated-blocks fwHmem-initial-allocated-blocks 1.3.6.1.4.1.2620.1.1.26.1.4
fwHmem-initial-allocated-pools fwHmem-initial-allocated-pools 1.3.6.1.4.1.2620.1.1.26.1.5
fwHmem-current-allocated-bytes fwHmem-current-allocated-bytes 1.3.6.1.4.1.2620.1.1.26.1.6
fwHmem-current-allocated-blocks fwHmem-current-allocated-blocks 1.3.6.1.4.1.2620.1.1.26.1.7
fwHmem-current-allocated-pools fwHmem-current-allocated-pools 1.3.6.1.4.1.2620.1.1.26.1.8
fwHmem-maximum-bytes fwHmem-maximum-bytes 1.3.6.1.4.1.2620.1.1.26.1.9
fwKmem fwKmem 1.3.6.1.4.1.2620.1.1.26.2
fwKmem-system-physical-mem fwKmem-system-physical-mem 1.3.6.1.4.1.2620.1.1.26.2.1
fwKmem-non-blocking-bytes-peak fwKmem-non-blocking-bytes-peak 1.3.6.1.4.1.2620.1.1.26.2.10
fwKmem-bytes-internal-use fwKmem-bytes-internal-use 1.3.6.1.4.1.2620.1.1.26.2.11
fwKmem-number-of-items fwKmem-number-of-items 1.3.6.1.4.1.2620.1.1.26.2.12
fwKmem-alloc-operations fwKmem-alloc-operations 1.3.6.1.4.1.2620.1.1.26.2.13
fwKmem-free-operations fwKmem-free-operations 1.3.6.1.4.1.2620.1.1.26.2.14
fwKmem-failed-alloc fwKmem-failed-alloc 1.3.6.1.4.1.2620.1.1.26.2.15
fwKmem-failed-free fwKmem-failed-free 1.3.6.1.4.1.2620.1.1.26.2.16
fwKmem-available-physical-mem fwKmem-available-physical-mem 1.3.6.1.4.1.2620.1.1.26.2.2
fwKmem-aix-heap-size fwKmem-aix-heap-size 1.3.6.1.4.1.2620.1.1.26.2.3
fwKmem-bytes-used fwKmem-bytes-used 1.3.6.1.4.1.2620.1.1.26.2.4
fwKmem-blocking-bytes-used fwKmem-blocking-bytes-used 1.3.6.1.4.1.2620.1.1.26.2.5
fwKmem-non-blocking-bytes-used fwKmem-non-blocking-bytes-used 1.3.6.1.4.1.2620.1.1.26.2.6
fwKmem-bytes-unused fwKmem-bytes-unused 1.3.6.1.4.1.2620.1.1.26.2.7
fwKmem-bytes-peak fwKmem-bytes-peak 1.3.6.1.4.1.2620.1.1.26.2.8
fwKmem-blocking-bytes-peak fwKmem-blocking-bytes-peak 1.3.6.1.4.1.2620.1.1.26.2.9
fwInspect fwInspect 1.3.6.1.4.1.2620.1.1.26.3
fwInspect-packets fwInspect-packets 1.3.6.1.4.1.2620.1.1.26.3.1
fwInspect-operations fwInspect-operations 1.3.6.1.4.1.2620.1.1.26.3.2
fwInspect-lookups fwInspect-lookups 1.3.6.1.4.1.2620.1.1.26.3.3
fwInspect-record fwInspect-record 1.3.6.1.4.1.2620.1.1.26.3.4
fwInspect-extract fwInspect-extract 1.3.6.1.4.1.2620.1.1.26.3.5
fwCookies fwCookies 1.3.6.1.4.1.2620.1.1.26.4
fwCookies-total fwCookies-total 1.3.6.1.4.1.2620.1.1.26.4.1
fwCookies-allocfwCookies-total fwCookies-allocfwCookies-total 1.3.6.1.4.1.2620.1.1.26.4.2
fwCookies-freefwCookies-total fwCookies-freefwCookies-total 1.3.6.1.4.1.2620.1.1.26.4.3
fwCookies-dupfwCookies-total fwCookies-dupfwCookies-total 1.3.6.1.4.1.2620.1.1.26.4.4
fwCookies-getfwCookies-total fwCookies-getfwCookies-total 1.3.6.1.4.1.2620.1.1.26.4.5
fwCookies-putfwCookies-total fwCookies-putfwCookies-total 1.3.6.1.4.1.2620.1.1.26.4.6
fwCookies-lenfwCookies-total fwCookies-lenfwCookies-total 1.3.6.1.4.1.2620.1.1.26.4.7
fwChains fwChains 1.3.6.1.4.1.2620.1.1.26.5
fwChains-alloc fwChains-alloc 1.3.6.1.4.1.2620.1.1.26.5.1
fwChains-free fwChains-free 1.3.6.1.4.1.2620.1.1.26.5.2
fwFragments fwFragments 1.3.6.1.4.1.2620.1.1.26.6
fwFrag-fragments fwFrag-fragments 1.3.6.1.4.1.2620.1.1.26.6.1
fwFrag-expired fwFrag-expired 1.3.6.1.4.1.2620.1.1.26.6.2
fwFrag-packets fwFrag-packets 1.3.6.1.4.1.2620.1.1.26.6.3
fwUfp fwUfp 1.3.6.1.4.1.2620.1.1.26.8
fwUfpHitRatio fwUfpHitRatio 1.3.6.1.4.1.2620.1.1.26.8.1
fwUfpInspected fwUfpInspected 1.3.6.1.4.1.2620.1.1.26.8.2
fwUfpHits fwUfpHits 1.3.6.1.4.1.2620.1.1.26.8.3
fwSS fwSS 1.3.6.1.4.1.2620.1.1.26.9
fwSS-http fwSS-http 1.3.6.1.4.1.2620.1.1.26.9.1
fwSS-http-pid fwSS-http-pid 1.3.6.1.4.1.2620.1.1.26.9.1.1
fwSS-http-sess-curr fwSS-http-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.1.10
fwSS-http-sess-count fwSS-http-sess-count 1.3.6.1.4.1.2620.1.1.26.9.1.11
fwSS-http-auth-sess-max fwSS-http-auth-sess-max 1.3.6.1.4.1.2620.1.1.26.9.1.12
fwSS-http-auth-sess-curr fwSS-http-auth-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.1.13
fwSS-http-auth-sess-count fwSS-http-auth-sess-count 1.3.6.1.4.1.2620.1.1.26.9.1.14
fwSS-http-accepted-sess fwSS-http-accepted-sess 1.3.6.1.4.1.2620.1.1.26.9.1.15
fwSS-http-rejected-sess fwSS-http-rejected-sess 1.3.6.1.4.1.2620.1.1.26.9.1.16
fwSS-http-auth-failures fwSS-http-auth-failures 1.3.6.1.4.1.2620.1.1.26.9.1.17
fwSS-http-ops-cvp-sess-max fwSS-http-ops-cvp-sess-max 1.3.6.1.4.1.2620.1.1.26.9.1.18
fwSS-http-ops-cvp-sess-curr fwSS-http-ops-cvp-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.1.19
fwSS-http-proto fwSS-http-proto 1.3.6.1.4.1.2620.1.1.26.9.1.2
fwSS-http-ops-cvp-sess-count fwSS-http-ops-cvp-sess-count 1.3.6.1.4.1.2620.1.1.26.9.1.20
fwSS-http-ops-cvp-rej-sess fwSS-http-ops-cvp-rej-sess 1.3.6.1.4.1.2620.1.1.26.9.1.21
fwSS-http-ssl-encryp-sess-max fwSS-http-ssl-encryp-sess-max 1.3.6.1.4.1.2620.1.1.26.9.1.22
fwSS-http-ssl-encryp-sess-curr fwSS-http-ssl-encryp-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.1.23
fwSS-http-ssl-encryp-sess-count fwSS-http-ssl-encryp-sess-count 1.3.6.1.4.1.2620.1.1.26.9.1.24
fwSS-http-transp-sess-max fwSS-http-transp-sess-max 1.3.6.1.4.1.2620.1.1.26.9.1.25
fwSS-http-transp-sess-curr fwSS-http-transp-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.1.26
fwSS-http-transp-sess-count fwSS-http-transp-sess-count 1.3.6.1.4.1.2620.1.1.26.9.1.27
fwSS-http-proxied-sess-max fwSS-http-proxied-sess-max 1.3.6.1.4.1.2620.1.1.26.9.1.28
fwSS-http-proxied-sess-curr fwSS-http-proxied-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.1.29
fwSS-http-port fwSS-http-port 1.3.6.1.4.1.2620.1.1.26.9.1.3
fwSS-http-proxied-sess-count fwSS-http-proxied-sess-count 1.3.6.1.4.1.2620.1.1.26.9.1.30
fwSS-http-tunneled-sess-max fwSS-http-tunneled-sess-max 1.3.6.1.4.1.2620.1.1.26.9.1.31
fwSS-http-tunneled-sess-curr fwSS-http-tunneled-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.1.32
fwSS-http-tunneled-sess-count fwSS-http-tunneled-sess-count 1.3.6.1.4.1.2620.1.1.26.9.1.33
fwSS-http-ftp-sess-max fwSS-http-ftp-sess-max 1.3.6.1.4.1.2620.1.1.26.9.1.34
fwSS-http-ftp-sess-curr fwSS-http-ftp-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.1.35
fwSS-http-ftp-sess-count fwSS-http-ftp-sess-count 1.3.6.1.4.1.2620.1.1.26.9.1.36
fwSS-http-time-stamp fwSS-http-time-stamp 1.3.6.1.4.1.2620.1.1.26.9.1.37
fwSS-http-is-alive fwSS-http-is-alive 1.3.6.1.4.1.2620.1.1.26.9.1.38
fwSS-http-logical-port fwSS-http-logical-port 1.3.6.1.4.1.2620.1.1.26.9.1.4
fwSS-http-max-avail-socket fwSS-http-max-avail-socket 1.3.6.1.4.1.2620.1.1.26.9.1.5
fwSS-http-socket-in-use-max fwSS-http-socket-in-use-max 1.3.6.1.4.1.2620.1.1.26.9.1.6
fwSS-http-socket-in-use-curr fwSS-http-socket-in-use-curr 1.3.6.1.4.1.2620.1.1.26.9.1.7
fwSS-http-socket-in-use-count fwSS-http-socket-in-use-count 1.3.6.1.4.1.2620.1.1.26.9.1.8
fwSS-http-sess-max fwSS-http-sess-max 1.3.6.1.4.1.2620.1.1.26.9.1.9
fwSS-ftp fwSS-ftp 1.3.6.1.4.1.2620.1.1.26.9.2
fwSS-ftp-pid fwSS-ftp-pid 1.3.6.1.4.1.2620.1.1.26.9.2.1
fwSS-ftp-sess-curr fwSS-ftp-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.2.10
fwSS-ftp-sess-count fwSS-ftp-sess-count 1.3.6.1.4.1.2620.1.1.26.9.2.11
fwSS-ftp-auth-sess-max fwSS-ftp-auth-sess-max 1.3.6.1.4.1.2620.1.1.26.9.2.12
fwSS-ftp-auth-sess-curr fwSS-ftp-auth-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.2.13
fwSS-ftp-auth-sess-count fwSS-ftp-auth-sess-count 1.3.6.1.4.1.2620.1.1.26.9.2.14
fwSS-ftp-accepted-sess fwSS-ftp-accepted-sess 1.3.6.1.4.1.2620.1.1.26.9.2.15
fwSS-ftp-rejected-sess fwSS-ftp-rejected-sess 1.3.6.1.4.1.2620.1.1.26.9.2.16
fwSS-ftp-auth-failures fwSS-ftp-auth-failures 1.3.6.1.4.1.2620.1.1.26.9.2.17
fwSS-ftp-ops-cvp-sess-max fwSS-ftp-ops-cvp-sess-max 1.3.6.1.4.1.2620.1.1.26.9.2.18
fwSS-ftp-ops-cvp-sess-curr fwSS-ftp-ops-cvp-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.2.19
fwSS-ftp-proto fwSS-ftp-proto 1.3.6.1.4.1.2620.1.1.26.9.2.2
fwSS-ftp-ops-cvp-sess-count fwSS-ftp-ops-cvp-sess-count 1.3.6.1.4.1.2620.1.1.26.9.2.20
fwSS-ftp-ops-cvp-rej-sess fwSS-ftp-ops-cvp-rej-sess 1.3.6.1.4.1.2620.1.1.26.9.2.21
fwSS-ftp-time-stamp fwSS-ftp-time-stamp 1.3.6.1.4.1.2620.1.1.26.9.2.22
fwSS-ftp-is-alive fwSS-ftp-is-alive 1.3.6.1.4.1.2620.1.1.26.9.2.23
fwSS-ftp-port fwSS-ftp-port 1.3.6.1.4.1.2620.1.1.26.9.2.3
fwSS-ftp-logical-port fwSS-ftp-logical-port 1.3.6.1.4.1.2620.1.1.26.9.2.4
fwSS-ftp-max-avail-socket fwSS-ftp-max-avail-socket 1.3.6.1.4.1.2620.1.1.26.9.2.5
fwSS-ftp-socket-in-use-max fwSS-ftp-socket-in-use-max 1.3.6.1.4.1.2620.1.1.26.9.2.6
fwSS-ftp-socket-in-use-curr fwSS-ftp-socket-in-use-curr 1.3.6.1.4.1.2620.1.1.26.9.2.7
fwSS-ftp-socket-in-use-count fwSS-ftp-socket-in-use-count 1.3.6.1.4.1.2620.1.1.26.9.2.8
fwSS-ftp-sess-max fwSS-ftp-sess-max 1.3.6.1.4.1.2620.1.1.26.9.2.9
fwSS-telnet fwSS-telnet 1.3.6.1.4.1.2620.1.1.26.9.3
fwSS-telnet-pid fwSS-telnet-pid 1.3.6.1.4.1.2620.1.1.26.9.3.1
fwSS-telnet-sess-curr fwSS-telnet-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.3.10
fwSS-telnet-sess-count fwSS-telnet-sess-count 1.3.6.1.4.1.2620.1.1.26.9.3.11
fwSS-telnet-auth-sess-max fwSS-telnet-auth-sess-max 1.3.6.1.4.1.2620.1.1.26.9.3.12
fwSS-telnet-auth-sess-curr fwSS-telnet-auth-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.3.13
fwSS-telnet-auth-sess-count fwSS-telnet-auth-sess-count 1.3.6.1.4.1.2620.1.1.26.9.3.14
fwSS-telnet-accepted-sess fwSS-telnet-accepted-sess 1.3.6.1.4.1.2620.1.1.26.9.3.15
fwSS-telnet-rejected-sess fwSS-telnet-rejected-sess 1.3.6.1.4.1.2620.1.1.26.9.3.16
fwSS-telnet-auth-failures fwSS-telnet-auth-failures 1.3.6.1.4.1.2620.1.1.26.9.3.17
fwSS-telnet-time-stamp fwSS-telnet-time-stamp 1.3.6.1.4.1.2620.1.1.26.9.3.18
fwSS-telnet-is-alive fwSS-telnet-is-alive 1.3.6.1.4.1.2620.1.1.26.9.3.19
fwSS-telnet-proto fwSS-telnet-proto 1.3.6.1.4.1.2620.1.1.26.9.3.2
fwSS-telnet-port fwSS-telnet-port 1.3.6.1.4.1.2620.1.1.26.9.3.3
fwSS-telnet-logical-port fwSS-telnet-logical-port 1.3.6.1.4.1.2620.1.1.26.9.3.4
fwSS-telnet-max-avail-socket fwSS-telnet-max-avail-socket 1.3.6.1.4.1.2620.1.1.26.9.3.5
fwSS-telnet-socket-in-use-max fwSS-telnet-socket-in-use-max 1.3.6.1.4.1.2620.1.1.26.9.3.6
fwSS-telnet-socket-in-use-curr fwSS-telnet-socket-in-use-curr 1.3.6.1.4.1.2620.1.1.26.9.3.7
fwSS-telnet-socket-in-use-count fwSS-telnet-socket-in-use-count 1.3.6.1.4.1.2620.1.1.26.9.3.8
fwSS-telnet-sess-max fwSS-telnet-sess-max 1.3.6.1.4.1.2620.1.1.26.9.3.9
fwSS-rlogin fwSS-rlogin 1.3.6.1.4.1.2620.1.1.26.9.4
fwSS-rlogin-pid fwSS-rlogin-pid 1.3.6.1.4.1.2620.1.1.26.9.4.1
fwSS-rlogin-sess-curr fwSS-rlogin-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.4.10
fwSS-rlogin-sess-count fwSS-rlogin-sess-count 1.3.6.1.4.1.2620.1.1.26.9.4.11
fwSS-rlogin-auth-sess-max fwSS-rlogin-auth-sess-max 1.3.6.1.4.1.2620.1.1.26.9.4.12
fwSS-rlogin-auth-sess-curr fwSS-rlogin-auth-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.4.13
fwSS-rlogin-auth-sess-count fwSS-rlogin-auth-sess-count 1.3.6.1.4.1.2620.1.1.26.9.4.14
fwSS-rlogin-accepted-sess fwSS-rlogin-accepted-sess 1.3.6.1.4.1.2620.1.1.26.9.4.15
fwSS-rlogin-rejected-sess fwSS-rlogin-rejected-sess 1.3.6.1.4.1.2620.1.1.26.9.4.16
fwSS-rlogin-auth-failures fwSS-rlogin-auth-failures 1.3.6.1.4.1.2620.1.1.26.9.4.17
fwSS-rlogin-time-stamp fwSS-rlogin-time-stamp 1.3.6.1.4.1.2620.1.1.26.9.4.18
fwSS-rlogin-is-alive fwSS-rlogin-is-alive 1.3.6.1.4.1.2620.1.1.26.9.4.19
fwSS-rlogin-proto fwSS-rlogin-proto 1.3.6.1.4.1.2620.1.1.26.9.4.2
fwSS-rlogin-port fwSS-rlogin-port 1.3.6.1.4.1.2620.1.1.26.9.4.3
fwSS-rlogin-logical-port fwSS-rlogin-logical-port 1.3.6.1.4.1.2620.1.1.26.9.4.4
fwSS-rlogin-max-avail-socket fwSS-rlogin-max-avail-socket 1.3.6.1.4.1.2620.1.1.26.9.4.5
fwSS-rlogin-socket-in-use-max fwSS-rlogin-socket-in-use-max 1.3.6.1.4.1.2620.1.1.26.9.4.6
fwSS-rlogin-socket-in-use-curr fwSS-rlogin-socket-in-use-curr 1.3.6.1.4.1.2620.1.1.26.9.4.7
fwSS-rlogin-socket-in-use-count fwSS-rlogin-socket-in-use-count 1.3.6.1.4.1.2620.1.1.26.9.4.8
fwSS-rlogin-sess-max fwSS-rlogin-sess-max 1.3.6.1.4.1.2620.1.1.26.9.4.9
fwSS-ufp fwSS-ufp 1.3.6.1.4.1.2620.1.1.26.9.5
fwSS-ufp-ops-ufp-sess-max fwSS-ufp-ops-ufp-sess-max 1.3.6.1.4.1.2620.1.1.26.9.5.1
fwSS-ufp-ops-ufp-sess-curr fwSS-ufp-ops-ufp-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.5.2
fwSS-ufp-ops-ufp-sess-count fwSS-ufp-ops-ufp-sess-count 1.3.6.1.4.1.2620.1.1.26.9.5.3
fwSS-ufp-ops-ufp-rej-sess fwSS-ufp-ops-ufp-rej-sess 1.3.6.1.4.1.2620.1.1.26.9.5.4
fwSS-ufp-time-stamp fwSS-ufp-time-stamp 1.3.6.1.4.1.2620.1.1.26.9.5.5
fwSS-ufp-is-alive fwSS-ufp-is-alive 1.3.6.1.4.1.2620.1.1.26.9.5.6
fwSS-smtp fwSS-smtp 1.3.6.1.4.1.2620.1.1.26.9.6
fwSS-smtp-pid fwSS-smtp-pid 1.3.6.1.4.1.2620.1.1.26.9.6.1
fwSS-smtp-sess-curr fwSS-smtp-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.6.10
fwSS-smtp-sess-count fwSS-smtp-sess-count 1.3.6.1.4.1.2620.1.1.26.9.6.11
fwSS-smtp-auth-sess-max fwSS-smtp-auth-sess-max 1.3.6.1.4.1.2620.1.1.26.9.6.12
fwSS-smtp-auth-sess-curr fwSS-smtp-auth-sess-curr 1.3.6.1.4.1.2620.1.1.26.9.6.13
fwSS-smtp-auth-sess-count fwSS-smtp-auth-sess-count 1.3.6.1.4.1.2620.1.1.26.9.6.14
fwSS-smtp-accepted-sess fwSS-smtp-accepted-sess 1.3.6.1.4.1.2620.1.1.26.9.6.15
fwSS-smtp-rejected-sess fwSS-smtp-rejected-sess 1.3.6.1.4.1.2620.1.1.26.9.6.16
fwSS-smtp-auth-failures fwSS-smtp-auth-failures 1.3.6.1.4.1.2620.1.1.26.9.6.17
fwSS-smtp-mail-max fwSS-smtp-mail-max 1.3.6.1.4.1.2620.1.1.26.9.6.18
fwSS-smtp-mail-curr fwSS-smtp-mail-curr 1.3.6.1.4.1.2620.1.1.26.9.6.19
fwSS-smtp-proto fwSS-smtp-proto 1.3.6.1.4.1.2620.1.1.26.9.6.2
fwSS-smtp-mail-count fwSS-smtp-mail-count 1.3.6.1.4.1.2620.1.1.26.9.6.20
fwSS-smtp-outgoing-mail-max fwSS-smtp-outgoing-mail-max 1.3.6.1.4.1.2620.1.1.26.9.6.21
fwSS-smtp-outgoing-mail-curr fwSS-smtp-outgoing-mail-curr 1.3.6.1.4.1.2620.1.1.26.9.6.22
fwSS-smtp-outgoing-mail-count fwSS-smtp-outgoing-mail-count 1.3.6.1.4.1.2620.1.1.26.9.6.23
fwSS-smtp-max-mail-on-conn fwSS-smtp-max-mail-on-conn 1.3.6.1.4.1.2620.1.1.26.9.6.24
fwSS-smtp-total-mails fwSS-smtp-total-mails 1.3.6.1.4.1.2620.1.1.26.9.6.25
fwSS-smtp-time-stamp fwSS-smtp-time-stamp 1.3.6.1.4.1.2620.1.1.26.9.6.26
fwSS-smtp-is-alive fwSS-smtp-is-alive 1.3.6.1.4.1.2620.1.1.26.9.6.27
fwSS-smtp-port fwSS-smtp-port 1.3.6.1.4.1.2620.1.1.26.9.6.3
fwSS-smtp-logical-port fwSS-smtp-logical-port 1.3.6.1.4.1.2620.1.1.26.9.6.4
fwSS-smtp-max-avail-socket fwSS-smtp-max-avail-socket 1.3.6.1.4.1.2620.1.1.26.9.6.5
fwSS-smtp-socket-in-use-max fwSS-smtp-socket-in-use-max 1.3.6.1.4.1.2620.1.1.26.9.6.6
fwSS-smtp-socket-in-use-curr fwSS-smtp-socket-in-use-curr 1.3.6.1.4.1.2620.1.1.26.9.6.7
fwSS-smtp-socket-in-use-count fwSS-smtp-socket-in-use-count 1.3.6.1.4.1.2620.1.1.26.9.6.8
fwSS-smtp-sess-max fwSS-smtp-sess-max 1.3.6.1.4.1.2620.1.1.26.9.6.9
fwFilterDate fwFilterDate 1.3.6.1.4.1.2620.1.1.3
fwAccepted fwAccepted 1.3.6.1.4.1.2620.1.1.4
fwRejected fwRejected 1.3.6.1.4.1.2620.1.1.5
fwDropped fwDropped 1.3.6.1.4.1.2620.1.1.6
fwLogged fwLogged 1.3.6.1.4.1.2620.1.1.7
fwMajor fwMajor 1.3.6.1.4.1.2620.1.1.8
fwMinor fwMinor 1.3.6.1.4.1.2620.1.1.9
ls ls 1.3.6.1.4.1.2620.1.11
lsProdName lsProdName 1.3.6.1.4.1.2620.1.11.1
lsStatCode lsStatCode 1.3.6.1.4.1.2620.1.11.101
lsStatShortDescr lsStatShortDescr 1.3.6.1.4.1.2620.1.11.102
lsStatLongDescr lsStatLongDescr 1.3.6.1.4.1.2620.1.11.103
lsVerMajor lsVerMajor 1.3.6.1.4.1.2620.1.11.2
lsVerMinor lsVerMinor 1.3.6.1.4.1.2620.1.11.3
lsBuildNumber lsBuildNumber 1.3.6.1.4.1.2620.1.11.4
lsFwmIsAlive lsFwmIsAlive 1.3.6.1.4.1.2620.1.11.5
lsConnectedClientsTable lsConnectedClientsTable 1.3.6.1.4.1.2620.1.11.7
lsConnectedClientsEntry lsConnectedClientsEntry 1.3.6.1.4.1.2620.1.11.7.1
lsIndex lsIndex 1.3.6.1.4.1.2620.1.11.7.1.1
lsClientName lsClientName 1.3.6.1.4.1.2620.1.11.7.1.2
lsClientHost lsClientHost 1.3.6.1.4.1.2620.1.11.7.1.3
lsClientDbLock lsClientDbLock 1.3.6.1.4.1.2620.1.11.7.1.4
lsApplicationType lsApplicationType 1.3.6.1.4.1.2620.1.11.7.1.5
vpn vpn 1.3.6.1.4.1.2620.1.2
cpvProdName cpvProdName 1.3.6.1.4.1.2620.1.2.1
cpvIPsec cpvIPsec 1.3.6.1.4.1.2620.1.2.10
cpvTnlMon cpvTnlMon 1.3.6.1.4.1.2620.1.2.11
cpvTnlMonEntry cpvTnlMonEntry 1.3.6.1.4.1.2620.1.2.11.1
cpvTnlMonAddr cpvTnlMonAddr 1.3.6.1.4.1.2620.1.2.11.1.1
cpvTnlMonStatus cpvTnlMonStatus 1.3.6.1.4.1.2620.1.2.11.1.2
cpvTnlMonCurrAddr cpvTnlMonCurrAddr 1.3.6.1.4.1.2620.1.2.11.1.3
cpvVerMajor cpvVerMajor 1.3.6.1.4.1.2620.1.2.2
cpvVerMinor cpvVerMinor 1.3.6.1.4.1.2620.1.2.3
cpvGeneral cpvGeneral 1.3.6.1.4.1.2620.1.2.4
cpvStatistics cpvStatistics 1.3.6.1.4.1.2620.1.2.4.1
cpvEncPackets cpvEncPackets 1.3.6.1.4.1.2620.1.2.4.1.1
cpvDecPackets cpvDecPackets 1.3.6.1.4.1.2620.1.2.4.1.2
cpvErrors cpvErrors 1.3.6.1.4.1.2620.1.2.4.2
cpvErrOut cpvErrOut 1.3.6.1.4.1.2620.1.2.4.2.1
cpvErrIn cpvErrIn 1.3.6.1.4.1.2620.1.2.4.2.2
cpvErrIke cpvErrIke 1.3.6.1.4.1.2620.1.2.4.2.3
cpvErrPolicy cpvErrPolicy 1.3.6.1.4.1.2620.1.2.4.2.4
cpvIpsec cpvIpsec 1.3.6.1.4.1.2620.1.2.5
cpvIPsecNIC cpvIPsecNIC 1.3.6.1.4.1.2620.1.2.5.1
cpvIPsecNICsNum cpvIPsecNICsNum 1.3.6.1.4.1.2620.1.2.5.1.1
cpvIPsecNICTotalDownLoadedSAs cpvIPsecNICTotalDownLoadedSAs 1.3.6.1.4.1.2620.1.2.5.1.2
cpvIPsecNICCurrDownLoadedSAs cpvIPsecNICCurrDownLoadedSAs 1.3.6.1.4.1.2620.1.2.5.1.3
cpvIPsecNICDecrBytes cpvIPsecNICDecrBytes 1.3.6.1.4.1.2620.1.2.5.1.4
cpvIPsecNICEncrBytes cpvIPsecNICEncrBytes 1.3.6.1.4.1.2620.1.2.5.1.5
cpvIPsecNICDecrPackets cpvIPsecNICDecrPackets 1.3.6.1.4.1.2620.1.2.5.1.6
cpvIPsecNICEncrPackets cpvIPsecNICEncrPackets 1.3.6.1.4.1.2620.1.2.5.1.7
cpvSaStatistics cpvSaStatistics 1.3.6.1.4.1.2620.1.2.5.2
cpvCurrEspSAsIn cpvCurrEspSAsIn 1.3.6.1.4.1.2620.1.2.5.2.1
cpvMaxConncurEspSAsOut cpvMaxConncurEspSAsOut 1.3.6.1.4.1.2620.1.2.5.2.10
cpvMaxConncurAhSAsIn cpvMaxConncurAhSAsIn 1.3.6.1.4.1.2620.1.2.5.2.11
cpvMaxConncurAhSAsOut cpvMaxConncurAhSAsOut 1.3.6.1.4.1.2620.1.2.5.2.12
cpvTotalEspSAsIn cpvTotalEspSAsIn 1.3.6.1.4.1.2620.1.2.5.2.2
cpvCurrEspSAsOut cpvCurrEspSAsOut 1.3.6.1.4.1.2620.1.2.5.2.3
cpvTotalEspSAsOut cpvTotalEspSAsOut 1.3.6.1.4.1.2620.1.2.5.2.4
cpvCurrAhSAsIn cpvCurrAhSAsIn 1.3.6.1.4.1.2620.1.2.5.2.5
cpvTotalAhSAsIn cpvTotalAhSAsIn 1.3.6.1.4.1.2620.1.2.5.2.6
cpvCurrAhSAsOut cpvCurrAhSAsOut 1.3.6.1.4.1.2620.1.2.5.2.7
cpvTotalAhSAsOut cpvTotalAhSAsOut 1.3.6.1.4.1.2620.1.2.5.2.8
cpvMaxConncurEspSAsIn cpvMaxConncurEspSAsIn 1.3.6.1.4.1.2620.1.2.5.2.9
cpvSaErrors cpvSaErrors 1.3.6.1.4.1.2620.1.2.5.3
cpvSaDecrErr cpvSaDecrErr 1.3.6.1.4.1.2620.1.2.5.3.1
cpvSaAuthErr cpvSaAuthErr 1.3.6.1.4.1.2620.1.2.5.3.2
cpvSaReplayErr cpvSaReplayErr 1.3.6.1.4.1.2620.1.2.5.3.3
cpvSaPolicyErr cpvSaPolicyErr 1.3.6.1.4.1.2620.1.2.5.3.4
cpvSaOtherErrIn cpvSaOtherErrIn 1.3.6.1.4.1.2620.1.2.5.3.5
cpvSaOtherErrOut cpvSaOtherErrOut 1.3.6.1.4.1.2620.1.2.5.3.6
cpvSaUnknownSpiErr cpvSaUnknownSpiErr 1.3.6.1.4.1.2620.1.2.5.3.7
cpvIpsecStatistics cpvIpsecStatistics 1.3.6.1.4.1.2620.1.2.5.4
cpvIpsecUdpEspEncPkts cpvIpsecUdpEspEncPkts 1.3.6.1.4.1.2620.1.2.5.4.1
cpvIpsecDecomprPkts cpvIpsecDecomprPkts 1.3.6.1.4.1.2620.1.2.5.4.10
cpvIpsecDecomprErr cpvIpsecDecomprErr 1.3.6.1.4.1.2620.1.2.5.4.11
cpvIpsecComprBytesBefore cpvIpsecComprBytesBefore 1.3.6.1.4.1.2620.1.2.5.4.12
cpvIpsecComprBytesAfter cpvIpsecComprBytesAfter 1.3.6.1.4.1.2620.1.2.5.4.13
cpvIpsecComprOverhead cpvIpsecComprOverhead 1.3.6.1.4.1.2620.1.2.5.4.14
cpvIpsecNonCompressibleBytes cpvIpsecNonCompressibleBytes 1.3.6.1.4.1.2620.1.2.5.4.15
cpvIpsecCompressiblePkts cpvIpsecCompressiblePkts 1.3.6.1.4.1.2620.1.2.5.4.16
cpvIpsecNonCompressiblePkts cpvIpsecNonCompressiblePkts 1.3.6.1.4.1.2620.1.2.5.4.17
cpvIpsecComprErrors cpvIpsecComprErrors 1.3.6.1.4.1.2620.1.2.5.4.18
cpvIpsecEspEncBytes cpvIpsecEspEncBytes 1.3.6.1.4.1.2620.1.2.5.4.19
cpvIpsecUdpEspDecPkts cpvIpsecUdpEspDecPkts 1.3.6.1.4.1.2620.1.2.5.4.2
cpvIpsecEspDecBytes cpvIpsecEspDecBytes 1.3.6.1.4.1.2620.1.2.5.4.20
cpvIpsecAhEncPkts cpvIpsecAhEncPkts 1.3.6.1.4.1.2620.1.2.5.4.3
cpvIpsecAhDecPkts cpvIpsecAhDecPkts 1.3.6.1.4.1.2620.1.2.5.4.4
cpvIpsecEspEncPkts cpvIpsecEspEncPkts 1.3.6.1.4.1.2620.1.2.5.4.5
cpvIpsecEspDecPkts cpvIpsecEspDecPkts 1.3.6.1.4.1.2620.1.2.5.4.6
cpvIpsecDecomprBytesBefore cpvIpsecDecomprBytesBefore 1.3.6.1.4.1.2620.1.2.5.4.7
cpvIpsecDecomprBytesAfter cpvIpsecDecomprBytesAfter 1.3.6.1.4.1.2620.1.2.5.4.8
cpvIpsecDecomprOverhead cpvIpsecDecomprOverhead 1.3.6.1.4.1.2620.1.2.5.4.9
cpvFwz cpvFwz 1.3.6.1.4.1.2620.1.2.6
cpvFwzStatistics cpvFwzStatistics 1.3.6.1.4.1.2620.1.2.6.1
cpvFwzEncapsEncPkts cpvFwzEncapsEncPkts 1.3.6.1.4.1.2620.1.2.6.1.1
cpvFwzEncapsDecPkts cpvFwzEncapsDecPkts 1.3.6.1.4.1.2620.1.2.6.1.2
cpvFwzEncPkts cpvFwzEncPkts 1.3.6.1.4.1.2620.1.2.6.1.3
cpvFwzDecPkts cpvFwzDecPkts 1.3.6.1.4.1.2620.1.2.6.1.4
cpvFwzErrors cpvFwzErrors 1.3.6.1.4.1.2620.1.2.6.2
cpvFwzEncapsEncErrs cpvFwzEncapsEncErrs 1.3.6.1.4.1.2620.1.2.6.2.1
cpvFwzEncapsDecErrs cpvFwzEncapsDecErrs 1.3.6.1.4.1.2620.1.2.6.2.2
cpvFwzEncErrs cpvFwzEncErrs 1.3.6.1.4.1.2620.1.2.6.2.3
cpvFwzDecErrs cpvFwzDecErrs 1.3.6.1.4.1.2620.1.2.6.2.4
cpvAccelerator cpvAccelerator 1.3.6.1.4.1.2620.1.2.8
cpvHwAccelGeneral cpvHwAccelGeneral 1.3.6.1.4.1.2620.1.2.8.1
cpvHwAccelVendor cpvHwAccelVendor 1.3.6.1.4.1.2620.1.2.8.1.1
cpvHwAccelStatus cpvHwAccelStatus 1.3.6.1.4.1.2620.1.2.8.1.2
cpvHwAccelDriverMajorVer cpvHwAccelDriverMajorVer 1.3.6.1.4.1.2620.1.2.8.1.3
cpvHwAccelDriverMinorVer cpvHwAccelDriverMinorVer 1.3.6.1.4.1.2620.1.2.8.1.4
cpvHwAccelStatistics cpvHwAccelStatistics 1.3.6.1.4.1.2620.1.2.8.2
cpvHwAccelEspEncPkts cpvHwAccelEspEncPkts 1.3.6.1.4.1.2620.1.2.8.2.1
cpvHwAccelEspDecPkts cpvHwAccelEspDecPkts 1.3.6.1.4.1.2620.1.2.8.2.2
cpvHwAccelEspEncBytes cpvHwAccelEspEncBytes 1.3.6.1.4.1.2620.1.2.8.2.3
cpvHwAccelEspDecBytes cpvHwAccelEspDecBytes 1.3.6.1.4.1.2620.1.2.8.2.4
cpvHwAccelAhEncPkts cpvHwAccelAhEncPkts 1.3.6.1.4.1.2620.1.2.8.2.5
cpvHwAccelAhDecPkts cpvHwAccelAhDecPkts 1.3.6.1.4.1.2620.1.2.8.2.6
cpvHwAccelAhEncBytes cpvHwAccelAhEncBytes 1.3.6.1.4.1.2620.1.2.8.2.7
cpvHwAccelAhDecBytes cpvHwAccelAhDecBytes 1.3.6.1.4.1.2620.1.2.8.2.8
cpvIKE cpvIKE 1.3.6.1.4.1.2620.1.2.9
cpvIKEglobals cpvIKEglobals 1.3.6.1.4.1.2620.1.2.9.1
cpvIKECurrSAs cpvIKECurrSAs 1.3.6.1.4.1.2620.1.2.9.1.1
cpvIKEMaxConncurSAs cpvIKEMaxConncurSAs 1.3.6.1.4.1.2620.1.2.9.1.10
cpvIKEMaxConncurInitSAs cpvIKEMaxConncurInitSAs 1.3.6.1.4.1.2620.1.2.9.1.11
cpvIKEMaxConncurRespSAs cpvIKEMaxConncurRespSAs 1.3.6.1.4.1.2620.1.2.9.1.12
cpvIKECurrInitSAs cpvIKECurrInitSAs 1.3.6.1.4.1.2620.1.2.9.1.2
cpvIKECurrRespSAs cpvIKECurrRespSAs 1.3.6.1.4.1.2620.1.2.9.1.3
cpvIKETotalSAs cpvIKETotalSAs 1.3.6.1.4.1.2620.1.2.9.1.4
cpvIKETotalInitSAs cpvIKETotalInitSAs 1.3.6.1.4.1.2620.1.2.9.1.5
cpvIKETotalRespSAs cpvIKETotalRespSAs 1.3.6.1.4.1.2620.1.2.9.1.6
cpvIKETotalSAsAttempts cpvIKETotalSAsAttempts 1.3.6.1.4.1.2620.1.2.9.1.7
cpvIKETotalSAsInitAttempts cpvIKETotalSAsInitAttempts 1.3.6.1.4.1.2620.1.2.9.1.8
cpvIKETotalSAsRespAttempts cpvIKETotalSAsRespAttempts 1.3.6.1.4.1.2620.1.2.9.1.9
cpvIKEerrors cpvIKEerrors 1.3.6.1.4.1.2620.1.2.9.2
cpvIKETotalFailuresInit cpvIKETotalFailuresInit 1.3.6.1.4.1.2620.1.2.9.2.1
cpvIKENoResp cpvIKENoResp 1.3.6.1.4.1.2620.1.2.9.2.2
cpvIKETotalFailuresResp cpvIKETotalFailuresResp 1.3.6.1.4.1.2620.1.2.9.2.3
fg fg 1.3.6.1.4.1.2620.1.3
fgProdName fgProdName 1.3.6.1.4.1.2620.1.3.1
fgVerMajor fgVerMajor 1.3.6.1.4.1.2620.1.3.2
fgVerMinor fgVerMinor 1.3.6.1.4.1.2620.1.3.3
fgVersionString fgVersionString 1.3.6.1.4.1.2620.1.3.4
fgModuleKernelBuild fgModuleKernelBuild 1.3.6.1.4.1.2620.1.3.5
fgStrPolicyName fgStrPolicyName 1.3.6.1.4.1.2620.1.3.6
fgInstallTime fgInstallTime 1.3.6.1.4.1.2620.1.3.7
fgNumInterfaces fgNumInterfaces 1.3.6.1.4.1.2620.1.3.8
fgIfTable fgIfTable 1.3.6.1.4.1.2620.1.3.9
fgIfEntry fgIfEntry 1.3.6.1.4.1.2620.1.3.9.1
fgIfIndex fgIfIndex 1.3.6.1.4.1.2620.1.3.9.1.1
fgPendPcktsIn fgPendPcktsIn 1.3.6.1.4.1.2620.1.3.9.1.10
fgPendPcktsOut fgPendPcktsOut 1.3.6.1.4.1.2620.1.3.9.1.11
fgPendBytesIn fgPendBytesIn 1.3.6.1.4.1.2620.1.3.9.1.12
fgPendBytesOut fgPendBytesOut 1.3.6.1.4.1.2620.1.3.9.1.13
fgNumConnIn fgNumConnIn 1.3.6.1.4.1.2620.1.3.9.1.14
fgNumConnOut fgNumConnOut 1.3.6.1.4.1.2620.1.3.9.1.15
fgIfName fgIfName 1.3.6.1.4.1.2620.1.3.9.1.2
fgPolicyName fgPolicyName 1.3.6.1.4.1.2620.1.3.9.1.3
fgRateLimitIn fgRateLimitIn 1.3.6.1.4.1.2620.1.3.9.1.4
fgRateLimitOut fgRateLimitOut 1.3.6.1.4.1.2620.1.3.9.1.5
fgAvrRateIn fgAvrRateIn 1.3.6.1.4.1.2620.1.3.9.1.6
fgAvrRateOut fgAvrRateOut 1.3.6.1.4.1.2620.1.3.9.1.7
fgRetransPcktsIn fgRetransPcktsIn 1.3.6.1.4.1.2620.1.3.9.1.8
fgRetransPcktsOut fgRetransPcktsOut 1.3.6.1.4.1.2620.1.3.9.1.9
ha ha 1.3.6.1.4.1.2620.1.5
haProdName haProdName 1.3.6.1.4.1.2620.1.5.1
haProtoVersion haProtoVersion 1.3.6.1.4.1.2620.1.5.10
haStatCode haStatCode 1.3.6.1.4.1.2620.1.5.101
haStatShort haStatShort 1.3.6.1.4.1.2620.1.5.102
haStatLong haStatLong 1.3.6.1.4.1.2620.1.5.103
haWorkMode haWorkMode 1.3.6.1.4.1.2620.1.5.11
haIfTable haIfTable 1.3.6.1.4.1.2620.1.5.12
haIfEntry haIfEntry 1.3.6.1.4.1.2620.1.5.12.1
haIfIndex haIfIndex 1.3.6.1.4.1.2620.1.5.12.1.1
haIfName haIfName 1.3.6.1.4.1.2620.1.5.12.1.2
haIP haIP 1.3.6.1.4.1.2620.1.5.12.1.3
haStatus haStatus 1.3.6.1.4.1.2620.1.5.12.1.4
haVerified haVerified 1.3.6.1.4.1.2620.1.5.12.1.5
haTrusted haTrusted 1.3.6.1.4.1.2620.1.5.12.1.6
haShared haShared 1.3.6.1.4.1.2620.1.5.12.1.7
haProblemTable haProblemTable 1.3.6.1.4.1.2620.1.5.13
haProblemEntry haProblemEntry 1.3.6.1.4.1.2620.1.5.13.1
haProblemIndex haProblemIndex 1.3.6.1.4.1.2620.1.5.13.1.1
haProblemName haProblemName 1.3.6.1.4.1.2620.1.5.13.1.2
haProblemStatus haProblemStatus 1.3.6.1.4.1.2620.1.5.13.1.3
haProblemPriority haProblemPriority 1.3.6.1.4.1.2620.1.5.13.1.4
haProblemVerified haProblemVerified 1.3.6.1.4.1.2620.1.5.13.1.5
haProblemDescr haProblemDescr 1.3.6.1.4.1.2620.1.5.13.1.6
haVersionSting haVersionSting 1.3.6.1.4.1.2620.1.5.14
haInstalled haInstalled 1.3.6.1.4.1.2620.1.5.2
haVerMajor haVerMajor 1.3.6.1.4.1.2620.1.5.3
haVerMinor haVerMinor 1.3.6.1.4.1.2620.1.5.4
haStarted haStarted 1.3.6.1.4.1.2620.1.5.5
haState haState 1.3.6.1.4.1.2620.1.5.6
haBlockState haBlockState 1.3.6.1.4.1.2620.1.5.7
haIdentifier haIdentifier 1.3.6.1.4.1.2620.1.5.8
haServicePack haServicePack 1.3.6.1.4.1.2620.1.5.999
svn svn 1.3.6.1.4.1.2620.1.6
svnProdName svnProdName 1.3.6.1.4.1.2620.1.6.1
svnStatCode svnStatCode 1.3.6.1.4.1.2620.1.6.101
svnStatShortDescr svnStatShortDescr 1.3.6.1.4.1.2620.1.6.102
svnStatLongDescr svnStatLongDescr 1.3.6.1.4.1.2620.1.6.103
svnProdVerMajor svnProdVerMajor 1.3.6.1.4.1.2620.1.6.2
svnProdVerMinor svnProdVerMinor 1.3.6.1.4.1.2620.1.6.3
svnInfo svnInfo 1.3.6.1.4.1.2620.1.6.4
svnVersion svnVersion 1.3.6.1.4.1.2620.1.6.4.1
svnBuild svnBuild 1.3.6.1.4.1.2620.1.6.4.2
svnOSInfo svnOSInfo 1.3.6.1.4.1.2620.1.6.5
osName osName 1.3.6.1.4.1.2620.1.6.5.1
osMajorVer osMajorVer 1.3.6.1.4.1.2620.1.6.5.2
osMinorVer osMinorVer 1.3.6.1.4.1.2620.1.6.5.3
osBuildNum osBuildNum 1.3.6.1.4.1.2620.1.6.5.4
osSPmajor osSPmajor 1.3.6.1.4.1.2620.1.6.5.5
osSPminor osSPminor 1.3.6.1.4.1.2620.1.6.5.6
osVersionLevel osVersionLevel 1.3.6.1.4.1.2620.1.6.5.7
routingTable routingTable 1.3.6.1.4.1.2620.1.6.6
routingEntry routingEntry 1.3.6.1.4.1.2620.1.6.6.1
routingIndex routingIndex 1.3.6.1.4.1.2620.1.6.6.1.1
routingDest routingDest 1.3.6.1.4.1.2620.1.6.6.1.2
routingMask routingMask 1.3.6.1.4.1.2620.1.6.6.1.3
routingGatweway routingGatweway 1.3.6.1.4.1.2620.1.6.6.1.4
routingIntrfName routingIntrfName 1.3.6.1.4.1.2620.1.6.6.1.5
svnPerf svnPerf 1.3.6.1.4.1.2620.1.6.7
svnMem svnMem 1.3.6.1.4.1.2620.1.6.7.1
memTotalVirtual memTotalVirtual 1.3.6.1.4.1.2620.1.6.7.1.1
memActiveVirtual memActiveVirtual 1.3.6.1.4.1.2620.1.6.7.1.2
memTotalReal memTotalReal 1.3.6.1.4.1.2620.1.6.7.1.3
memActiveReal memActiveReal 1.3.6.1.4.1.2620.1.6.7.1.4
memFreeReal memFreeReal 1.3.6.1.4.1.2620.1.6.7.1.5
memSwapsSec memSwapsSec 1.3.6.1.4.1.2620.1.6.7.1.6
memDiskTransfers memDiskTransfers 1.3.6.1.4.1.2620.1.6.7.1.7
svnProc svnProc 1.3.6.1.4.1.2620.1.6.7.2
procUsrTime procUsrTime 1.3.6.1.4.1.2620.1.6.7.2.1
procSysTime procSysTime 1.3.6.1.4.1.2620.1.6.7.2.2
procIdleTime procIdleTime 1.3.6.1.4.1.2620.1.6.7.2.3
procUsage procUsage 1.3.6.1.4.1.2620.1.6.7.2.4
procQueue procQueue 1.3.6.1.4.1.2620.1.6.7.2.5
procInterrupts procInterrupts 1.3.6.1.4.1.2620.1.6.7.2.6
procNum procNum 1.3.6.1.4.1.2620.1.6.7.2.7
svnDisk svnDisk 1.3.6.1.4.1.2620.1.6.7.3
diskTime diskTime 1.3.6.1.4.1.2620.1.6.7.3.1
diskQueue diskQueue 1.3.6.1.4.1.2620.1.6.7.3.2
diskPercent diskPercent 1.3.6.1.4.1.2620.1.6.7.3.3
diskFreeTotal diskFreeTotal 1.3.6.1.4.1.2620.1.6.7.3.4
diskFreeAvail diskFreeAvail 1.3.6.1.4.1.2620.1.6.7.3.5
diskTotal diskTotal 1.3.6.1.4.1.2620.1.6.7.3.6
svnMem64 svnMem64 1.3.6.1.4.1.2620.1.6.7.4
memTotalVirtual64 memTotalVirtual64 1.3.6.1.4.1.2620.1.6.7.4.1
memActiveVirtual64 memActiveVirtual64 1.3.6.1.4.1.2620.1.6.7.4.2
memTotalReal64 memTotalReal64 1.3.6.1.4.1.2620.1.6.7.4.3
memActiveReal64 memActiveReal64 1.3.6.1.4.1.2620.1.6.7.4.4
memFreeReal64 memFreeReal64 1.3.6.1.4.1.2620.1.6.7.4.5
memSwapsSec64 memSwapsSec64 1.3.6.1.4.1.2620.1.6.7.4.6
memDiskTransfers64 memDiskTransfers64 1.3.6.1.4.1.2620.1.6.7.4.7
svnServicePack svnServicePack 1.3.6.1.4.1.2620.1.6.999
mngmt mngmt 1.3.6.1.4.1.2620.1.7
mgProdName mgProdName 1.3.6.1.4.1.2620.1.7.1
mgStatCode mgStatCode 1.3.6.1.4.1.2620.1.7.101
mgStatShortDescr mgStatShortDescr 1.3.6.1.4.1.2620.1.7.102
mgStatLongDescr mgStatLongDescr 1.3.6.1.4.1.2620.1.7.103
mgVerMajor mgVerMajor 1.3.6.1.4.1.2620.1.7.2
mgVerMinor mgVerMinor 1.3.6.1.4.1.2620.1.7.3
mgBuildNumber mgBuildNumber 1.3.6.1.4.1.2620.1.7.4
mgActiveStatus mgActiveStatus 1.3.6.1.4.1.2620.1.7.5
mgFwmIsAlive mgFwmIsAlive 1.3.6.1.4.1.2620.1.7.6
mgConnectedClientsTable mgConnectedClientsTable 1.3.6.1.4.1.2620.1.7.7
mgConnectedClientsEntry mgConnectedClientsEntry 1.3.6.1.4.1.2620.1.7.7.1
mgIndex mgIndex 1.3.6.1.4.1.2620.1.7.7.1.1
mgClientName mgClientName 1.3.6.1.4.1.2620.1.7.7.1.2
mgClientHost mgClientHost 1.3.6.1.4.1.2620.1.7.7.1.3
mgClientDbLock mgClientDbLock 1.3.6.1.4.1.2620.1.7.7.1.4
mgApplicationType mgApplicationType 1.3.6.1.4.1.2620.1.7.7.1.5
wam wam 1.3.6.1.4.1.2620.1.8
wamProdName wamProdName 1.3.6.1.4.1.2620.1.8.1
wamStatCode wamStatCode 1.3.6.1.4.1.2620.1.8.101
wamStatShortDescr wamStatShortDescr 1.3.6.1.4.1.2620.1.8.102
wamStatLongDescr wamStatLongDescr 1.3.6.1.4.1.2620.1.8.103
wamVerMajor wamVerMajor 1.3.6.1.4.1.2620.1.8.2
wamVerMinor wamVerMinor 1.3.6.1.4.1.2620.1.8.3
wamState wamState 1.3.6.1.4.1.2620.1.8.4
wamName wamName 1.3.6.1.4.1.2620.1.8.5
wamPluginPerformance wamPluginPerformance 1.3.6.1.4.1.2620.1.8.6
wamAcceptReq wamAcceptReq 1.3.6.1.4.1.2620.1.8.6.1
wamRejectReq wamRejectReq 1.3.6.1.4.1.2620.1.8.6.2
wamPolicy wamPolicy 1.3.6.1.4.1.2620.1.8.7
wamPolicyName wamPolicyName 1.3.6.1.4.1.2620.1.8.7.1
wamPolicyUpdate wamPolicyUpdate 1.3.6.1.4.1.2620.1.8.7.2
wamUagQueries wamUagQueries 1.3.6.1.4.1.2620.1.8.8
wamUagHost wamUagHost 1.3.6.1.4.1.2620.1.8.8.1
wamUagIp wamUagIp 1.3.6.1.4.1.2620.1.8.8.2
wamUagPort wamUagPort 1.3.6.1.4.1.2620.1.8.8.3
wamUagNoQueries wamUagNoQueries 1.3.6.1.4.1.2620.1.8.8.4
wamUagLastQuery wamUagLastQuery 1.3.6.1.4.1.2620.1.8.8.5
wamGlobalPerformance wamGlobalPerformance 1.3.6.1.4.1.2620.1.8.9
wamOpenSessions wamOpenSessions 1.3.6.1.4.1.2620.1.8.9.1
wamLastSession wamLastSession 1.3.6.1.4.1.2620.1.8.9.2
dtps dtps 1.3.6.1.4.1.2620.1.9
dtpsProdName dtpsProdName 1.3.6.1.4.1.2620.1.9.1
dtpsStatCode dtpsStatCode 1.3.6.1.4.1.2620.1.9.101
dtpsStatShortDescr dtpsStatShortDescr 1.3.6.1.4.1.2620.1.9.102
dtpsStatLongDescr dtpsStatLongDescr 1.3.6.1.4.1.2620.1.9.103
dtpsVerMajor dtpsVerMajor 1.3.6.1.4.1.2620.1.9.2
dtpsVerMinor dtpsVerMinor 1.3.6.1.4.1.2620.1.9.3
dtpsLicensedUsers dtpsLicensedUsers 1.3.6.1.4.1.2620.1.9.4
dtpsConnectedUsers dtpsConnectedUsers 1.3.6.1.4.1.2620.1.9.5