For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

Sushant's avatar
Sushant
Icon for Altostratus rankAltostratus
Apr 02, 2021
Solved

Restricting direct access from public IP

My website that resides under BIG IP F5 can directly be opened making use of public IP. As my site is one to one NAT'd and and one application under one public IP it can directly be opened using publ...
  • spalande's avatar
    spalande
    Apr 03, 2021

    If you VIP hosts single domain then use this to whitelist it

    when HTTP_REQUEST {
     switch [string tolower [HTTP::host]] {
     "www.domain.com" 
      {
       return
      }
     default { 
       reject
      }
     }
    }

    If VIP hosts multiple domains/SAN use below to whitelist all

    when HTTP_REQUEST {
     switch [string tolower [HTTP::host]] {
     "www.domain1.com" -
     "www.domain2.com" -
     "www.domain3.com" 
     {
       return
      }
     default { 
       reject
      }
     }
    }