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...
The three ways to return control from a called method to a caller are ________,_____________ and _____________ .
Fill in the blank(s) with the appropriate word(s).
To add an int value 5 to a vector v of integers, use _________.
a. v.insert(5); b. v.add(5); c. v.append(5); d. v.push_back(5);
What is Sibling elements?
What will be an ideal response?
What data does Excel print by default?
A. The selected range of data B. The entire dataset on the active sheet C. The entire workbook D. There is no default setting for this in Excel.