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

7 Replies

  • Hi,

    You can use the following irule :

    when HTTP_REQUEST {
        switch [HTTP::host] {
            "xyz.example.com:8443" {
                pool x
            }
            "xyz.example.com" {
                pool y
            }
            default {
                reject
            }
        }
    }
    
  • Hi,

    You can use the following irule :

    when HTTP_REQUEST {
        switch [HTTP::host] {
            "xyz.example.com:8443" {
                pool x
            }
            "xyz.example.com" {
                pool y
            }
            default {
                reject
            }
        }
    }
    
  • Hi,

     

    Why do you need an irule.

     

    create two virtual servers:

     

    • one on port 443 with default pool x
    • the other on port 8443 with default pool y