endpoint inspection
3 Topics[Workaound] User required to manually start EPI and VPN in browsers
After upgrading to version 16.1.4 the users need to manually start the End Point Inspector and the Web Initiated VPN by clicking on a "Start" button. This is describe in this KB. I created a user-common.js that will automatically click on the start button for the user. However, please note that this workround works as of 3rd of November 2023, but might stop working in the future in different browsers. In order to activate the workaround you need to have an Access Policy of the Moden type. Then go to Customizations -> Advanced -> Acces Profiles -> <Your Access Profile> -> Common Add the followinf to the file user-common.js define(["require", "exports", "apmui"], function (require, exports, apmui_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var app = apmui_1.App.get(); app.subscribe(apmui_1.EventType.EPS_CHECK_PROGRESS, function (_, store) { var btns = document.getElementsByClassName("apmui-button"); if (btns.length == 0) { console.log("Failed to find button..."); return; } btns[0].click(); }); app.subscribe(apmui_1.EventType.DIALOG_OPEN, function (_, store) { setTimeout(function () { var dialog = document.getElementById("sna_auto_start_not_supported"); if (dialog == null) { console.log("Didn't find the right dialog"); return; } var btns = dialog.getElementsByClassName("apmui-button"); if (btns.length == 0) { console.log("Didn't find the start button"); return; } btns[0].click(); }, 100); }); }); If you have a better solution to this, please let me know. This was just what I came up with when asked by customers that the new "Start" button had created confusion among their users.Solved1.3KViews5likes3CommentsMissing Endpoint-Security (Client side) tab in APM
Hi, Somehow I'm missing the tab in APM. I'm running a Lab-License, but also tried with a Eval-License - in both cases, I can't add any features like AV check or similar into my APM. Is there something else necessary? Any package or similar that needs to be uploaded to F5 to enable the checks? Or do I need to provision any additional modules (curr. LTM/ASM/APM) Running Version 12.1 Thanks in advance!219Views0likes1CommentAPM Client side checks too slow?
Hi, I am implementing client side checking using APM (im running 11.3 HF6) and when testing with IE7 or Chrome 31 it takes at least 90 seconds to run. The checks I am running are "Windows Info" (looking for XP SP3 or Vista currently) and Windows Process Check. I gave up on the Anti Virus check as this took an additional 90 seconds or so to run so have instead used the Process Check to check the anti virus we have rolled out is running (I know thats not an amazing idea and would rather use the Anti Virus check). I do not believe the checks I am doing are slowing things down though as 90% of the time is spent in a "Checking Client" state. After that only a few seconds are spent on "Collecting Windows Information" then my APM logon page is presented. I have installed "F5 networks plugin host" for Chrome and Active X is allowed to run on IE. running wireshark on the test machine reveals that no network traffic is present during this long 90 second pause so I know its not trying to download anything. I am running Windows XP SP3 and McAfee Enterprise on my test laptop but also tried at home last night with IE8 and Chrome 31 on a Vista laptop with Antivir and zonealarm firewall running with the same result (and I had the process check turned off at the time too so it was just checking to see that I was running Vista). I guess I would just like to know if this delay is expected or not. We are migrating away from a Citrix solution for remote access and Citrix EPA runs the same checks in about 3 seconds so we would really like the same performance! I tried downloading and installing the edge client from the connectivity profile page ensuring "Endpoint Security for Windows" was ticked but I do not see this launching during the checks (even after a reboot). Thank you in advance to anyone who can assist with this please. It would be very much appreciated! Apologies if I have missed something obvious I have a very tight schedule to get APM up and running and am very much learning as I go!387Views0likes2Comments