Which of the following is not a characteristic of L2TP?

a. Developed by Cisco.
b. Does not require a specific hardware.
c. Encapsulation is done on UDP port 1701.
d. Allows for tunnel authentication.


a. Developed by Cisco
Explanation: Layer 2 Tunneling Protocol (L2TP) was developed by the Internet Engineering Task Force (IETF) in 1999 . L2TP does not require a specific hardware. It can be initiated directly from the client. L2TP Tunnel encapsulation is done on UDP port 1701 . L2TP allows for tunnel authentication, so it does not need to rely heavily on the underlying PPP.

Computer Science & Information Technology

You might also like to view...

Which of the following configures Arial, Verdana, or the default sans-serif font for an element?

a. font-face: Arial; b. font-type: Arial, Verdana, sans-serif; c. font-family: Arial, Verdana, sans-serif; d. font-typeface: Arial, Verdana, sans-serif;

Computer Science & Information Technology

What does the following program do?

``` // Ex07_17.cpp // What does this program do? #include #include using namespace std; const size_t arraySize{10}; int whatIsThis(const array&, size_t); // prototype int main() { array a{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; int result{whatIsThis(a, arraySize)}; cout << "Result is " << result << endl; } // What does this function do? int whatIsThis(const array& b, size_t size) { if (size == 1) { // base case return b[0]; } else { // recursive step return b[size - 1] + whatIsThis(b, size - 1); } } ```

Computer Science & Information Technology

Case Based Critical ThinkingCase 1Katie recently purchased Photoshop, and has been spending the past few days reading manuals and textbooks about how to use the program.  Her head is swimming with new terms, facts, hints and pointers as she starts the program for the very first time. Katie plans to use Photoshop to help her create striking images for her Web page.  Which of the following Design Suite programs is a web production app?

A. Splash B. Dreamweaver C. Design Pro II D. Animate Now!

Computer Science & Information Technology

Many smaller web sites follow the ____ type content structure, which is nonlinear, allowing the user to jump freely to any page from any other page.

A. tutorial B. linear C. web D. hierarchical

Computer Science & Information Technology