Questions tagged [irule]

21 questions
0
votes
1 answer

How to implements these mime types in F5 - irules

ForceType application/vnd.ms-powerpoint Header set Content-Disposition attachment ForceType…
Mr.T
  • 33
  • 6
0
votes
1 answer

What does these F5 iRules mean?

I have no knowledge of F5 and trying to read these rules. If some one can help me understand them. Following rules is reading HTTP request and (defining variable INTRSSN?) getting a node and saving it in a persistence table. when HTTP_REQUEST { if…
Tahir
  • 3,344
  • 14
  • 51
  • 69
0
votes
2 answers

f5 LTM irule - can a pool name be generated in an irule

I need to setup a configuration for many similar environments. Each will have a different hostname that follows a pattern, e.g. env1, env2, etc. I can use a pool per environment and a single virtual server with an irule that selects a pool based on…
dachiz
  • 521
  • 1
  • 4
  • 6
0
votes
1 answer

http redirect and change pool

My irule is; when HTTP_REQUEST { if {[HTTP::uri] starts_with "/xxxx"} { HTTP::redirect https://example.com/yyyy } if {[HTTP::uri] starts_with "/zzzz"} { HTTP::redirect https://example.com/bbbb } } This works as we expect it to. We have a virtual…
fru93thu
  • 9
  • 1
  • 3
0
votes
1 answer

BIG-IP 11.5.2 - PROCs - passing by reference or return

Procs were introduced in BIGIP-11.4.0 and I am trying to access external variables being passed as reference to the proc or to be returned from the proc. No success so far. not too much documentation either on this feature…
Ashish Gupta
  • 14,869
  • 20
  • 75
  • 134
-3
votes
2 answers

regex to fetch number from json

How to get the required format text output from json payload using regexp "number" : 4aac4c35-8e3e-4730-8364-381884d6f20f:OP:QUAL:117804471:PON:false what is the expression to get the output like following "number" : 117804471 could you please…
Ram Kowsu
  • 711
  • 2
  • 10
  • 30
1
2