Forum Discussion

Janek_42109's avatar
Janek_42109
Icon for Nimbostratus rankNimbostratus
Mar 16, 2016
Solved

iRule basic authentification on the node issue

Dear All, I have an issue with a basic authentification on the node side. I'm using an iRule to manage the authentification like the following : when HTTP_REQUEST { set basicdata [b64encode "foo...
  • wonsoo_41223's avatar
    Mar 17, 2016

    Please try this iRule.

    when HTTP_REQUEST {
        set data {foo:$AAAbb""*}
        set basicdata [b64encode $data]
        HTTP::header insert Authorization "Basic $basicdata"
    }