免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1937 | 回复: 1
打印 上一主题 下一主题

在sunsolve上找到一个查看网卡状态的脚本,还不错 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-07-26 12:09 |只看该作者 |倒序浏览
#!/bin/sh
#
# luisla@essiprojects.com
# v.1.1. 2002, July.
#
# Read status and info of the local and configured server interfaces, using
# ndd commands.
#
# Think about root execution (change permisions file).
#
#
# P.e. ndd -set /dev/hme link_speed 1
# ndd -get /dev/hme link_status   0 = link up, 1 = link down
# ndd -get /dev/hme link_speed    0 = 10MBit,  1 = 100MBit
# ndd -get /dev/hme link_mode     0 = half duplex, 1 = full duplex
# ndd -get /dev/hme adv_autoneg_cap   0 = no autonegotiation, 1 = autoneg.
#
# lp_100T4_cap = 100BASE-T4
# lp_100fdx_cap = 100Mbit/sec full-duplex
# lp_100hdx_cap = 100Mbit/sec half-duplex
# lp_10fdx_cap = 10Mbit/sec full-duplex
# lp_10hdx_cap = 10Mbit/sec half-duplex
#
# In Netra servers dmfe interfaces has a physical device in /dev, so
# it's innecessary to make instance of interfaces as usual with hme
# o qfe... BTW, link_speed it's not based in 1 o 0, but in 10 or 100 Mb
# and lp_autoneg_cap doesn't exists...
#

call_interface () {

if [ $# = 2 ];
then
        SET=`ndd -set /dev/$1 instance $2`
fi

GET="ndd -get /dev/$1"
  
printf "$1$2:\t"
  
case `$GET link_status` in
'0')    echo "KO."
        continue ;;
'1')    printf "OK.\t" ;;
esac
  
case `$GET link_speed` in
'0')    printf "10Mb.\t" ;;
'1')    printf "100Mb.\t" ;;
'10')   printf "10Mb.\t" ;;
'100')  printf "100Mb.\t" ;;
esac
  
case `$GET link_mode` in
'0')    printf "Half Duplex.\t" ;;
'1')    printf "Full Duplex.\t" ;;
esac

case `$GET lp_autoneg_cap` in
'0')    printf "LP no autonegotiation." ;;
'1')    printf "LP autonegotiation." ;;
esac
  
case `$GET adv_autoneg_cap` in
'0')    echo "No autonegotiation.\t" ;;
'1')    echo "Autonegotiation.\t" ;;
esac

}

for DEVICE in `ls /etc/hostname.* | awk -F. '{print $2}'`;
do

INT=`echo $DEVICE | awk '{print substr($1,1,3)}'`
SER=`echo $DEVICE | awk '{print substr($1,4,1)}'`

case $INT in
'dmf')       
        INT=`echo $DEVICE | awk '{print substr($1,1,5)}'`
        call_interface $INT
        ;;
'le'?)
        INT=`echo $DEVICE | awk '{print substr($1,1,2)}'`
        SER=`echo $DEVICE | awk '{print substr($1,3,1)}'`
        echo "$INT$SER device can't show stats. Sure $INT$SER it runs at 10Mb..."
        ;;
*)       
        call_interface $INT $SER
        ;;
esac
done

echo
echo LP = link partner
echo
echo 'Link partner capable of auto-negotation (lp_autoneg_cap 1)'
echo 'speed and mode information is displayed when you use auto-negotiation'
echo 'and get the link partner capabilities.'
echo  
==================================
试用结果:
bash-2.03# ./linkstatus.sh
hme0:   OK.     100Mb.  Full Duplex.    LP autonegotiation.Autonegotiation.     

LP = link partner

Link partner capable of auto-negotation (lp_autoneg_cap 1)
speed and mode information is displayed when you use auto-negotiation
and get the link partner capabilities.
=============================

筒子们凑和用哦

论坛徽章:
0
2 [报告]
发表于 2006-07-26 18:11 |只看该作者
试了一下
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP