Forum Discussion
Lingaraj_55273
Nimbostratus
Feb 03, 2013iRule for limiting the client connection based 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 me for ...
What_Lies_Bene1
Cirrostratus
Feb 11, 2013This is from Kevin Stewart and this thread: https://devcentral.f5.com/community/group/aft/2165776/asg/502273814. Hope it helps.
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