Exam 301b All QuestionsBrowse all questions from this exam
Question 8

The pool members are serving up simple static web content.

The current virtual server configuration is given 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 functionality of the virtual server? (Choose three.)

    Correct Answer: A, C, E

    The tcp profile is implied by the use of tcp protocol in the configuration, thus it can be removed because the system will use the default tcp profile. The oneconnect profile is used to reuse TCP connections to backend servers, which is not necessary for simple static web content and can thus be removed without impacting functionality. The httpcompression profile applies HTTP compression, which is not essential for serving static content and can also be removed without disrupting the virtual server's functionality. Therefore, tcp, oneconnect, and httpcompression profiles can be safely removed.

Discussion
GVKDOptions: BCE

BCE - Correct