What is the IOS command to change the MTU (Maximum Transmission Unit) for an interface on a Cisco Router?
What will be an ideal response?
We can change the MTU for an interface by typing “MTU xxx” in the interface
configuration mode of the router, xxx here refer to the MTU size in bytes.
For example, to change the MTU of Ethernet 0/0 of a router to 1000 bytes,
```
interface Ethernet 0/0
mtu 1000
```
Or in IP layer, MTU can be changed.
```
ip mtu 1000
```
You might also like to view...
To make a new style available in other documents, in the Modify Style dialog box select the ________ option button
A) New documents based on this style B) New documents based on this template C) Use in all documents D) Use in other documents
When compiling a class’s source code file (which does not contain a main function), the information in the class’s header file is used for all of the following, except:
a. Ensuring that the header of each member function matches its prototype. b. Ensuring that each member function knows about the class’s data members and other member functions. c. Determining the correct amount of memory to allocate for each object of the class. d. All of the above are uses that the compiler has for the header file information.