<?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: license count remote access (not MOB) in SASE and Remote Access</title>
    <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78781#M11162</link>
    <description>The official way EndPointSecurityVPN was licensed was by Installed client.&lt;BR /&gt;The only check that was done was the number of connected clients, when a client disconnects that slot will be freed again for another client.&lt;BR /&gt;</description>
    <pubDate>Thu, 19 Mar 2020 11:53:10 GMT</pubDate>
    <dc:creator>Maarten_Sjouw</dc:creator>
    <dc:date>2020-03-19T11:53:10Z</dc:date>
    <item>
      <title>license count remote access (not MOB)</title>
      <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78759#M11161</link>
      <description>&lt;P&gt;Hello CheckMates,&lt;/P&gt;
&lt;P&gt;is there a way to check the available and used licenses of EndPointSecurityVPN connected to the VPN blade not MOB.&lt;/P&gt;
&lt;P&gt;For the MOB this is easy with "cvpnd_admin license all".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With "&lt;EM&gt;fw tab -t userc_users -s" I can count all currently&amp;nbsp; connected users, does this mean if there is a value of 100. 100 licenses are used ? If one user&amp;nbsp;logged out one license is freed and available for another user&amp;nbsp;immediately?&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Wolfgang&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2020 08:27:18 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78759#M11161</guid>
      <dc:creator>Wolfgang</dc:creator>
      <dc:date>2020-03-19T08:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: license count remote access (not MOB)</title>
      <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78781#M11162</link>
      <description>The official way EndPointSecurityVPN was licensed was by Installed client.&lt;BR /&gt;The only check that was done was the number of connected clients, when a client disconnects that slot will be freed again for another client.&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Mar 2020 11:53:10 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78781#M11162</guid>
      <dc:creator>Maarten_Sjouw</dc:creator>
      <dc:date>2020-03-19T11:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: license count remote access (not MOB)</title>
      <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78783#M11163</link>
      <description>I'm working on a script to show that information at the moment, here is a raw draft:&lt;BR /&gt;&lt;BR /&gt;mob_clients=$(cvpnd_admin license all | grep "Total used" | uniq | awk '{ print $5 }')&lt;BR /&gt;echo "MOB Clients: $mob_clients"&lt;BR /&gt;overall_clients=$(fw tab -t om_assigned_ips -s | grep localhost | awk '{ print $4}')&lt;BR /&gt;echo "Overall Clients: $overall_clients"&lt;BR /&gt;endpoint_security_clients=`expr $overall_clients - $mob_clients`&lt;BR /&gt;echo "Endpoint Security VPN Clients: " $endpoint_security_clients&lt;BR /&gt;&lt;BR /&gt;You could change the script and get the output value via snmp by using the info from sk90860</description>
      <pubDate>Thu, 19 Mar 2020 12:03:25 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78783#M11163</guid>
      <dc:creator>Benedikt_Weissl</dc:creator>
      <dc:date>2020-03-19T12:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: license count remote access (not MOB)</title>
      <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78786#M11164</link>
      <description>You could use cprid_util and collect that info to the management server, this is how I currently collect the information on an MDS:&lt;BR /&gt;echo "Customer"&lt;BR /&gt;mdsenv DMS&lt;BR /&gt;cprid_util -server 1.2.10.10 -verbose rexec -rcmd  bash -c "fw tab -t userc_users -s"&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Mar 2020 12:27:02 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78786#M11164</guid>
      <dc:creator>Maarten_Sjouw</dc:creator>
      <dc:date>2020-03-19T12:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: license count remote access (not MOB)</title>
      <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78788#M11165</link>
      <description>&lt;P&gt;It is not so hard - this is taken from my post&amp;nbsp;&lt;A href="https://community.checkpoint.com/t5/Remote-Access-Solutions/Remote-Access-Users-license-count/m-p/39181?search-action-id=13623814555&amp;amp;search-result-uid=39181" target="_blank"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Remote Access Users license + count &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The "old" RA VPN client licensing worked by counting client IPs (called "seats", CLI "&lt;EM&gt;dtps lic&lt;/EM&gt;" on policy server), and the used licenses count showed the number of clients that did connect during the last 30 days. This is different with MAB licenses, they are defined as the number of concurrent clients; MAB even has five grace clients, so the maximum number of concurrent clients is the number of licenses plus five.&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;From &lt;EM&gt;&lt;A href="https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_doGoviewsolutiondetails=&amp;amp;solutionid=sk39034&amp;amp;partition=General&amp;amp;product=IPSec" target="_blank" rel="nofollow noopener noreferrer"&gt;sk39034: How to check the number of currently connected Remote Access users &lt;/A&gt;&lt;/EM&gt;and &lt;EM&gt;&lt;A href="https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_doGoviewsolutiondetails=&amp;amp;solutionid=sk14496&amp;amp;partition=General&amp;amp;product=IPSec" target="_blank" rel="nofollow noopener noreferrer"&gt;sk14496: How to check the names of remote access users that have sent traffic through the Security G...&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;To see the number of currently connected Remote Access users, run this command (in Expert mode) on the VPN Security Gateway:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;[Expert@HostName]# fw tab -t userc_users -s&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;To see the username of each "connected" remote access user (in the last 15 minutes), run this command (in Expert mode) on VPN Security Gateway:&lt;/P&gt;
&lt;P&gt;[Expert@HostName]# fw tab -t userc_rules -f&lt;/P&gt;
&lt;P&gt;You can also run the following command on the gateway, in order to see the number of OM IPs which are currently assigned by the gateway:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;# fw tab -t om_assigned_ips -s&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;HOST NAME ID #VALS #PEAK #SLINKS localhost om_assigned_ips 372 1 1 0&lt;/P&gt;
&lt;P&gt;The above output (#VALS=1 ) means currently one client is assigned an OM IP. This includes SNX users with OM IPs as well, who take up from a different license (MAB). In order to find out how many there are of those and subtract them to leave only IPsec VPN clients (i.e. SecureClient, Endpoint Security VPN, Endpoint Connect), check the following table:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;# fw tab -t sslt_om_ip_params -s&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;HOST NAME ID #VALS #PEAK #SLINKS localhost sslt_om_ip_params 372 1 1 0&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2020 12:35:36 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78788#M11165</guid>
      <dc:creator>G_W_Albrecht</dc:creator>
      <dc:date>2020-03-19T12:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: license count remote access (not MOB)</title>
      <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78793#M11166</link>
      <description>&lt;H2&gt;&lt;A href="https://community.checkpoint.com/t5/Enterprise-Appliances-and-Gaia/One-liner-for-Remote-Access-VPN-Statistics/m-p/79047" target="_self"&gt;One-liner for Remote Access VPN Statistics&lt;/A&gt;&lt;/H2&gt;</description>
      <pubDate>Fri, 20 Mar 2020 21:00:36 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78793#M11166</guid>
      <dc:creator>Danny</dc:creator>
      <dc:date>2020-03-20T21:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: lice Secure Client License Overview Oneliner (Covid 19)nse count remote access (not MOB)</title>
      <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78852#M11167</link>
      <description>&lt;P&gt;&lt;SPAN&gt;In the past days I have been working on a CLI script that can display all Secure Client license information centrally. This script creates a new command on the management server to read the Secure Client licenses. It displays all Secure Client licenses in total (sum). Furthermore, it can read out the currently used licenses on the gateway. If a connection to the gateway can be established, the following values are read out: Currently used Secure Client licenses and the maximum used Secure Client licenses.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you execute the script via "copy and past" on the management server, a new CLI command "sclic" is created. Afterwards you can use this command to display all licenses in an overview. Please note that the execution of the new command may take a few seconds. This is a normal behaviour.&lt;BR /&gt;&lt;BR /&gt;Now for following:&lt;BR /&gt;- Secure Client licenses&lt;BR /&gt;- Mobile Access Portal licenses&lt;BR /&gt;- SSLVPN licenses&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;More read here:&amp;nbsp;&lt;A href="https://community.checkpoint.com/t5/General-Topics/R80-x-Secure-Client-License-Counter-Overview-replaces-quot-dtps/m-p/78974#M16069" target="_self"&gt;R80.x - Mobile User License Tool - replaces "dtps lic"&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Here an example:&lt;BR /&gt;#&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#FF0000"&gt;sclic 10.0.0.1&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Now all license parameters for Secure Client are displayed:&lt;/P&gt;
&lt;P&gt;&lt;A id="link_39fb4df6698768" class="lia-link-navigation lia-component-common-widget-link" href="https://community.checkpoint.com/t5/General-Topics/Secure-Client-License-Overview-Oneliner-Covid-19/m-p/78848#M16054" target="_blank" rel="noopener"&gt;&lt;/A&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SC_Bild7.JPG" style="width: 845px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/4989iB9BA04AF308EC974/image-size/large?v=v2&amp;amp;px=999" role="button" title="SC_Bild7.JPG" alt="SC_Bild7.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Mar 2020 19:26:56 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/SASE-and-Remote-Access/license-count-remote-access-not-MOB/m-p/78852#M11167</guid>
      <dc:creator>HeikoAnkenbrand</dc:creator>
      <dc:date>2020-03-21T19:26:56Z</dc:date>
    </item>
  </channel>
</rss>

