1

I want to change the MTU value for only the connections that are going between localhost / 127.0.0.1 on a Red Hat box. How do I do that?

Manto
  • 113
  • 5

1 Answers1

3

Use ifconfig

# ifconfig lo mtu 16436

You can make the change more permanent by adding to /etc/sysconfig/network-scripts/ifcfg-lo:

MTU=16436
dmourati
  • 24,720
  • 2
  • 40
  • 69