d******i 发帖数: 7160 | 1 一打开了bios里的wol选项,
而且温8是支持的。
机子是ecs liva.
但ethtool p2p1 ~ dmesg说我的network 被改名成p2p1了 说
Wol不支持。
所以按这个
ethtool -s p2p1 wol g
也就不work.
哪里出了毛病呢?
谢谢。 |
|
发帖数: 1 | 2 Can you post the output of the following shell commands:
dmesg
ifconfig -a
ethtool eth0
ethtool -S |
|
p**i 发帖数: 688 | 3 NAS一天24小时中有多少时间是在做backup? 我的NAS有个realtek gigabit NIC, 用
r8169
driver, turn off gigabit speed能省2W电. 我的cron job里让它在工作日1AM
/usr/sbin/ethtool -s eth0 autoneg off speed 100
然后6PM
/usr/sbin/ethtool -s eth0 autoneg on speed 1000
http://www.lesswatts.org/tips/ethernet.php |
|
S*A 发帖数: 7142 | 4 你可以在 router 或者 PC 端看 Link Speed 是不是 1G.
如果可以保持 1G 的传输就一般不是网线问题。
Windows 可以点那个网口。
Linux 下面打 ethtool <网卡名>
ethtool p2p1
Settings for p2p1:
Supported ports: [ TP ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Supported pause frame use: No
Supports auto-negotiation: Yes
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
... 阅读全帖 |
|
j*a 发帖数: 14423 | 5 root@:~# ethtool eth0
Settings for eth0:
Supported ports: [ ]
Supported link modes:
Supports auto-negotiation: No
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Speed: 10000Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
MDI-X: Unknown
Link detected: no
root@:~# ethtool eth1
Settings for eth1... 阅读全帖 |
|
t*******y 发帖数: 1289 | 6 ethtool can do it.
ethtool eth0
Link detected: yes |
|
T********r 发帖数: 6210 | 7 你这么一说我记起来了,好象以前用Linux的时候需要用ethtool设置一下网卡,不然机
子shutdown以后网卡的state不对。那看来FreeNAS关机的时候没把网卡的state设好。 |
|
p**i 发帖数: 688 | 8 什么OS? 如果是linux, kernel 2.6内置了它的driver, module name是tg3
ethtool -i eth0
driver: tg3
version: 3.102
firmware-version: 5722-v3.09
bus-info: 0000:02:00.0
买了Dell Poweredge T105 server但是没有driver,在网上也没找到,请问哪位知道哪
里有?
谢 |
|
S*A 发帖数: 7142 | 9 不关设置的事情。这个是网卡本身的固件决定的。
Linux ethtools 看网卡都支持什么唤醒。所有他唤醒模式会
列出来的。如果只有一个 “g”, 那就是只支持 Magic
packet。 |
|
j******o 发帖数: 82 | 10 Does anybody know if there's a software that can set your network transfer
speed manually? I have a fast network (1Gps or 100M) but I want to simulate
conditions when the bandwidth is limited, say 1.4Mbps. I tried ethtool in
Linux but it will only allow you to set to 1000, 100, or 10, depending on your
ethernet card.
3x |
|
p**i 发帖数: 688 | 11 你可以试试ethtool eth0 | grep Wake-on
g就是MagicPacket |
|
a*******e 发帖数: 3021 | 12 root# /sbin/ethtool eth0 | grep Wake-on
Supports Wake-on: pumbg
Wake-on: g
那我下次直接从别的地方发包就可以唤醒了?
iptable应该允许tcp还是udp的9号口?
哦,iptable应该没用把,机器还没起来呢,所以做了port转发全世界谁都能给我唤醒
了? |
|
j**********p 发帖数: 22 | 13 ethtool eth0
link status is displayed on the last line. |
|
c****j 发帖数: 258 | 14 Allow ethtool to set interface in loopback mode. (commit) |
|
W****n 发帖数: 141 | 15 # ethtool eth2
Settings for eth2:
Supported ports: [ TP ]
Supported link modes: 1000baseT/Full
10000baseT/Full
Supports auto-negotiation: No
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Speed: 10000Mb/s
Duplex: Full |
|
h**i 发帖数: 712 | 16 看了ethtool的源码,跟我想的一样,主要是读MII寄存器的状态,还是链路层的思路,
kernel通过网卡driver也是读寄存器,然后通过udev给用户空间,application还是通
过SYSFS读取最方便,因为都已经封装好了。QT离底层太远了,还没找到类似的封装。
多谢两位。 |
|
t*******y 发帖数: 1289 | 17 大哥,能说 清楚点吗?
ethtool 不就是一个ioctl吗?
“然后通过udev给用户空间“ 啥意思 ?
我比较手潮。 |
|
q***e 发帖数: 90 | 18 You can set it via some system tools, but I forget the
command names, something like "ethertool " o r"ethtool". |
|