Link to home
Start Free TrialLog in
Avatar of Hashim Nangarhari
Hashim NangarhariFlag for Saudi Arabia

asked on

F5 APM Time access

Greetings,

I am using F5 APM to grant VPN access, I wonder if there is a method to configure time based ACL in F5 APM
Avatar of btan
btan

the closet is to do it via the visual policy editor but have to check on the supported F5 version 

Using our example to deny access on Saturdays and Sundays, you would enter the following:

set time [clock format [clock seconds]];
set access 0;
if { $time contains "Sun" || $time contains "Sat" } {
     set access 1;
};
return $access; 
https://support.f5.com/csp/article/K8726
Avatar of Hashim Nangarhari

ASKER

thank you for your feedback but the article describe controlling access based on access policy as a whole
I need on user basis 
ASKER CERTIFIED SOLUTION
Avatar of btan
btan

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial