How to add text message on Gateway logon page that AAA authentication enabled.

a. create a new loginSchema xml file via ADC CLI shell console.

cp /nsconfig/loginschema/LoginSchema/SingleAuth.xml /nsconfig/loginschema/custom.xml

b. Modify new login Schema xml file to append below blue color code before “</Requirements>” like:

……

<Requirement><Credential><ID>notice</ID><SaveID>notice</SaveID><Type>notice</Type></Credential>

<Label><Text>Any comments you want to displayed in Login page</Text><Type>plain</Type></Label>

</Requirement>


</Requirements>

…..

c. create login schema profile with newly created xml file

add authentication loginSchema custom_pfl -authenticationSchema “/nsconfig/loginschema/custom.xml”

NOTE:Once xml files is modified, do remeber manually to run again this command to apply the change.

d. create login schema policy new newly created profile.

add authentication loginSchemaPolicy custom_LSPol -rule true -action custom_pfl

e. bind login schema policy to AAA virtual server.

bind authentication vserver AAAAuth -policy custom_LSPol -priority 100 -gotoPriorityExpression END

f. create a new portal theme based on RfWebUI and apply it into Cirix Gateway Virtual Server.

add portaltheme RFWeb_New basetheme RfWebUI

bind vpn vserver VserverName -portaltheme RFWeb_New

g.modify /var/netscaler/logon/themes/RFWeb_New/css/theme.css like below :

.credentialform.standaloneText {

color: orange;

position: absolute;

width: 1200px;

left: 300px;

text-align: center;

word-break: break-all;

}

Finally. Here is a screenshot desired output.

image.png

Related:

  • No Related Posts

Leave a Reply