Forum Discussion

646576's avatar
646576
Icon for Nimbostratus rankNimbostratus
Feb 05, 2025
Solved

Disable/Block access to Network Map

I have an F5 appliance with a "big" configuration (according to F5 support engineers) and we frequently encounter the unable to contact Big-IP device message when multiple users open the Network Map ...
  • 646576's avatar
    Feb 25, 2025

    For anyone else who finds this, in regards to Jmtaylor 's AI generated suggestions.

    1. Not an option. I cannot think of how (or why) you would apply iRules to the configuration utility.
    2. Not an option. The network map uses the same port configuration utility.
    3. Not an option. Wish it was though.
    4. Does not achieve my goal.
    5. Did this... Their suggestion (below) does achieve my goal.
    tmsh edit / sys httpd all-properties

    Replace include none with the block below.

    include "
         <LocationMatch \"/tmui/tmui/dashboard/\">
              Redirect 403 /
         </LocationMatch>
         <LocationMatch /tmui/tmui/locallb/network_map/>
              Redirect 403 /
         </LocationMatch>
    "

    Save the config file by exiting vi. (ESC :wq!) and when prompted, save the config file as the tmsh prompt.

    Save the config and bounce the httpd service with the code below.

    tmsh save sys config
    tmsh restart sys service httpd