Forum Discussion
- ThiyaguCirrus
Will the below irule work
when HTTP_REQUEST_RELEASE {
HTTP::header insert X-Common-Name "1234"
} Hi Thiyagu,
The iRule below should do the trick for you.
when HTTP_REQUEST { set username "Aladdin" set password "open sesame" set credentials [b64encode "$username:$password"] HTTP::header insert "Authorization" "Basic $credentials" }
Have fun,
--Niels