Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How do I change the MTU setting for early versions of OS X?

early MTU setting versions
0
Posted

How do I change the MTU setting for early versions of OS X?

0

This is for specific older versions of OS X (10.1.1-10.2.1), and fixes the issue discussed in 3.3 above. A better solution for many users is to upgrade to Mac OS 10.2.8 or later. To make the MTU setting permanent: Log in using your administrator account. Start Terminal and enter the following command: sudo pico /etc/ppp/ip-up This will create the file /etc/ppp/ip-up. You now need to type the following into this file: #!/bin/sh /sbin/ifconfig ppp0 mtu 1492 Save the file and exit pico. Next you need to make the file executable. Do this by typing the following command: sudo chmod 755 /etc/ppp/ip-up Now activate your PPPoE connection (reboot and start your internet connection) and run ifconfig ppp0 from a terminal to check your mtu size. It should be set to 1492. If you are interested in why this works, it is described in the pppd man page. (Essentially the pppd process will execute a file called /etc/ppp/ip-up every time you make a ppp/pppoe connection. You just need to tell it what to do

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123