<?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: How to limit concurrent GlobalProtect connections per user in General Topics</title>
    <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240912#M68997</link>
    <description>&lt;P&gt;Simply try it in the browser with this url (wher you replace the hostname, username and password to actual values):&lt;/P&gt;&lt;PRE&gt;https://HOSTNAME/api/?type=keygen&amp;amp;user=USERNAME&amp;amp;password=PASSWORD&lt;/PRE&gt;</description>
    <pubDate>Thu, 22 Nov 2018 19:31:30 GMT</pubDate>
    <dc:creator>Remo</dc:creator>
    <dc:date>2018-11-22T19:31:30Z</dc:date>
    <item>
      <title>How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/202128#M59665</link>
      <description>&lt;P&gt;Hi communit&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So far it isn't possible to limit the concurrent GlobalProtect connections per user directly in PAN-OS. There is a feature request #4603 for which you can vote and wait/hope that this will be implemented.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you need a solution (workaround) right now, once more the PAN-OS API is your friend. Because we (like probably some or a lot og admins here) had the problem, that we had users, specially from external suppliers, who shared their accounts and so they logged in multiple times. So I wrote this little powershell script. The script needs to be configured as scheduled task to run every minute for example. Every time the script runs it checks the connected Global Protect users and then kicks out users that are logged in multiple times. If you want, you can also specify the number of allowed concurrent logins per user with the variable $maxlogins. This way you're able to kick out users that are logged in more than 3 times for example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12;

$apikey = "INSERT_API_KEY_HERE"
$firewall = "FIREWALL_HOSTNAME_OR_IP"
$gpgateway = "GLOBAL_PROTECT_GATEWAY_NAME"
$maxlogins = 1

Function callApiOp ($firewall, $param) {
    $request = New-Object System.Net.WebClient
    $apiurl = "https://" + $firewall + "/api/?key=" + $apikey + "&amp;amp;type=op&amp;amp;cmd=" + $param
    return [xml]$request.DownloadString($apiurl)
}

$param = "&amp;lt;show&amp;gt;&amp;lt;global-protect-gateway&amp;gt;&amp;lt;current-user&amp;gt;&amp;lt;gateway&amp;gt;" + $gpgateway + "&amp;lt;/gateway&amp;gt;&amp;lt;/current-user&amp;gt;&amp;lt;/global-protect-gateway&amp;gt;&amp;lt;/show&amp;gt;"
$logins = callApiOp $firewall $param
$logins = $logins.response.result.entry | sort 'login-time-utc'
$loginevents = @{}
foreach ($event in $logins) {
    $username = $event.username
    if ($loginevents.ContainsKey($username)) {
        $loginevents.($username) = $loginevents.($username) + 1

    }
    else {
        $loginevents.Add($username,1)
    }
}
foreach ($user in $loginevents.GetEnumerator()) {
    $forcelogout = $logins | Where-Object {$_.username -eq $user.key}
    $userstologout = $user.Value - $maxlogins
    for ($i=0;$i -lt $userstologout; $i++) {
        if ($forcelogout.count -eq $null) {
            $domain = $forcelogout.domain
            $computer = $forcelogout.computer
            $username = $forcelogout.username
        }
        else {
            $domain = $forcelogout[$i].domain
            $computer = $forcelogout[$i].computer
            $username = $forcelogout[$i].username
        }
        $logoutparam = "&amp;lt;request&amp;gt;&amp;lt;global-protect-gateway&amp;gt;&amp;lt;client-logout&amp;gt;&amp;lt;gateway&amp;gt;" + $gpgateway + "-N&amp;lt;/gateway&amp;gt;&amp;lt;reason&amp;gt;force-logout&amp;lt;/reason&amp;gt;&amp;lt;user&amp;gt;" + $username + "&amp;lt;/user&amp;gt;&amp;lt;computer&amp;gt;" + $computer + "&amp;lt;/computer&amp;gt;"
        if ($domain -ne "") {
            $logoutparam += "&amp;lt;domain&amp;gt;" + $domain + "&amp;lt;/domain&amp;gt;"
        }
        $logoutparam += "&amp;lt;/client-logout&amp;gt;&amp;lt;/global-protect-gateway&amp;gt;&amp;lt;/request&amp;gt;"

        $status = callApiOp $firewall $logoutparam
        if ($status.response.result.response.status -eq "success") {
            write-host "Logged out user $username from computer $computer"
        }
        else {
            $msg = "Could not logout " + $username + " from computer " + $computer + " because of the following error: " + $status.response.result.response.error
            Write-Host $msg
        }

    }
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe this helps at least some of you, or at least gives another idea for the almost countless use cases of the PAN-OS API.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Feedback is appreciated &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Remo&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 May 2021 21:13:14 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/202128#M59665</guid>
      <dc:creator>Remo</dc:creator>
      <dc:date>2021-05-17T21:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240792#M68980</link>
      <description>&lt;P&gt;Hey Remo:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where should this run, exactly?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 23:44:40 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240792#M68980</guid>
      <dc:creator>bernardo.hernandez</dc:creator>
      <dc:date>2018-11-21T23:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240904#M68995</link>
      <description>&lt;P&gt;Hi &lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/67568"&gt;@bernardo.hernandez&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On a server/computer that has acces to the API of the firewall where you have globalprotect configured.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Remo&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 19:17:07 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240904#M68995</guid>
      <dc:creator>Remo</dc:creator>
      <dc:date>2018-11-22T19:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240911#M68996</link>
      <description>&lt;P&gt;Thanks Remo&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm having a lot of trouble trying to get my API key. I've tried sending a GET request to the FW per this article&amp;nbsp;&lt;A href="https://www.paloaltonetworks.com/documentation/80/pan-os/xml-api/get-started-with-the-pan-os-xml-api/get-your-api-key" target="_blank"&gt;https://www.paloaltonetworks.com/documentation/80/pan-os/xml-api/get-started-with-the-pan-os-xml-api/get-your-api-key&lt;/A&gt; using powershell, however I've had no luck yet.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any pointers?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 19:22:33 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240911#M68996</guid>
      <dc:creator>bernardo.hernandez</dc:creator>
      <dc:date>2018-11-22T19:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240912#M68997</link>
      <description>&lt;P&gt;Simply try it in the browser with this url (wher you replace the hostname, username and password to actual values):&lt;/P&gt;&lt;PRE&gt;https://HOSTNAME/api/?type=keygen&amp;amp;user=USERNAME&amp;amp;password=PASSWORD&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Nov 2018 19:31:30 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240912#M68997</guid>
      <dc:creator>Remo</dc:creator>
      <dc:date>2018-11-22T19:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240916#M69000</link>
      <description>&lt;P&gt;Great. I've got my API key.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had to change the execution policy for the currentuser on my machine so that I could run the script however I get the following errors. One per every one of the first $variables on the script, meaning $apikey, and $firewall.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"The term $variable is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name , or if a path was included, verify that the path is correct and try again."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 19:52:09 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240916#M69000</guid>
      <dc:creator>bernardo.hernandez</dc:creator>
      <dc:date>2018-11-22T19:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240918#M69001</link>
      <description>&lt;P&gt;Hmn ... you copied the script exactly how I posted it in this topic and you only replaces the values between the "" ?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 20:00:45 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240918#M69001</guid>
      <dc:creator>Remo</dc:creator>
      <dc:date>2018-11-22T20:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240922#M69005</link>
      <description>&lt;P&gt;Yes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Something like this:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$firewall = 192.168.0.1&lt;/P&gt;&lt;P&gt;$gpgateway =GP_test&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 20:17:31 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240922#M69005</guid>
      <dc:creator>bernardo.hernandez</dc:creator>
      <dc:date>2018-11-22T20:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240923#M69006</link>
      <description>&lt;P&gt;You need to enclose the values of variables in "". So if you do it like this it should work:&lt;/P&gt;&lt;PRE&gt;$firewall = "192.168.0.1"
$gpgateway = "GP_test"&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Nov 2018 20:20:54 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240923#M69006</guid>
      <dc:creator>Remo</dc:creator>
      <dc:date>2018-11-22T20:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240925#M69007</link>
      <description>&lt;P&gt;All right. I'm getting there...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just one more hiccup&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hiccup.PNG" style="width: 800px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/17633iF2A0B6B2EF35E12D/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="hiccup.PNG" alt="hiccup.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 20:27:22 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240925#M69007</guid>
      <dc:creator>bernardo.hernandez</dc:creator>
      <dc:date>2018-11-22T20:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240926#M69008</link>
      <description>&lt;P&gt;You probably use a self signed cert on the firewall right?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this to disable certificate checks (add it as second line of the script):&lt;/P&gt;&lt;PRE&gt;[System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true}&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Nov 2018 20:51:45 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240926#M69008</guid>
      <dc:creator>Remo</dc:creator>
      <dc:date>2018-11-22T20:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240928#M69009</link>
      <description>&lt;P&gt;Cool!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It does run. Now, I'm not sure what output should I expect.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="response.PNG" style="width: 182px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/17634i1BF9E194205CEA02/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="response.PNG" alt="response.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 21:01:25 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240928#M69009</guid>
      <dc:creator>bernardo.hernandez</dc:creator>
      <dc:date>2018-11-22T21:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240931#M69012</link>
      <description>&lt;P&gt;So far the script does not really show an output yet. I will add a new line to script that will show which users were logged out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 21:42:31 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240931#M69012</guid>
      <dc:creator>Remo</dc:creator>
      <dc:date>2018-11-22T21:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240942#M69015</link>
      <description>&lt;P&gt;Awesome!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking forward to it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for sharing and taking the time to walk me thru it all. I appreciate it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 22:53:30 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240942#M69015</guid>
      <dc:creator>bernardo.hernandez</dc:creator>
      <dc:date>2018-11-22T22:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240943#M69016</link>
      <description>&lt;P&gt;Hi &lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/67568"&gt;@bernardo.hernandez&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The script should now show you the users and computers where the global protect connection was terminated.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 23:34:56 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240943#M69016</guid>
      <dc:creator>Remo</dc:creator>
      <dc:date>2018-11-22T23:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240945#M69018</link>
      <description>&lt;P&gt;Nice!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can see the user and computer names now.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It doesn't seem to disconnect them tho, but at least I can now know who has multiple sessions and disconnect them manually.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 00:26:15 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240945#M69018</guid>
      <dc:creator>bernardo.hernandez</dc:creator>
      <dc:date>2018-11-23T00:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240946#M69019</link>
      <description>&lt;P&gt;What PAN-OS Version do you use?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 00:29:27 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240946#M69019</guid>
      <dc:creator>Remo</dc:creator>
      <dc:date>2018-11-23T00:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240947#M69020</link>
      <description>&lt;P&gt;8.0.9&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 00:39:22 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240947#M69020</guid>
      <dc:creator>bernardo.hernandez</dc:creator>
      <dc:date>2018-11-23T00:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240948#M69021</link>
      <description>&lt;P&gt;I'll check that again ... I think thats a task you don't want to do manually &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 00:44:30 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240948#M69021</guid>
      <dc:creator>Remo</dc:creator>
      <dc:date>2018-11-23T00:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit concurrent GlobalProtect connections per user</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240950#M69022</link>
      <description>&lt;P&gt;Absolutely!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's the hard knock life for us,&amp;nbsp; sysadmins!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sysadmin.PNG" style="width: 442px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/17635i347517B5EF1A9233/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="sysadmin.PNG" alt="sysadmin.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 00:51:25 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/how-to-limit-concurrent-globalprotect-connections-per-user/m-p/240950#M69022</guid>
      <dc:creator>bernardo.hernandez</dc:creator>
      <dc:date>2018-11-23T00:51:25Z</dc:date>
    </item>
  </channel>
</rss>

