Forum Discussion

Gazzu's avatar
Gazzu
Icon for Nimbostratus rankNimbostratus
Sep 14, 2017

Migration from ACE to F5

Migration from ACE to testing purpose, I have configured one VS in F5 and it seems that it's not working fine but I can see the requests/connections on pool members.Getting below error while accessing the URL i.e. http://10.77.22.23/ExpressOS/Login.aspx .

Not Found

HTTP Error 404. The requested resource is not found.

Traffic on backend servers.

    n-usgson2122:80   0  0  0  0  0  0  0  0  0  0  
    n-usgson2124:80   0  14.8K  0  9  0  1  3  3  0  0 

3 Replies

  • Hello,

     

    If you get 404 that means you hit the server but the server is not configured to respond on /ExpressOS/Login.aspx or you are trying to get wrong URI.

     

    Regards

     

  • Hello,

     

    If you get 404 that means you hit the server but the server is not configured to respond on /ExpressOS/Login.aspx or you are trying to get wrong URI.

     

    Regards

     

  • The VS is being hit. As Ilian said, you will need to check the URI on the backend server. example, or . So, your VS will need an irule thus.

     

    when HTTP_REQUEST { if { [HTTP::host] equals "10.77.22.23" && [HTTP::uri] equals "/"} { HTTP::respond 301 noserver Location "; Cache-Control "max-age=7200"

     

    } }

     

    Apply this to the VS and you should be fine