10 lines
108 B
Plaintext
10 lines
108 B
Plaintext
|
start()
|
||
|
{
|
||
|
ethtool -s eth0 speed 10 duplex full autoneg off
|
||
|
}
|
||
|
|
||
|
stop()
|
||
|
{
|
||
|
ethtool -s eth0 autoneg on
|
||
|
}
|