QuestionQ134

Identify and Resolve LTM Device Issues

The pool members serve simple static web content.

The current virtual server configuration is as follows:

tmsh list ltm virtual simple  
ltm virtual simple \{  
    destination 10.10.10.10:80  
    ip-protocol tcp  
    mask 255.255.255.255  
    profiles \{  
        http \{ \}  
        httpcompression \{ \}  
        oneconnect \{ \}  
        tcp \{ \}  
    \}  
    snat automap  
    vlans-disabled  
\}  
  
tmsh list ltm pool simple_pool  
ltm pool simple_pool \{  
    members \{  
        10.10.10.11:80 \{  
            address 10.10.10.11  
        \}  
        10.10.10.12:80 \{  
            address 10.10.10.12  
        \}  
        10.10.10.12:80 \{  
            address 10.10.10.13  
        \}  
    \}  
\}  

Which three objects in the virtual server configuration can be removed without disrupting the virtual server's functionality?

Choose three
  • A tcp
  • B http
  • C oneconnect
  • D snat automap
  • E httpcompression
Explanation

BIG-IP automatically adds the default TCP profile when a virtual server has an HTTP profile but lacks an explicitly assigned TCP profile. OneConnect is an optional server-side connection-reuse feature, and HTTP compression is an optional content-optimization feature; neither is required for a virtual server to deliver static web content. The HTTP profile remains necessary for HTTP-layer processing, including HTTP compression while that profile is configured, and SNAT automap may be required to preserve return-path connectivity from pool members to clients.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!