Forum Discussion
Lingaraj_55273
Nimbostratus
Feb 03, 2013Limiting the TCP client connection to VIP on Time base
Hi All,
I require your help to write the iRule for limiting the client connection based to VIP on time base.
if any one knows or already written kindly share your inputs to ...
Kevin_Stewart
Employee
Feb 04, 2013Not sure if you mean based on client time zone or time of day. But if the latter, here's a little code that checks if a request is being made before or after a predefined set of times:
when RULE_INIT {
set static::not_before_time "10am today"
set static::not_after_time "5pm today"
}
when HTTP_REQUEST {
if { ( [expr [clock seconds] < [clock scan $static::not_before_time]] ) or ( [expr [clock seconds] > [clock scan $static::not_after_time]] ) } {
HTTP::respond 200 content "After hours - access disabled" "Connection" "Close"
}
}
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects