ubuntu 14.04 - How to set permanent mtu size for ppp0 -


every time connect vpn, should run

sudo ifconfig ppp0 mtu 1300 

how make permanent?

i'm using ubuntu 14.04

you can make custom script @ address : /etc/network/if-up.d,

#!/bin/sh  if [ "$iface" = "ppp0" ];     sudo ifconfig ppp0 mtu 1300 fi 

finally make executable , enjoy life ...


Comments

Popular posts from this blog

java - UnknownEntityTypeException: Unable to locate persister (Hibernate 5.0) -

python - ValueError: empty vocabulary; perhaps the documents only contain stop words -

ubuntu - collect2: fatal error: ld terminated with signal 9 [Killed] -