change mtu size from a network interface

using ip command

list current mtu size of network interfaces

ip link list

set mtu size of interface eth0

ip link set dev eth0 mtu 700

using ifconfig command

list current mtu size of network interfaces

ifconfig

set mtu size of interface eth0

ifconfig eth0 mtu 700

Leave a comment