I want to modify the docker0
interface’s Maximum Transmission Unit (MTU) from the default value of 1500 to 1400. I have succeeded in doing so using the command ifconfig docker0 mtu 1400
, however the setting does not persist and reverts after some time.
Please help me figure out how to permanently modify the docker0
interface in my Kubernetes cluster.