Tux

...making Linux just a little more fun!

Talkback:125/howell.html

[ In reference to "A Brief Introduction to IP Cop " in LG#125 ]

jessekemp [kempjw1 at sbcglobal.net]


Thu, 7 Jun 2007 10:16:13 -0400

I have setup IPCop and am seeing that I am taking errors (at about a 50% rate) any Idea how I can adjust the MTU rat which is currently set to 1500?


Top    Back


Ben Okopnik [ben at linuxgazette.net]


Thu, 7 Jun 2007 12:08:41 -0400

On Thu, Jun 07, 2007 at 10:16:13AM -0400, jessekemp wrote:

> I have setup IPCop and am seeing that I am taking errors (at about a  
> 50% rate) any Idea how I can adjust the MTU rat which is currently  
> set to 1500?

You can do it with either the 'ifconfig' or the 'ip' commands. To see your current MTU setting, use either the 'ifconfig' or 'ip link list' commands (you need to be root for the latter); to set the new MTU, use one of the following as root:

# Assuming that you want to set eth0
ip link set dev eth0 mtu 1400
ifconfig eth0 mtu 1400
If you want to make this a permanent adjustment, you need to set it up in your config files - '/etc/network/interfaces' in Debian, or '/etc/sysconfig/network-scripts/ifcfg-eth0' (or whatever device you're tweaking) in Redhat and such.

-- 
* Ben Okopnik * Editor-in-Chief, Linux Gazette * http://LinuxGazette.NET *

Top    Back


Jesse Kemp [kempjw1 at sbcglobal.net]


Thu, 07 Jun 2007 21:45:16 -0400

[[[ This was sent as top-posted html. Usual cranky plea applies. ]]]

That worked perfectly. Thanks so much! Another couple of s and I'll have the hang of linux down.


Top    Back


Ben Okopnik [ben at linuxgazette.net]


Thu, 7 Jun 2007 23:34:41 -0400

On Thu, Jun 07, 2007 at 09:45:16PM -0400, Jesse Kemp wrote:

>    On 6/7/07 12:08 PM, "Ben Okopnik" <ben@linuxgazette.net> wrote:
> > 
> >      ip link set dev eth0 mtu 1400
> 
>    That worked perfectly.  Thanks so much!  Another couple of s and I'll have
>    the hang of linux down.

[ top-posting laboriously reversed ]

You're welcome, Jesse. For future reference, please - don't send us HTML and don't top-post. Reading "Asking Questions of The Answer Gang" at http://linuxgazette.net/tag/ask-the-gang.html is also highly recommended. :)

-- 
* Ben Okopnik * Editor-in-Chief, Linux Gazette * http://LinuxGazette.NET *

Top    Back