<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>yurisk.info &#187; Checkpoint NG/NGX</title>
	<atom:link href="http://yurisk.info/category/checkpoint-ngngx/feed/" rel="self" type="application/rss+xml" />
	<link>http://yurisk.info</link>
	<description>Technical Blog about IT Security and Networking</description>
	<lastBuildDate>Thu, 29 Jul 2010 11:25:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MAC finder script</title>
		<link>http://yurisk.info/2010/07/02/mac-finder-script/</link>
		<comments>http://yurisk.info/2010/07/02/mac-finder-script/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 05:35:37 +0000</pubDate>
		<dc:creator>Yuri</dc:creator>
				<category><![CDATA[Checkpoint NG/NGX]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Esafe]]></category>
		<category><![CDATA[Fortigate]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[Checkpoint]]></category>

		<guid isPermaLink="false">http://yurisk.info/?p=959</guid>
		<description><![CDATA[While I don&#8217;t like going down to Layer 2 , recently I had to do it &#8211; I didn&#8217;t know IP address of the Cisco router I wanted to connect to but I had access to the Cisco router sitting in the same network. That would be pretty easy to do #show arp on this [...]]]></description>
			<content:encoded><![CDATA[<p>While I don&#8217;t like going down to Layer 2 , recently I had to do it &#8211; I didn&#8217;t know IP address of the Cisco router I wanted to connect to but I had access to the Cisco router sitting in the same network. That would be pretty easy to do #show arp on this router and then search on Google to whom belongs each MAC  if it wasn&#8217;t the subnet mask of /26. Copy pasting each entry of the ARP table into Google didn&#8217;t look like a lot of fun. So I wrote a python script that reads MAC addresses in bulk from command line and using downloaded beforehand database of MAC-vendor translations prints vendor for each MAC address. It works for &#35;show arp on CIsco,&#35;show mac-address-table on CIsco switches, &#35;arp -en  on Linux (means including Checkpoint), &#35;arp -a on Freebsd ,&#35;show arp of Junos from Juniper, &#35;get sys arp on Fortigate.<br />
Below is the script.<br />
Here&#58;<br />
<strong>mac-database.txt</strong> &#8211; file containing MAC-vendor translation in format &lt;MAC 6 hex digits as a sequence&gt; &lt;VENDOR&gt;, I used <a href="http://standards.ieee.org/regauth/oui/oui.txt"> standards.ieee.org/regauth/oui/oui.txt </a> as the source with a bit of sed, but if you want ready to use file I recommend <strong>nmap-mac-prefixes</strong> from nmap source-code distribution <a href="http://nmap.org/svn/nmap-mac-prefixes">http://nmap.org/svn/nmap-mac-prefixes</a><br />
Download script (to make sure formatting is preserved, an important thing for Python)<br />
<a href="http://yurisk.info/scripts/mac-finder.py">http://yurisk.info/scripts/mac-finder.py</a><br />Script AND mac database from nmap project &#8211; <a href="http://yurisk.info/scripts/mac.tar.gz"> http://yurisk.info/scripts/mac.tar.gz</a></p>
<div class="cmdout">
<pre>
&#35;!/usr/bin/python
&#35;This script accepts MAC addresses from the command line and
&#35;prints vendor for each mac address
&#35; Author&#58;Yuri, yurisk@yurisk.info,06.2010
import sys
import re
&#35;This function removes from MACs colon or dot and returns MAC as a sequence of HEX chars
def dotreplace(matchobj):
&nbsp;&nbsp;       if matchobj.group(0) == &#39;.&#39;&#58;
&nbsp;&nbsp;&nbsp;&nbsp;            return &#39;&#39;
&nbsp;&nbsp;       elif  matchobj.group(0) == &#39;&#58;&#39;&#58;
&nbsp;&nbsp;&nbsp;&nbsp;            return &#39;&#39;
&#35;open file with MAC addresses and vendors database,it has form xxxx &lt;Vendor&gt;
macs=open(&#39;mac-database.txt&#39;,&#39;r&#39;)
macs_lines=macs.readlines()
&#35;Read from stdinput
data = sys.stdin.readlines()
for ppp in data:
       popa=re.search(&#39;.*([a-f0-9]{4}\.[a-f0-9]{4}\.[a-f0-9]{4}).*&#39;,ppp,re.IGNORECASE)
       if popa:
             newpopa=re.sub(&#39;\.&#39;, dotreplace,popa.group(1))[0:6]
             newpopa_re=re.compile(newpopa,re.IGNORECASE)
             for mac_db in macs_lines:
                 vendor=re.search(newpopa_re,mac_db)
                 if vendor:
                    print ppp.strip(),mac_db[7:]
       popalinux = re.search(&#39;.*([a-f0-9]{2}&#58;[a-f0-9]{2}&#58;[a-f0-9]{2}&#58;[a-f0-9]{2}&#58;[a-f0-9]{2}&#58;[a-f0-9]{2}).*&#39;,ppp,re.IGNORECASE)
       if popalinux&#58;
             newpopalinux=re.sub(&#39;&#58;&#39;,dotreplace,popalinux.group(1))[0&#58;6]
             newpopalinux_re=re.compile(newpopalinux,re.IGNORECASE)
             for mac_db in macs_lines&#58;
                 vendor=re.search(newpopalinux_re,mac_db)
                 if vendor&#58;
                    print ppp.strip(),mac_db[7&#58;]

       popadash = re.search('.*([a-f0-9]{2}-[a-f0-9]{2}-[a-f0-9]{2}-[a-f0-9]{2}-[a-f0-9]{2}-[a-f0-9]{2}).*',ppp,re.IGNORECASE)
       if popadash:
             newpopadash=re.sub('-',dotreplace,popadash.group(1))[0:6]
             newpopadash_re=re.compile(newpopadash,re.IGNORECASE)
             for mac_db in macs_lines:
                 vendor=re.search(newpopadash_re,mac_db)
                 if vendor:
                    print ppp.strip(),mac_db[7:]
</pre>
</div>
<p>Running it:</p>
<div class="cmd">
[root@darkstar ]# ./mac-finder.py</div>
<div class="cmdout">
&lt;now I copy paste output from arp -a in BSD&gt;<br />$ arp -a<br />
(10.99.99.150) at 00:50:56:95:74:72 on em0 [ethernet]<br />
 (10.99.99.254) at 00:09:0f:31:c8:24  on em0 [ethernet]<br /> &lt;Hit CTRL+D to signal the end of input&gt;<br />
 (10.99.99.150) at 00:50:56:95:74:72 on em0 [ethernet] VMware, Inc.<br />
 (10.99.99.254) at 00:09:0f:31:c8:24 on em0 [ethernet] Fortinet Inc.</div>
]]></content:encoded>
			<wfw:commentRss>http://yurisk.info/2010/07/02/mac-finder-script/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Visio stencils for Cisco, Juniper, Fortinet, Checkpoint, Avaya</title>
		<link>http://yurisk.info/2010/06/26/visio-stencils-for-cisco-juniper-fortinet-checkpoint-avaya/</link>
		<comments>http://yurisk.info/2010/06/26/visio-stencils-for-cisco-juniper-fortinet-checkpoint-avaya/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 12:43:25 +0000</pubDate>
		<dc:creator>Yuri</dc:creator>
				<category><![CDATA[Checkpoint NG/NGX]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Fortigate]]></category>

		<guid isPermaLink="false">http://yurisk.info/?p=942</guid>
		<description><![CDATA[Some links to download Visio stencils of the few most popular vendors.
Juniper
Cisco
Avaya
BlueCoat
 Fortinet
DellCheckpoint happen not to have official stencils set, only Nokia appliances stuff can be found. So someone volunteered and using icons/press releases/PowerPoint presentations done by the Checkpoint turned it into the Visio stencils&#58;
fireverse.orgIf nothing  else helps here you  can find the [...]]]></description>
			<content:encoded><![CDATA[<p>Some links to download Visio stencils of the few most popular vendors.<br />
<a href="http://www.juniper.net/us/en/products-services/icons-stencils/">Juniper</a><br />
<a href="http://www.cisco.com/en/US/products/prod_visio_icon_list.html">Cisco</a><br />
<a href="http://support.avaya.com/css/appmanager/public/support?_nfpb=true&#038;_pageLabel=WNContent_Public&#038;contentid=C20097681410857094">Avaya</a><br />
<a href="http://www.bluecoat.com/resources/productimageslogos">BlueCoat</a><br />
<a href="http://kb.fortinet.com/kb/microsites/search.do?cmd=displayKC&#038;docType=kc&#038;externalId=11091&#038;sliceId=1&#038;docTypeID=DT_KCARTICLE_1_1&#038;dialogID=7440262&#038;stateId=0%200%207442231"> Fortinet</a><br />
<a href="http://www.dell.com/content/topics/topic.aspx/global/products/pvaul/topics/en/visio?c=us&#038;l=en&#038;s=gen">Dell</a><br />Checkpoint happen not to have official stencils set, only Nokia appliances stuff can be found. So someone volunteered and using icons/press releases/PowerPoint presentations done by the Checkpoint turned it into the Visio stencils&#58;<br />
<a href="http://fireverse.org/?page_id=14">fireverse.org</a><br />If nothing  else helps here you  can find the rest&#58;<br />
<a href="http://nag.ru/projects/visio/">nag.ru/projects/visio</a></p>
]]></content:encoded>
			<wfw:commentRss>http://yurisk.info/2010/06/26/visio-stencils-for-cisco-juniper-fortinet-checkpoint-avaya/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where do I download the Checkpoint Splat image</title>
		<link>http://yurisk.info/2010/06/26/where-do-i-download-the-checkpoint-splat-image/</link>
		<comments>http://yurisk.info/2010/06/26/where-do-i-download-the-checkpoint-splat-image/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 07:15:18 +0000</pubDate>
		<dc:creator>Yuri</dc:creator>
				<category><![CDATA[Checkpoint NG/NGX]]></category>
		<category><![CDATA[Checkpoint]]></category>

		<guid isPermaLink="false">http://yurisk.info/?p=934</guid>
		<description><![CDATA[The answer is surprisingly simple – at the  Checkpoint.com . On the home page there is a link to download their products  Try Our Products   (SPLAT, SmartDefense, Endpoint). You need a free General account in UserCenter, then you fill general questions form and get a link to download the real production [...]]]></description>
			<content:encoded><![CDATA[<p>The answer is surprisingly simple – at the <a href="http://www.Checkpoint.com"> Checkpoint.com</a> . On the home page there is a link to download their products <a href="http://www.checkpoint.com/try/index.html "> Try Our Products  </a> (SPLAT, SmartDefense, Endpoint). You need a free General account in UserCenter, then you fill general questions form and get a link to download the real production image of whatever you chose to download. You get an evaluation license for 30 days at the same page , without any license upon install you get unlimited 15-days trial.</p>
]]></content:encoded>
			<wfw:commentRss>http://yurisk.info/2010/06/26/where-do-i-download-the-checkpoint-splat-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 Things to do before opening ticket with Checkpoint</title>
		<link>http://yurisk.info/2010/06/25/things-to-do-before-opening-ticket-with-checkpoint/</link>
		<comments>http://yurisk.info/2010/06/25/things-to-do-before-opening-ticket-with-checkpoint/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 10:40:53 +0000</pubDate>
		<dc:creator>Yuri</dc:creator>
				<category><![CDATA[Checkpoint NG/NGX]]></category>
		<category><![CDATA[Checkpoint]]></category>

		<guid isPermaLink="false">http://yurisk.info/?p=925</guid>
		<description><![CDATA[I’ve been doing Checkpoint quite a lot, actually for years now. And this inevitably involves
communicating with the Checkpoint Technical Assistance Centre (TAC) . And while
you can easily come up with impression that it is pretty bad (look around at  cpug.org for heated flames about that), my view is that a lot depends on you. [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve been doing Checkpoint quite a lot, actually for years now. And this inevitably involves<br />
communicating with the Checkpoint Technical Assistance Centre (TAC) . And while<br />
you can easily come up with impression that it is pretty bad (look around at <a href="http://cpug.org"> cpug.org</a> for heated flames about that), my view is that a lot depends on you. The way you manage the ticket and interaction with the Checkpoint TAC is often more important than anything else for successful resolution of the case.<br />
To assist in that I prepared this list of things to do and have in mind before you actually call the TAC and open a case. In my experience following these simple steps will shorten the time and save you nerves substantially.<br />
<br />&nbsp;<strong>1.Understand and state the problem exactly. </strong><br />
Clearly defined problem is half the solution. The problem should be described in measurable terms not qualitative ones.<br />
Not &#34;VPN tunnels flap and fail all the time&#34; but &#34;VPN tunnel between this and this peers is coming up for 3-5 minutes then goes down for 10 minutes also communication between sites stops and I see in SmartViewTracker the following&#8230; &#34;<br />
Not &#34;If I enable URL filtering all works slow&#34; but &#34;If I enable URL filtering it takes 40 seconds to load the same page that I load in 3 secs without URL-filtering, my download rates from different sites decrease by such and such numbers and in logs I see …&#34;<br />
Screenshots of the error messages are very welcome.<br />
<br /><strong>2. &#34;…  burden of proof is on the defendant&#34; – gather all needed info even before you get asked to.</strong><br />
Have you worked in a TAC ? No ? Then let me illustrate. The answering Supporter has no slightest idea what the equipment is on your site, what  the IP addresses are, whether load-balancers/nat-devices/traffic accelerators are involved, not to mention yours being the 10th case today,  in short &#8211; he/she knows nothing about your topology, but you ,on the other hand ,having worked for years with the same set up come to think that this knowledge is a known fact to everyone. So please don’t – when approaching the TAC think of it as preparing a presentation that describes your network topology in 10 minutes to a complete stranger on the street (no need to practice this though <img src='http://yurisk.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ).<br />
Topology info you will most probably need to supply&#58;<br />
 IP addresses of interfaces and routes of all the devices that are  involved in the traffic having a problem.<br />
All NAT/IPS/load balancing/acceleration tempering going on in your network .<br />
Changes in topology that were done just before the problem occurred.<br />
<br /><strong>3.	Provide Cpinfo files from all the Checkpoint devices involved.</strong><br />
Checkpoint Support engineer most probably has no access to your firewall. And still she/he has to fully understand its configuration and state. The closest to accessing the firewall thing is providing Cpinfo file. If you have a distributed Checkpoint setup do it for all devices as well.<br />
It is also advisable to make sure that all your devices have the latest Cpinfo  utility installed [sk30567]. Unfortunately regular users can’t download it from Checkpoint Usercenter you will need at least Partner account with them.<br />
<br />NOTE Regarding handing over files to the Checkpoint TAC. When you supply them Cpinfo files you provide complete information about your firewall – its rules, objects and their properties etc. Think of it as if you were giving them the one-to-one copy of the firewall. So if you have some privacy/confidentiality reservations take it into account .<br />
<br /><strong>4.	Do a packet capture that also includes the problematic traffic.</strong><br />
Should you have any sort of case demanding serious debug be prepared to attach to the case captured traffic while replicating the problem. Of course consider the load on the firewall but usually to see if there are any drops on the traffic Checkpoint will ask you to do <strong>fw monitor –o capture.cap</strong> .<br />
Supplement this capture with output of <strong>fw ctl zdebug drop > dropped.txt</strong><br />
<br /><strong>5.If opening the case through the Checkpoint website and the problem is rather urgent do a follow up call <a href="http://www.checkpoint.com/services/contact/index.html"> Contact list</a>.</strong><br />
When you open a case it is being put in the queue of all other cases waiting to be assigned to Support Engineers. It happens on FIFO basis (each severity level has its own queue I guess). So it may wait there for few good hours. In such cases and when the case justifies it you may call the TAC and ask the person (not demand) to speed up assigning your case to the Technical Engineer.  I used this procedure and usually the case was assigned to someone 15 minutes after my call.<br />
<br /><strong>6.Provide correct and most available means to contact you back.</strong> <br />
Nothing can be more disheartening for a Supporter than to get a case and then chase you for hours/days.<br />
<br /> <strong>7.	If you work for Checkpoint Partner or proudly hold CCSE/CCSE+ certs do actually some debug yourself <img src='http://yurisk.info/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</strong><br />
Working for Checkpoint Partner (as I do) in my opinion not only gives us immediate unrestricted access to the TAC but also the responsibility to do as much as possible to debug the problem ourselves (moreover it sucks to look amateurish) . I should state that I don’t always follow this advice but always try to.<br />
Make the “The NGX Advanced Technical Reference Guide (ATRG) “  [sk31221]  your night reading and you will decrease the number of open tickets by 50% guaranteed .<br />
When you do relevant debug even without being able to understand results  you save many hours of waiting for the TAC Supporter to just ask you for the very same debug and its logs.</p>
<p> <strong>8.	In case of emergency call 911 and ask for remote session.</strong><br />
In urgent cases when you experience heavy downtime be prepared and even ask for remote session with the Supporter that got your case. Checkpoint have the TeamViewer-alike  software that will allow them to connect to your workstation while it is connected to the firewall.  Also the last time I  checked  this software had no (identifiable) keyloggers/Trojans so don’t worry <img src='http://yurisk.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://yurisk.info/2010/06/25/things-to-do-before-opening-ticket-with-checkpoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change IP address on the interface without losing the connection</title>
		<link>http://yurisk.info/2010/06/02/change-ip-address-on-the-interface-without-losing-the-connection/</link>
		<comments>http://yurisk.info/2010/06/02/change-ip-address-on-the-interface-without-losing-the-connection/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 17:22:59 +0000</pubDate>
		<dc:creator>Yuri</dc:creator>
				<category><![CDATA[Checkpoint NG/NGX]]></category>
		<category><![CDATA[Checkpoint]]></category>

		<guid isPermaLink="false">http://yurisk.info/?p=848</guid>
		<description><![CDATA[I happen from time to time to configure from scratch some Checkpoint UTM/Open Server  that is thousand miles away. And from experience the best way to do it is when you have out-of-band fast access to the firewall. Of course not always such well-organized beforehand set up is available. Just like today when I [...]]]></description>
			<content:encoded><![CDATA[<p>I happen from time to time to configure from scratch some Checkpoint UTM/Open Server  that is thousand miles away. And from experience the best way to do it is when you have out-of-band fast access to the firewall. Of course not always such well-organized beforehand set up is available. Just like today when I was asked how to change IP address on the interfcae through which you are connected to the firewall.<br />
Ok, to be more specific &#8211; client had been connected with his UTM through some ISP that included also IP addresses on the WAN (External) interface of the firewall. Time has come to change ISP and accordingly its IP addresses.<br />
All went surprisingly well, my collegue added new IP address on the External interface as the Secondary IP and from then on he could access/manage firewall through this new IP without a hitch. There is one but though &#8211; SSL VPN service was still listening on the old IP and didn&#8217;t work because of that. So we had to remove the new IP as Secondary and put it as the Primary one. For this he asked  my opinion , I set up some improvised lab and here is how to do it .<br />
<br />1) First, for unmanned location I set up in cron to do restart in say 10-15 minutes from now so if something goes wrong restart will discard any changes done in step 2;</p>
<div class="cmdout">
[Expert@R71]# crontab -l<br />
# DO NOT EDIT THIS FILE &#8211; edit the master and reinstall.<br />
# (/tmp/crontab.5649 installed on Wed Jun  2 11:25:53 2010)<br />
# (Cron version &#8212; $Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp $)<br />
27 11 * * * /sbin/reboot</div>
<p>2) Connected through the ssh I did the following two commands on the same line that when finished should not even disconnect you from the ssh. It brings down secondary IP (aliased interface) and assigns this IP to the External interface as the usual Primary one.</p>
<div class="cmd">
ifconfig External:0 down ; ifconfig External 192.168.2.22 netmask 255.255.255.0</div>
]]></content:encoded>
			<wfw:commentRss>http://yurisk.info/2010/06/02/change-ip-address-on-the-interface-without-losing-the-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Schedule fw monitor to run unattended</title>
		<link>http://yurisk.info/2010/05/29/schedule-fw-monitor-to-run-unattended/</link>
		<comments>http://yurisk.info/2010/05/29/schedule-fw-monitor-to-run-unattended/#comments</comments>
		<pubDate>Sat, 29 May 2010 08:43:48 +0000</pubDate>
		<dc:creator>Yuri</dc:creator>
				<category><![CDATA[Awk weekly]]></category>
		<category><![CDATA[Checkpoint NG/NGX]]></category>
		<category><![CDATA[Checkpoint]]></category>

		<guid isPermaLink="false">http://yurisk.info/?p=838</guid>
		<description><![CDATA[Not a groundbreaking idea but worth remembering that you can also run scheduled fw monitor using the cron. In case you have some problem occurring at the late night hours or you want to run debug at night when system is loaded less or put your case here this is one of the ways to [...]]]></description>
			<content:encoded><![CDATA[<p>Not a groundbreaking idea but worth remembering that you can also run scheduled fw monitor using the cron. In case you have some problem occurring at the late night hours or you want to run debug at night when system is loaded less or put your case here this is one of the ways to do it.<br />
First, the script named timed_fw_monitor.sh  that starts the fw monitor:</p>
<div class="cmdout">
#!/bin/bash <br />
# We have to source Checkpoint environment variables for fw monitor to work<br />
. /etc/profile.d/CP.sh<br />
/opt/CPsuite-R71/fw1/bin/fw monitor -o /home/lambada/capture.cap  -e &#8216;accept icmp or port(25);&#8217;</div>
<p>Then of course I will want to stop fw monitor , here is the script named stop_fw_monitor.sh that I also put in cron jobs that stops previously started fw monitor :</p>
<div class="cmdout">
#!/bin/bash<br />
ps ax | grep  &#8216;capture.cap&#8217; | grep -v grep | awk &#8216;{ print (&#8221;kill -s 3 &#8221; $1) | &#8220;/bin/bash&#8221; }&#8217;</div>
<p>Now my crontab looks like this:</p>
<div class="cmdout">
# DO NOT EDIT THIS FILE &#8211; edit the master and reinstall.<br />
# (/tmp/crontab.4760 installed on Sat May 29 11:00:22 2010)<br />
# (Cron version &#8212; $Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp $)<br />
03 23  * * * /home/lambada/timed_fw_monitor.sh > /dev/null<br />
17 23  * * * /home/lambada/stop_fw_monitor.sh > /dev/null</div>
]]></content:encoded>
			<wfw:commentRss>http://yurisk.info/2010/05/29/schedule-fw-monitor-to-run-unattended/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTP inside VPN Checkpoint troubles</title>
		<link>http://yurisk.info/2010/05/19/ftp-inside-vpn-checkpoint-troubles/</link>
		<comments>http://yurisk.info/2010/05/19/ftp-inside-vpn-checkpoint-troubles/#comments</comments>
		<pubDate>Wed, 19 May 2010 18:38:05 +0000</pubDate>
		<dc:creator>Yuri</dc:creator>
				<category><![CDATA[Checkpoint NG/NGX]]></category>
		<category><![CDATA[Checkpoint]]></category>

		<guid isPermaLink="false">http://yurisk.info/?p=807</guid>
		<description><![CDATA[Do we need to fix all the problems all the time ? My answer is no. Also I believe in good solution today and dismiss ideal solutions tomorrow. Let me show this on the real case with one of the clients.
Client has Checkpoint, lots of Checkpoint, just heaps of it. And all their work is [...]]]></description>
			<content:encoded><![CDATA[<p>Do we need to fix all the problems all the time ? My answer is no. Also I believe in good solution today and dismiss ideal solutions tomorrow. Let me show this on the real case with one of the clients.<br />
Client has Checkpoint, lots of Checkpoint, just heaps of it. And all their work is based on VPN site to site communication between myriad of remote branches and the central office. All being VPNed. One of the services running inside those endless tunnels is plain old FTP. To be more precise scriptable scheduled transfer of files.<br />
It has been working like that for years until it started making troubles. Not all sites in one go, just one site a day or a week, only that multiplied by the sheer number of the branches it became an avalanche.<br />
Following usual path I tried to fix things by myself, and it worked at the beginning. But then number of troublesome sites increased, at some point I attached Checkpoint to the process. They didn&#8217;t see some<br />
major problem, just many seemingly unrelated local ones.<br />
Also the FTP problems differed:<br />
- download of small files went ok but on files &gt; 1Mb it got stuck;<br />
- download of any single file was ok, but multiple files got it stuck;<br />
- files got transferred but with file size 0;<br />
And all this had no obvious reasons &#8211; FTP drops here and there. Little by little I found myself fighting the windmills. Could it be solved ? I guess so . How much time ? Months .<br />
Then I solved this problem quite simple &#8211; the client didn&#8217;t care a bit what file protocol is being used as long as it is scriptable and Windows-friendly. So I run a test, and offered him to use SSH/SCP inside VPN tunnels instead of FTP.<br />
The results of the tests were funny &#8211; from the same remote server, and all the rest being the same moving<br />
files with scp (pscp.exe) annihilated all the problems seen with the FTP. That is it. <br />See you.</p>
]]></content:encoded>
			<wfw:commentRss>http://yurisk.info/2010/05/19/ftp-inside-vpn-checkpoint-troubles/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Authenticating ssh access on the Checkpoint using external Radius server</title>
		<link>http://yurisk.info/2010/05/01/authenticating-ssh-access-on-the-checkpoint-using-external-radius-server/</link>
		<comments>http://yurisk.info/2010/05/01/authenticating-ssh-access-on-the-checkpoint-using-external-radius-server/#comments</comments>
		<pubDate>Sat, 01 May 2010 11:43:40 +0000</pubDate>
		<dc:creator>Yuri</dc:creator>
				<category><![CDATA[Checkpoint NG/NGX]]></category>
		<category><![CDATA[Checkpoint]]></category>

		<guid isPermaLink="false">http://yurisk.info/?p=736</guid>
		<description><![CDATA[I got asked few times on this rather rarely used feature, and as surfing through the Checkpoint docs can be a bit tedious, I‘ll put it here.  SSH user authentication against external server, in this case using Radius protocol, is possible but only if you have VPN Pro featured firewall and accordingly VPN Pro [...]]]></description>
			<content:encoded><![CDATA[<p>I got asked few times on this rather rarely used feature, and as surfing through the Checkpoint docs can be a bit tedious, I‘ll put it here.  SSH user authentication against external server, in this case using Radius protocol, is possible but only if you have VPN Pro featured firewall and accordingly VPN Pro license (Advanced Networking Blade if using Blades). Then using firewall’s WebGUI you will have an option to configure external Radius server to authenticate operating system users. See screenshots below.<br />
<a href="http://yurisk.info/Radius1big.png"><img src="http://yurisk.info/Radius1verysmall.png" alt="Radius Authentication option in WebGUI" /></a><br />
<a href="http://yurisk.info/Radius2big.png"><img src="http://yurisk.info/Radius2verysmall.png" alt="Radius Authentication option in WebGUI" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://yurisk.info/2010/05/01/authenticating-ssh-access-on-the-checkpoint-using-external-radius-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to know UTM appliance version on the CLI</title>
		<link>http://yurisk.info/2010/04/23/how-to-know-utm-appliance-version-on-the-cli/</link>
		<comments>http://yurisk.info/2010/04/23/how-to-know-utm-appliance-version-on-the-cli/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 04:48:36 +0000</pubDate>
		<dc:creator>Yuri</dc:creator>
				<category><![CDATA[Checkpoint NG/NGX]]></category>
		<category><![CDATA[Checkpoint]]></category>

		<guid isPermaLink="false">http://yurisk.info/?p=733</guid>
		<description><![CDATA[This one will be short, just a link to the Tobias Lachmann blog where he shows how using dmidecode you can know what is the version of the UTM you are logged in.   Determine UTM-1 appliance series from cli
]]></description>
			<content:encoded><![CDATA[<p>This one will be short, just a link to the Tobias Lachmann blog where he shows how using dmidecode you can know what is the version of the UTM you are logged in. <br /> <a href="http://blog.lachmann.org/2010/01/determine-utm-1-appliance-series-from-cli/"> Determine UTM-1 appliance series from cli</a></p>
]]></content:encoded>
			<wfw:commentRss>http://yurisk.info/2010/04/23/how-to-know-utm-appliance-version-on-the-cli/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>fw ctl or checkpoint tables by any other name</title>
		<link>http://yurisk.info/2010/04/09/fw-ctl-or-checkpoint-tables-by-any-other-name/</link>
		<comments>http://yurisk.info/2010/04/09/fw-ctl-or-checkpoint-tables-by-any-other-name/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 05:34:54 +0000</pubDate>
		<dc:creator>Yuri</dc:creator>
				<category><![CDATA[Checkpoint NG/NGX]]></category>
		<category><![CDATA[Firewall]]></category>
		<category><![CDATA[Checkpoint]]></category>

		<guid isPermaLink="false">http://yurisk.info/?p=662</guid>
		<description><![CDATA[Holidays are over, Checkpoint failures are back, so business as usual. Today I want to draw your attention to often overlooked information source – Checkpoint state tables. While running, the firewall creates, keeps and updates various tables it needs for correct functioning. These tables contain parameters that are mostly of use for firewall itself, but [...]]]></description>
			<content:encoded><![CDATA[<p>Holidays are over, Checkpoint failures are back, so business as usual. Today I want to draw your attention to often overlooked information source – Checkpoint state tables. While running, the firewall creates, keeps and updates various tables it needs for correct functioning. These tables contain parameters that are mostly of use for firewall itself, but you can query them on the cli, sometimes even flush them as well.<br />
To see all tables with its contents you type –<br />
<span class="cmd">[Expert@Hollywood]# fw tab</span><br />
To see only table names –<br />
<span class="cmd">[Expert@Hollywood]# fw tab | grep &#8220;\-\-\-\-\-\-\-&#8221; </span></p>
<div class="cmdout">&#8212;&#8212;&#8211; vsx_firewalled &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; firewalled_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; external_firewalled_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; management_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; external_management_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; log_server_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; tcp_services &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; udp_services &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; internal_interface_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; topology_range_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; gui_clients_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cp_NG_products_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; smtp_av_user_config_match_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; smtp_av_scan_exclusion &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; http_av_user_config_match_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; http_av_scan_exclusion &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; pop3_av_user_config_match_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; pop3_av_scan_exclusion &#8212;&#8212;&#8211;<span id="more-662"></span><br />
&#8212;&#8212;&#8211; aspam_unique_id &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; aspam_directional_match_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; aspam_smtp_ip_match_tab_src &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; aspam_pop3_ip_match_tab_src &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; aspam_scan_all_traffic &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; auth_rules_on_gw &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; content_security_uf &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; content_security_av &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; content_security_aspam &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; content_security_next_proxy &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cs_next_proxy_host &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cs_next_proxy_port &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; module_content_security &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; report_server_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; smartPortal_server_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; abacus_server_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; event_analyzers_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ua_server_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ua_products_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; rtm_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cvp_servers_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ufp_servers_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cpmi_clients_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; radius_servers_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; tacacs_servers_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ldap_servers_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; NG_policy_server_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; physical_servers_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; load_servers_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; drop_rejct_rules &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; gsn_quota &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; no_nat_comm_4 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; community_no_nat &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; http_services &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ftp_services &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; smtp_services &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; pop3_services &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cifs_services &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dns_services &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sip_services &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; mgcp_services &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dns_rand_servers &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; aspam_wb_ip &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; mgcp_cmd &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sip_method &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; non_scv_hosts &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; gtp_apn_params &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ssl_tunnels_excluded_services &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ssl_tunnels_excluded_clients &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; syslg_relay_servers_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcerpc_maps &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcerpc_rmaps &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcerpc_binds &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcerpc_epm_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcerpc_map_ports &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcerpc_udp_maps &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcerpc_udp_rmaps &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcerpc_udp_epm_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcerpc_udp_hpov_maps &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcerpc_logs &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcerpc_reply_any_port &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcom_objects &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcom_remote_activations &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcom_call_ids &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcom_high_port &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dcom_sysact_state &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; compiled_cifs_resources &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; userc_rules &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; userc_bind &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; userc_key &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; userc_users &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; userc_pending &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; userc_slan &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; userc_dtm_cache &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; pending &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; rpc_serv_hosts &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; rpc_serv &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; rpc_sessions &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; pmap_req &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; pmap_not_responding &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; logged &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; trapped &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; check_alive &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; auth_services &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; client_auth &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; client_was_auth &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; autoclntauth_fold &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; session_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; pending_session_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sso_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; auth_status &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; av_cache &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; proxied_conns &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; genufp_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; genufp_matched &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; genufp_mismatched &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; icmp_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; icmp_replies &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; icmp_errors &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; forbidden_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ipufp_cache &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ufp_statistic &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dynobj_cache &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dns_rand_to_sid &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dns_sid_to_rand &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dns_response_misses &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; snid_enc_keys &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; resolve_hostbyname_cache &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; resolve_hostbyaddr_cache &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; voip_host_connections &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cac_codecs &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sip_state &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; earlynat_sport &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sip_dynamic_port &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sip_cseq &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; mgcp_conn &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; mgcp_tid &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; mgcp_registration &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; mgcp_earlynat_tid &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; mgcp_dynamic_port &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ssl_v3_conns &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ssh2_syn_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ssh2_client_seq &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; p2p_sessions &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; edonkey_clients &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; p2p_packets &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; pptp_state &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; first_master &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; mapped_if &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; fwx_sticky_port &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; allowed_ip_options &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; allowed_ipopts_proto &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; hide_behind_low_ports &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cluster_mcast_nolog &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; hide_services_ports &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; no_hide_services_ports &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; no_fold_services_ports &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; nokia_no_fold_ports &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; no_misp_services_ports &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; pop3d_clients &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; epq_quarantined_host &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; aspam_syn_cache &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; tcp_services_props &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; udp_services_props &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; other_services_props &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; adp_ca_brightstor_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; rc4_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Objhbbbjb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjUOdnB &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjSRqhab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjLALMqb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjsFK9hb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Obj4kPyz &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjO80qQb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjolM2n &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; mhis_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Obja2fNE &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjQvSXqb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjGiirDb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; http_hand_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Objn_q2i &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Objo2Goeb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjdSJuO &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjqYUGFb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; contnt_prot_state_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; backweb_connections &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; freetel_connections &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; iiop_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; x11verify_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; wf_connections &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; exchange_notifies &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; rtsp_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ncp_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; e2e_gwbw_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpn_range_gateways &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpn_range_gateways_valid &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cvp_connections &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; p2p_logged &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; welchia_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ssh_sessions &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; gif_rerun_tbl &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; aviwave_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; png_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; emf_wmf_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjIqngWb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Obj1Pjdc &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjEcVuT &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjBYyIB &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; mpe_pme_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjipTMsb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjAIP_g &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Obj1_j2Qb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjsRmHN &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjgGBn_b &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Obj8YTItb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; office_rerun_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; block_office_ppt_start &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; block_office_offset &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; block_office_retrans &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjYpZWX &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjLRkIWb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjiMhGQ &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjdZJgJb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Obji4D8J &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjTBbSbb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjFYJhJb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjK3HfXb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Obj3Izhfc &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjATGcAb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; snmp_pdu_types &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjPKm54b &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjpZHv1 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjNPV8V &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Objmeh8Ub &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Obj0XzAN &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjXatVDb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; syslog_dates &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; buf_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cram_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; imap_log_tbl &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; imap_except_tbl &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; flac_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sami_tbl &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjajI9Rb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjCGXEdb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; pct_opcode_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; pct_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Obj1e5hC &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjRztz7 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjaxeIAb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjwNbxib &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; word_plflfo_tbl &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; word_sprm_tbl &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjkxWEfc &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Obj217K1 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; flash_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjjoQvm &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjUZxDgc &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjlgJhcc &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjaLxvLb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; rtf_fmp_parse27_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ssl_counter_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dns_bruth_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dns_bruth_tab_case &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dns_bruth_res_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; pdf_jbig_tbl &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjO5atzb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjCy5LO &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjmbEnl &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjxZiyv &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Obj8sHTQb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjCMpyg &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjMbgQeb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjHh3It &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjsYf1n &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ldap_leak_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjhPV7z &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjEkdpjc &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjH3V57 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; pe_parser_tbl &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Obj6a6Th &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjHkxoe &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Obj6yDZpb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjRpdDu &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjiB_Z4b &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ms_proj_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ObjyXqwA &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sdupdate_dynamic_tab_attrs &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpn_active &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; encryption_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; decryption_pending &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; rdp_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; rdp_dont_trap &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; userc_encapsulating_clients &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; MSPI_cluster_feedback &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; MSPI_cluster_feedback_new &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; L2TP_MSPI_cluster_feedback &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; MSPI_cluster_update &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; L2TP_MSPI_cluster_update &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; MSPI_cluster_request &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; MSPI_feedback_to_delete &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ATLAS_ROBO_Objects &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; DAG_ID_to_IP &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; DAG_IP_to_ID &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ipsec_crypt_pending &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; inbound_SPI &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; outbound_SPI &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; resolving_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; MSPI_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; SPI_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; resolving_req_connections &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; MSPI_req_connections &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; user_auth_groups &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; IKE_SA_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; new_IKE_SA_update &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; IPSEC_userc_dont_trap_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; SEP_my_IKE_packet &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; tcpt_external_ip &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; L2TP_tunnels &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; L2TP_sessions &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; L2TP_lookup &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpn_if_peer_mspi &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpn_interfaces_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; peer_vpn_if_mapping &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; MSPI_by_methods &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; MSPI_cluster_map &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; resolved_interface &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; MEP_chosen_gw &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; crypt_resolver_db &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; MEP_ls &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; userc_resolve_dont_trap &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; fwz_crypt_pending &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; crypt_resolver_uptag &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cryptlog_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; udp_enc_cln_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cluster_connections_nat &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; IPSEC_mtu_icmp &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; IPSEC_mtu_icmp_wait &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; XPO_names &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; communities_names &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; peers_names &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; local_vpn_routing &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; VIN_SA_to_delete &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; udp_response_nat &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; marcipan_mapping &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; marcipan_ippool_users &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; marcipan_ippool_allocated &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; reliable_trap &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; peers_count &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; IKE_peers &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ipalloc_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; persistent_tunnels &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dhcp_nat_params_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; my_daip_ip_to_id &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; om_assigned_ips &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; om_radius &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; tnlmon_listener_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; tnlmon_life_sign &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; preferred_MEP_gw &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; tnlmon_job_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; udp_enc_route_refcount &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; reload_policy_timer &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; http_vpnd_cookies &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sslt_om_ip_params &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ssl_tunnel_id_to_mspi &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; http_ics_pre_auth_cookies &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpnd_ics_report_suid &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpn_queues &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ike2esp &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; peer2ike &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ike2peer &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; initial_contact_pending &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; user_properties &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; rdp_state_repository &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ike_state_repository &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; get_topology_state_repository &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ike_temp_DAG_IP_to_ID &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; resolved_link &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; orig_route_params &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cluster_active_robo &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; edge_clusters &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; outbound_spi_by_peer &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; robo_active_link &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; src_ip_by_peer &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; natt_port &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; frl_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sslt_disconnect_reasons &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpn_best_route_cache &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; TunnelTest_NAT &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; slp_active_users &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dag_dhcp_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; net_quota_exclusion_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sr_enc_domain &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sr_enc_domain_valid &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpn_enc_domain &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpn_enc_domain_valid &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpn_methods &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpn_routing &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpn_enable_routing &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpn_enable_internet_routing &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; static_interface_resolve &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; daip_ranges &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Robo_ranges &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Robo_ids &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Robo_allowed_ranges &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; Robo_clusters &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sdb_edge_clusters &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; community_domain_4 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; community_excl_udp_4 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; om_protected_group &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; gw_properties &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpn_rulematch &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; comm_conn_level &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ca_servers_addresses &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; target_list10 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; rulenum_list13 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; rulenum_list14 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; rulenum_list15 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; fwportscn_vertical_exclude &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; fw_allow_out_of_tcp_always &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; spii_proto_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; DAG_range &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; NAT_src_intvl_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; NAT_dst_intvl_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; NAT_src_any_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; NAT_dst_any_list &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; NAT_rules &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; full_service_list11 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; full_service_list12 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ip_list1 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ip_list2 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ip_list3 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ip_list4 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ip_list5 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ip_list6 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ip_list7 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ip_list8 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ip_list9 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dir_scan_addrs_list1 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; valid_addrs_list1 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; dir_scan_addrs_list2 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; valid_addrs_list2 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; gw2gw_communities_ids &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; tcpt_gws &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; svm_profiler &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; svm_range_gateways &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; svm_range_gateways_valid &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; svm_e2e_gwbw_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpncl_om2cookier &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpncl_cookier2om &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpncl_ccc_iphone_sessions &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpncl_ccc_sessions &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; vpncl_cpras_topology_policy_id &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sockstress_blocked &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sockstress_suspicious &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sockstress_local &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sockstress_src &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sam_L2_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sam_blocked_ips_v2 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sam_requests_v2 &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sam_uid &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sam_L2_src_dst_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; mrt_sync_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; closed_conns &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; fwarp_arpq_tbl &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; fwneighq_tbl &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; strmap_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; fwha_VPN_hash_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cpas_cookie_hash &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cpas_pmtu &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; h323_registration &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; rules_uid_new_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; uid2kbuf &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; tab_name_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sip_registration &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; fwx_cache &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; redirected_conns &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; h323_gk_pending_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; cphwd_vpndb &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; host_ip_addrs_all &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; excessive_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; scv_held_packets_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; conn_info &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; chain_log_unification_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; fwx_pending &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; scv_ps_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; scv_gw_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; string_dictionary_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sam_log &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sam_requests &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; sam_blocked_ips &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; spii_global_pset2kbuf_map &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; spii_multi_pset2kbuf_map &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; ws_protection_scheme_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; saved_kbuf_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; son_conns &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; parent_conn &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; connections &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; fwx_cntl_dyn_tab &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; h323_tracer_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; fwx_auth &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; host_ip_addrs &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; hold_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; frag_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; arp_table &#8212;&#8212;&#8211;<br />
&#8212;&#8212;&#8211; fwx_alloc &#8212;&#8212;&#8211;</div>
<p>Now round up of some useful for whatever reason tables you should know about.<br />
NOTE &#8211; When service is not loaded corresponding table isnt as well<br />
<span class="cmd"># fw tab  -t  http_av_scan_exclusion</span></p>
<div class="cmdout">localhost:<br />
 Table http_av_scan_exclusion not loaded: Invalid argument</div>
<p>Most of the time values in these tables are presented as integer or hex values , and almost always they contain IP addresses. Adding –f option to the command deciphers output a bit but not completely , so IP integer-to-decimal converter will be very handy.</p>
<p>To see local encryption domain of this gateway without entering SmartDashboard:<br />
<span class="cmd"># fw tab -f  -t  vpn_enc_domain</span></p>
<div class="cmdout">Using cptfmt<br />
localhost:<br />
Date: Apr 7, 2010<br />
 8:26:33        192.168.29.25>     : (+)====================================(+); Table_Name: vpn_enc_domain; : (+); Attributes: static, id 381; product: VPN-1 &#038; FireWall-1;<br /> <br />
8:26:33        192.168.29.25&gt;    : (+); First: 10.20.201.1; ,Last: 10.20.201.3; product: VPN-1 &#038; FireWall-1;<br />
8:26:33        192.168.29.25&gt;    : (+); First: 172.18.1.0; ,Last: 172.18.1.255; product: VPN-1 &#038; FireWall-1;<br />
8:26:33        192.168.29.25&gt;    : (+); First: 192.168.20.251; ,Last: 192.168.20.253; product: VPN-1 &#038; FireWall-1;<br />;8:26:33        192.168.29.25>    : (+); First: 192.168.21.0; ,Last: 192.168.21.255; product: VPN-1 &#038; FireWall-1;<br />
8:26:33        192.168.29.25&gt;    : (+); First: 192.168.22.11; ,Last: 192.168.22.12; product: VPN-1 &#038; FireWall-1;
 </div>
<p> Another command that gives the local encryption domain, on few firewalls I tried the output was the same , so  Don’t know what the difference<br />
<span class="cmd"># fw tab -f  -t  vpn_enc_domain_valid</span></p>
<div class="cmdout"> Using cptfmt<br />
localhost:<br />
Date: Apr 7, 2010<br />
 8:52:30        192.168.29.25&gt;     : (+)====================================(+); Table_Name: sr_enc_domain_valid; : (+); Attributes: static, id 380; product: VPN-1 &#038; FireWall-1;<br /> 8:52:30        192.168.29.25&gt;    : (+); First: 10.20.201.1; ,Last: 10.20.201.3; product: VPN-1 &#038; FireWall-1;<br /> 8:52:30        192.168.29.25&gt;    : (+); First: 172.18.1.0; ,Last: 172.18.1.255; product: VPN-1 &#038; FireWall-1;<br />
 8:52:30        192.168.29.25&gt;    : (+); First: 192.168.20.251; ,Last: 192.168.20.253; product: VPN-1 &#038; FireWall-1;<br /> 8:52:30        192.168.29.25&gt;    : (+); First: 192.168.21.0; ,Last: 192.168.21.255; product: VPN-1 &#038; FireWall-1;<br /> 8:52:30        192.168.29.25&gt;    : (+); First: 192.168.22.11; ,Last: 192.168.22.12; product: VPN-1 &#038; FireWall-1;</div>
<p>See encryption domain for Secure Remote users<br />
<span class="cmd"># fw tab -f  -t  sr_enc_domain_valid</span></p>
<div class="cmdout">Using cptfmt<br />
localhost:<br />
Date: Apr 7, 2010<br />
 8:52:30        192.168.29.25&gt;     : (+)====================================(+); Table_Name: sr_enc_domain_valid; : (+); Attributes: static, id 380; product: VPN-1 &#038; FireWall-1;</p>
<p> 8:52:30        192.168.29.25&gt;    : (+); First: 10.20.201.1; ,Last: 10.20.201.3; product: VPN-1 &#038; FireWall-1;<br />
 8:52:30        192.168.29.25&gt;    : (+); First: 172.18.1.0; ,Last: 172.18.1.255; product: VPN-1 &#038; FireWall-1;<br />
 8:52:30        192.168.29.25&gt;    : (+); First: 192.168.20.251; ,Last: 192.168.20.253; product: VPN-1 &#038; FireWall-1;<br />
 8:52:30        192.168.29.25&gt;    : (+); First: 192.168.21.0; ,Last: 192.168.21.255; product: VPN-1 &#038; FireWall-1;<br />
 8:52:30        192.168.29.25&gt;    : (+); First: 192.168.22.11; ,Last: 192.168.22.12; product: VPN-1 &#038; FireWall-1;
</p></div>
<p>To see SPI database entries of established VPN tunnels and its parameters<br />
 <span class="cmd"># fw tab -f  -t  inbound_SPI</span></p>
<div class="cmdout"> Using cptfmt<br />
localhost:<br />
Date: Apr 7, 2010<br />
 8:34:56        192.168.29.25&gt;     : (+)====================================(+); Table_Name: inbound_SPI; : (+); Attributes: dynamic, id 289, attributes: keep, sync, expires 3600, limit 40800, hashsize 65536, kbuf 1 3, free function f9b32640 0, post sync handler f9b22330; product: VPN-1 &#038; FireWall-1;</p>
<p> 8:34:56        192.168.29.25&gt;    : (+); SPI: d21c5e68; CPTFMT_sep: ;; Protocol: IPSEC_ESP_SA(2); ,Schema: IKE(3); ,me: 192.168.22.11; ,peer: 122.18.9.20; ,owner: 127.0.0.1; ,MyRange:First: 192.168.21.0; Last: 192.168.21.255; ,PeerRange:First: 192.168.214.0; PeerLast: 192.168.214.255; ,HWInitialized: NO; ,MSPI: 13; ,Host: 192.168.22.11; ,Peer: 122.18.9.20; Expires: 2149/3610; product: VPN-1 &#038; FireWall-1;</p></div>
<p>To see the active VPN peers with IKE phase up<br />
<span class="cmd"># fw tab -f  -t  IKE_peers</span></p>
<div class="cmdout">
Date: Apr 7, 2010<br />
 8:36:36        192.168.29.25&gt;     : (+)====================================(+); Table_Name: IKE_peers; : (+); Attributes: dynamic, id 333, attributes: keep, sync, expires  never, limit 25000, hashsize 512; product: VPN-1 &#038; FireWall-1;</p>
<p> 8:36:36        192.168.29.25&gt;    IkePeer: 212.13.12.128; : (+); Expires: 876861451/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 8:36:36        192.168.29.25&gt;    IkePeer: 212.13.12.129; : (+); Expires: 876861451/2147483647; product: VPN-1 &#038; FireWall-1;</p></div>
<p> Here you can see what port is used for NAT traversal<br />
<span class="cmd"># fw tab -f  -t  natt_port</span>
<div class="cmdout">
Date: Apr 7, 2010<br />
 8:37:34        192.168.29.25&gt;     : (+)====================================(+); Table_Name: natt_port; : (+); Attributes: dynamic, id 369, attributes: expires  never, limit 25000, hashsize 4; product: VPN-1 &#038; FireWall-1;</p>
<p> 8:37:34        192.168.29.25&gt;    Key: 00001194; Expires: 876861393/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 <strong>The value is in hex 0&#215;1194 = 4500 </strong></div>
<p> List table of Security Associations<br />
<span class="cmd"># fw tab -f  -t  IKE_SA_table</span></p>
<div class="cmdout">Date: Apr 7, 2010<br />
 8:41:47        192.168.29.25&gt;     : (+)====================================(+); Table_Name: IKE_SA_table; : (+); Attributes: dynamic, id 297, attributes: keep, sync, expires 3600, limit 40400, hashsize 65536, implies 296, kbuf 1, free function f9b22830 0, post sync handler f9b25d80; product: VPN-1 &#038; FireWall-1;</p>
<p> 8:41:47        192.168.29.25&gt;    : (+); ,CookieI: 1a4406adfa1e1b26; ,CookieR: a64bea22245f2ac2; CPTFMT_sep: ;; EncryptAlg: 0; ,HashAlg: 0; ,DH_Group: 0; ,AuthMethod: 1; ,Flags: 0; ,RenegotiationTime: 2046191617; Expires: 20089/86399; product: VPN-1 &#038; FireWall-1;</p></div>
<p>Pretty much the same data , number of peers</p>
<p><span class="cmd"># fw tab -f  -t  peers_count</span></p>
<div class="cmdout">Date: Apr 7, 2010<br />
 8:46:48        192.168.29.25&gt;     : (+)====================================(+); Table_Name: peers_count; : (+); Attributes: dynamic, id 332, attributes: keep, expires  never, limit 10200, hashsize 16384, kbuf 1; product: VPN-1 &#038; FireWall-1;<br />
 8:46:48        192.168.29.25&gt;    : (+); IPsec peer: 31.112.182.6; CPTFMT_sep: ;; ,Ref-count: 2; Expires: 876860840/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 8:46:48        192.168.29.25&gt;    : (+); IPsec peer: 122.18.9.20; CPTFMT_sep: ;; ,Ref-count: 1; Expires: 876860840/2147483647; product: VPN-1 &#038; FireWall-1;</div>
<p>List of hosts with which this firewall has currently open sessions (whatever they may be )<br />
<span class="cmd"># fw tab -f  -t  static_interface_resolve</span></p>
<div class="cmdout">
Date: Apr 7, 2010<br />
 8:55:59        192.168.29.25&gt;     : (+)====================================(+); Table_Name: static_interface_resolve; : (+); Attributes: static, id 387; product: VPN-1 &#038; FireWall-1;</p>
<p> 8:55:59        192.168.29.25&gt;    : (+); Peer_interface: 10.20.20.1; ,Peer_main_addr: 21.23.9.2; product: VPN-1 &#038; FireWall-1;<br />
 8:55:59        192.168.29.25&gt;    : (+); Peer_interface: 58.13.2.78; Peer_resolved_addr: 58.13.2.78; ,Peer_main_addr: 58.13.2.78; product: VPN-1 &#038; FireWall-1;</p></div>
<p>To list NAT rules numbers as appear in the SmartDashboard that have Any as destination and as source correspondingly<br />
 <span class="cmd"># fw tab -f  -t  NAT_dst_any_list</span></p>
<div class="cmdout">Date: Apr 7, 2010<br />
 9:01:13        192.168.29.25&gt;     : (+)====================================(+); Table_Name: NAT_dst_any_list; : (+); Attributes: static, id 434; product: VPN-1 &#038; FireWall-1;</p>
<p> 9:01:13        192.168.29.25&gt;    Key: 0000000a, 0000000a; product: VPN-1 &#038; FireWall-1; //Rule number 10<br />
 9:01:13        192.168.29.25&gt;    Key: 0000000c, 0000000c; product: VPN-1 &#038; FireWall-1;  //Rule number 12<br />
 9:01:13        192.168.29.25&gt;    Key: 0000000e, 0000000e; product: VPN-1 &#038; FireWall-1;</p></div>
<p> <span class="cmd"># fw tab -f  -t  NAT_src_any_list</span></p>
<div class="cmdout">Date: Apr 7, 2010<br />
 9:00:31        192.168.29.25&gt;     : (+)====================================(+); Table_Name: NAT_src_any_list; : (+); Attributes: static, id 433; product: VPN-1 &#038; FireWall-1;</p>
<p> 9:00:31        192.168.29.25&gt;    Key: 00000006, 00000006; product: VPN-1 &#038; FireWall-1;  // Rule number 6<br />
  9:00:31        192.168.29.25&gt;    Key: 00000007, 00000007; product: VPN-1 &#038; FireWall-1; // Rule number 7
 </p></div>
<p> List all NAT rules .<br />
Some explanation here . Here all IP addresses are in hexadecimal representation . To translate it to usual decimal one I translate (say using calc.exe) Hex -&gt; Integer , then using some Internet converter , Integer -&gt; decimal  . In () are my comments<br />
<span class="cmd"># fw tab -f  -t  NAT_rules</span></p>
<div class="cmdout">
Date: Apr 7, 2010<br />
 9:02:19        192.168.29.25&gt;     : (+)====================================(+); Table_Name: NAT_rules; : (+); Attributes: static, id 435; product: VPN-1 &#038; FireWall-1;</p>
<p> 9:02:19        192.168.29.25&gt;    Key: 00000001(Rule number); CPTFMT_sep: ;; Data: 00000000, 00000000, ff000001 (255.0.0.1) , BD8AFF3C (189.138.255.60 Original Src in Nat rule), BD8AFF3C, c0a8d1fd (192.168.209.253 Translated source IP), ff010202 (255.1.2.2), C0A81596 (192.168.21.150 Original packet destination) , C0A81596, C0A81596, 00000000, 00000000, 00000000, 00000000; product: VPN-1 &#038; FireWall-1;
 </p></div>
<p> List open connection to/from the firewall<br />
 <span class="cmd"># fw tab -f -t connections</span></p>
<div class="cmdout">
Date: Apr 7, 2010<br />
10:22:43        80.19.1.150&gt;     : (+)====================================(+); Table_Name: connections; : (+); Attributes: dynamic, id 8158, attributes: keep, sync, aggressive aging, kbuf 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31, expires 60, refresh, limit 75000, hashsize 262144, free function f9faf4e0 0, post sync handler f9fa3470; product: VPN-1 &#038; FireWall-1;</p>
<p>10:22:43        80.19.1.150&gt;    : &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;(+); Direction: 1; Source: 172.17.110.111; SPort: 1517; Dest: 210.48.77.30; DPort: 443; Protocol: tcp; CPTFMT_sep_1: -&gt;; Direction_1: 0; Source_1: 172.17.110.111; SPort_1: 1517; Dest_1: 210.48.77.30; DPort_1: 443; Protocol_1: tcp; FW_symval: 2; product: VPN-1 &#038; FireWall-1;</p></div>
<p>Something that has to do with IPS I guess<br />
<span class="cmd"># fw tab -f -t string_dictionary_table</span></p>
<div class="cmdout">
Date: Apr 7, 2010<br />
10:23:52        80.19.1.150&gt;     : (+)====================================(+); Table_Name: string_dictionary_table; : (+); Attributes: dynamic, id 8135, attributes: keep level 2, kbuf 1, expires  never, limit 32768, hashsize 4096; product: VPN-1 &#038; FireWall-1;<br />
10:23:52        80.19.1.150&gt;    Expires: 876858615/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 10:23:52        80.19.1.150&gt;    Expires: 876858615/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 10:23:52        80.19.1.150&gt;    Hash: dc17462d0fdcfdfd42c80679dbd63b4; ID: 3672; Data: Microsoft Windows search-ms protocol handler command execution (MS08-075); Expires: 876858615/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 10:23:52        80.19.1.150&gt;    Expires: 876858615/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 10:23:52        80.19.1.150&gt;    Expires: 876858615/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 10:23:52        80.19.1.150&gt;    Hash: e36d6da340f3ce9df3d02fd991b07765; ID: 822; Data: Command &#8216;%s&#8217;  is out of expected state &#8216;%s&#8217;; Expires: 876858615/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 10:23:52        80.19.1.150&gt;    Hash: c377d9acdbb7a8a3cd182b514df494d; ID: 657; Data: smtp_block_bin_enable; Expires: 876858615/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 10:23:52        80.19.1.150&gt;    Hash: 34bd42a272028c23476653dfcbac806d; ID: 648; Data: Out of bounds &#8211; an offset was given that references outside the packet; Expires: 876858615/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 10:23:52        80.19.1.150&gt;    Hash: b8d505cb64b542f15dcea55a93802fb; ID: 2681; Data: Cisco IOS IPv4 Packets Denial of Service; Expires: 876858615/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 10:23:52        80.19.1.150&gt;    Hash: 30f7c4e2db021c4977c2a92b48bb97ed; ID: 2241; Data: Invalid SIT field in SA payload header; Expires: 876858615/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 10:23:52        80.19.1.150&gt;    Hash: 29aa7499fca2d0cdc9f9d954c9a7b7d2; ID: 979; Data: Virtual defragmentation error: Memory failure; Expires: 876858615/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 10:23:52        80.19.1.150&gt;    Hash: de1c15759f50957189b1ba346bfc07fa; ID: 655; Data: Security violation; Expires: 876858615/2147483647; product: VPN-1 &#038; FireWall-1;<br />
 10:23:52        80.19.1.150&gt;    More_Entries: 7782; product: VPN-1 &#038; FireWall-1;
 </div>
]]></content:encoded>
			<wfw:commentRss>http://yurisk.info/2010/04/09/fw-ctl-or-checkpoint-tables-by-any-other-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
