<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Finding main IP of any managed gateway in Firewall and Security Management</title>
    <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/178016#M99219</link>
    <description>&lt;P&gt;Don't run it from the&lt;SPAN&gt;&amp;nbsp;SmartConsole's CLI. Login via SSH and go into expert mode. Then run the command.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Apr 2023 12:59:50 GMT</pubDate>
    <dc:creator>Danny</dc:creator>
    <dc:date>2023-04-13T12:59:50Z</dc:date>
    <item>
      <title>Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16443#M99201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am looking for a way to export main IP addresses of all managed gateways on R80.10 SMS, to use this list for some maintenance stuff (cprid_util, ...).&lt;/P&gt;&lt;P&gt;I found sk85621, which is only for MDM, and the command "mgmt_cli show simple-gateways details-level "full"", which shows me all IP addresses of each gateway.&lt;/P&gt;&lt;P&gt;Does anyone have a solution or hint how to create a simple list of the management IP address of each gateway?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2017 11:55:41 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16443#M99201</guid>
      <dc:creator>Bernhard_Sayer</dc:creator>
      <dc:date>2017-12-07T11:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16444#M99202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do this by specifying a JSON formatted output and then apply a JQ&amp;nbsp;command on the output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mgmt_cli -r true show simple-gateways details-level full --format json | $CPDIR/jq/jq -r '.objects[]["ipv4-address"]'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also redirect the output to a file:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mgmt_cli -r true show simple-gateways details-level full --format json | $CPDIR/jq/jq -r '.objects[]["ipv4-address"]' &amp;gt; iplist&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer to&amp;nbsp;&lt;A _jive_internal="true" href="https://community.checkpoint.com/thread/6229-how-to-parse-json-output-from-r80-management-api-with-jq"&gt;this&lt;/A&gt;&amp;nbsp;link for more info on JQ and API.&lt;/P&gt;&lt;P&gt;Robert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2017 13:51:35 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16444#M99202</guid>
      <dc:creator>Robert_Decker</dc:creator>
      <dc:date>2017-12-07T13:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16445#M99203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks Robert! Now I understand the Management API reference a little bit better ☺.&lt;/P&gt;&lt;P&gt;But I only get 23 of 110 gateway IP addresses. When I add “limit 500”, which seems to be maximum, I see 27 gateway IP addresses.&lt;/P&gt;&lt;P&gt;So it seems, that the output is limited to a number of lines ….&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2017 14:31:33 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16445#M99203</guid>
      <dc:creator>Bernhard_Sayer</dc:creator>
      <dc:date>2017-12-07T14:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16446#M99204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right, the default limit is 50, so you need to specify a manual upper limit if you need.&lt;/P&gt;&lt;P&gt;This command only returns simple-gateways, there may be non simple-gateways, and they are not returned.&lt;/P&gt;&lt;P&gt;Try the "show gateways-and-servers" command instead. It will return ALL gateways.&lt;/P&gt;&lt;P&gt;Robert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2017 15:27:05 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16446#M99204</guid>
      <dc:creator>Robert_Decker</dc:creator>
      <dc:date>2017-12-07T15:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16447#M99205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe not the right place to ask but does anyone know how to do it for R77.X versions?&lt;/P&gt;&lt;P&gt;The information seems to be retrievable via dbedit, but as fas a I can tell I have to go through multiple tables to&lt;/P&gt;&lt;P&gt;get the information.&lt;/P&gt;&lt;P&gt;Querying all the firewalls and then filter for SIC (id_value:) gives the main IP in some cases but not in all ?!?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/Mikael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2017 15:08:58 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16447#M99205</guid>
      <dc:creator>MikaelJohnsson</dc:creator>
      <dc:date>2017-12-08T15:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16448#M99206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are right - "show gateways-and-servers" shows all gateways.&lt;/P&gt;&lt;P&gt;But unfortunately this command shows also the cluster objects. Is it possible to filter out these cluster objects, so that i get only real gateway IP addresses?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bernhard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2017 21:20:27 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16448#M99206</guid>
      <dc:creator>Bernhard_Sayer</dc:creator>
      <dc:date>2017-12-08T21:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16449#M99207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found this way working:&amp;nbsp;&lt;/P&gt;&lt;P&gt;mgmt_cli -r true show gateways-and-servers limit 500 offset 0 details-level full --format json --root true | $CPDIR/jq/jq -r '.objects[]|[.["type"], .["ipv4-address"]]| @csv' | egrep "CpmiClusterMember|simple-gateway" | cut -d "," -f 2 | tr -d '"'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to filter like grep with json?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bernhard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2017 22:06:56 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16449#M99207</guid>
      <dc:creator>Bernhard_Sayer</dc:creator>
      <dc:date>2017-12-08T22:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16450#M99208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not just get the object IP?&lt;/P&gt;&lt;P&gt;That's what the manager actually uses to communicate to the gateway.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Dec 2017 07:05:54 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16450#M99208</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2017-12-09T07:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16451#M99209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure, but how? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In the objects_5_0.C (and via the output of dbedit) there are multiple "IP address" statements, both what seems to be the Main IP but also under the "interfaces-branch". So a grep for "IP address" will return all those. I haven't seen an entry for "Main IP" or some other unique entry besides the value in the "SIC-branch"... Which isn't always there...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Mikael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I'm replying via my phone so the exact name of the IP-field might not be correct)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Dec 2017 20:21:58 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16451#M99209</guid>
      <dc:creator>MikaelJohnsson</dc:creator>
      <dc:date>2017-12-09T20:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16452#M99210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, AFAIK, but you can use the select/contains/not combinations on the output. For Example -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;| select(.values[] | contains(\"cluster\") | not)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Dec 2017 21:29:47 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16452#M99210</guid>
      <dc:creator>Robert_Decker</dc:creator>
      <dc:date>2017-12-09T21:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16453#M99211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here you go, the fully working command -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mgmt_cli -r true show gateways-and-servers details-level full --format json | $CPDIR/jq/jq -r '.objects[] | select(.type | contains("Cluster") | not) | ."ipv4-address"'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy,&lt;/P&gt;&lt;P&gt;Robert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2017 09:45:43 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16453#M99211</guid>
      <dc:creator>Robert_Decker</dc:creator>
      <dc:date>2017-12-11T09:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16454#M99212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But this command displays management server, log server as well as interoperable devices. To catch only managed gateways, only "CpmiClusterMember" and "simple-gateway" (maybe "CpmiSofawareGateway" for embedded appliances) have to filter. Is it possible to use "contains" with OR?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bernhard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2017 06:28:18 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16454#M99212</guid>
      <dc:creator>Bernhard_Sayer</dc:creator>
      <dc:date>2017-12-18T06:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16455#M99213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, sorry for the late reply, I was on vacation.&lt;/P&gt;&lt;P&gt;You can use &lt;SPAN style="text-decoration: underline;"&gt;multiple&lt;/SPAN&gt; elements inside &lt;STRONG&gt;contains&lt;/STRONG&gt; statement -&amp;nbsp;&lt;/P&gt;&lt;P&gt;contains(["simple", "cluster"])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2017 08:26:47 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16455#M99213</guid>
      <dc:creator>Robert_Decker</dc:creator>
      <dc:date>2017-12-28T08:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16456#M99214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;works - many thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2017 09:31:59 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16456#M99214</guid>
      <dc:creator>Bernhard_Sayer</dc:creator>
      <dc:date>2017-12-28T09:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16457#M99215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's the main object IP...the one identified by ipaddr (not listed in the interfaces branch).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2017 18:33:18 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16457#M99215</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2017-12-28T18:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16458#M99216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would upgrade my MGMT to R80.10 for this purpose alone - to use the better API - but maybe that’s just me &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://community.checkpoint.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;either way if you plan to upgrade at some point to R80.10, this R77 script’s shelf life won’t be too long...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2017 19:07:07 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16458#M99216</guid>
      <dc:creator>Tomer_Sole</dc:creator>
      <dc:date>2017-12-28T19:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16459#M99217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the older versions and even in R80.10 cpmiquerybin tool (&lt;A class="link-titled" href="http://www.cpwiki.net/index.php/cpmiquerybin" title="http://www.cpwiki.net/index.php/cpmiquerybin"&gt;cpwiki.net)&lt;/A&gt; might be used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following query to returns firewalls and cluster members:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier,monospace;"&gt;cpmiquerybin attr "" network_objects "(type='cluster_member') | (type='gateway') &amp;amp; (location='internal')" -a __name__,ipaddr&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should return&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier,monospace;"&gt;object1 IP&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier,monospace;"&gt;object2 IP&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a Multi-Domain Server either run this query in each CMA or use the next query in the MDS context&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier,monospace;"&gt;cpmiquerybin attr "mdsdb" network_objects "(type='gateway') | (type='cluster_member')" -a __name__,ipaddr&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some awk or sed is necessary to get desired output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2018 10:00:45 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/16459#M99217</guid>
      <dc:creator>Olavi_Lentso</dc:creator>
      <dc:date>2018-03-19T10:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/178013#M99218</link>
      <description>&lt;P&gt;Hello, i'm having this same issue, i've tried to run this command in the checkpoint command line, but when i do i the the error 'The flag "-r" is not supported within SmartConsole's CLI window.' we are using checkpoint r80.40. Do you know where I'm going wrong?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2023 12:31:20 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/178013#M99218</guid>
      <dc:creator>Edward_Rule</dc:creator>
      <dc:date>2023-04-13T12:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: Finding main IP of any managed gateway</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/178016#M99219</link>
      <description>&lt;P&gt;Don't run it from the&lt;SPAN&gt;&amp;nbsp;SmartConsole's CLI. Login via SSH and go into expert mode. Then run the command.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2023 12:59:50 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Finding-main-IP-of-any-managed-gateway/m-p/178016#M99219</guid>
      <dc:creator>Danny</dc:creator>
      <dc:date>2023-04-13T12:59:50Z</dc:date>
    </item>
  </channel>
</rss>

