PDA

View Full Version : full duplex



muzica
02-16-2005, 02:42 PM
How do I force network interfaces to 10 Mps – full duplex?

OErjan
02-16-2005, 05:49 PM
depends on what network card you have but mii-tool might do it, a few lines from man mii-tool.

[...]
SYNOPSIS
mii-tool [-v, --verbose] [-V, --version] [-R, --reset] [-r, --restart] [-w, --watch] [-l, --log] [-A, --advertise=media,...] [-F,
--force=media] [interface ...]
[...]
-A media,..., --advertise=media,...
Enable and restart autonegotiation, and advertise only the specified media technologies. Multiple technologies should be separated by
commas. Valid media are 100baseT4, 100baseTx-FD, 100baseTx-HD, 10baseT-FD, and 10baseT-HD.
[...]
so perhaps something like below?
mii-tool -A 10baseTx-FD eth0

muzica
02-18-2005, 07:47 PM
cool thanks for the help OErjan.