Forum Discussion

f51's avatar
f51
Icon for Cirrostratus rankCirrostratus
Jun 30, 2017

Redirection

Hi DC,

 

I want to setup a VIP in dmz and it has to look for traffic coming in form hrcontent.abc.com and the uri of /hr-forms/ and forward it to an APM policy which displays the below.

 

URLS Resignation Form: https://hrcontent.abc.com/hr-forms/resignation

 

Exit Interview Questionnaire: https://hrcontent.abc.com/hr-forms/exit-interview

 

Benefit Change: https://hrcontent.abc.com/hr-forms/benefit-change

 

Can anybody suggest me how to setup this scenario using APM ..? Can I do this in LTM policy ..?

 

8 Replies

  • P_K's avatar
    P_K
    Icon for Altostratus rankAltostratus

    Are you saying you want to allow only URI that start with /hr-forms/ and reject all others ?

     

    Are you planning to do any kind of authentication with APM Policy?

     

  • P_K's avatar
    P_K
    Icon for Altostratus rankAltostratus

    APM policy which displays the below.

     

    What do you mean by this? Are you saying, after uri /hr-forms is validated, you want to display links so user can click'em??

     

  • f51's avatar
    f51
    Icon for Cirrostratus rankCirrostratus

    Hi PK,

     

    I want to display the message as Text : This task is not available on the mobile app. Log onto your desktop to complete this task. If possible I want to close the browser window after displaying the message for 7 seconds.

     

  • f51's avatar
    f51
    Icon for Cirrostratus rankCirrostratus

    traffic coming in form hrcontent.abc.com and the uri of /hr-forms/ and forward it to an APM policy which displays the below.

     

    Text : This task is not available on the mobile app. Log onto your desktop to complete this task

     

    If possible I want to close the browser window after displaying the text message for 7 seconds.

     

  • P_K's avatar
    P_K
    Icon for Altostratus rankAltostratus

    Try using two branches on APM Policy.

    one for checking the Host/URI and blocking it with the text you want and 2nd branch to allow traffic. The branch expression could be

    expr {([mcget {session.server.landinguri}] contains "hr-forms") && ([mcget {session.server.network.name}] equals "hrcontent.abc.coms")} Follow this branch to

    Deny
    and customize the deny page with the text you want.

    Add AD auth to the flow depending on your requirement.

    Question is, do you also looking to check the clientType which is mobile browser?? or you are blocking every user coming to /hr-forms ??

  • f51's avatar
    f51
    Icon for Cirrostratus rankCirrostratus

    Hi PK

     

    No I am not checking mobile browser and when they are coming from /hr-forms/ they will see bellow text: This task is not available on the mobile app. Log onto your desktop to complete this task After seeing this that text, can we close the browser automatically in 5 to 7 secs..