iFile list - F5 hosting files
iFile list is really a cool feature which allows F5 to host files via iRule.
1) Upload your static resources - e.g. file named wpad.dat
System -> File Management -> iFile List -> Import
Choose your file and provide a label (e.g. wpad-file)
Make sure free disk is available.
2) Create an iRule
Local Traffic -> iRules -> iRule List
when HTTP_REQUEST {
if { [HTTP::uri] eq "/wpad.dat" } {
HTTP::respond 200 content [ifile get wpad-file]
}
else { discard }
}
3) Associate iRule with virtual server
4) Access the file
http://virtual-server-ip/wpad.dat
1) Upload your static resources - e.g. file named wpad.dat
System -> File Management -> iFile List -> Import
Choose your file and provide a label (e.g. wpad-file)
Make sure free disk is available.
2) Create an iRule
Local Traffic -> iRules -> iRule List
when HTTP_REQUEST {
if { [HTTP::uri] eq "/wpad.dat" } {
HTTP::respond 200 content [ifile get wpad-file]
}
else { discard }
}
3) Associate iRule with virtual server
4) Access the file
http://virtual-server-ip/wpad.dat
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home