溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

使用shell腳本怎么輸出主機(jī)的網(wǎng)卡速率

發(fā)布時(shí)間:2021-05-18 16:33:38 來(lái)源:億速云 閱讀:284 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

使用shell腳本怎么輸出主機(jī)的網(wǎng)卡速率?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。

具體思路:

查詢(xún)單臺(tái)主機(jī)單網(wǎng)卡速率命令:

ethtool bond1 | grep Speed
Speed: 20000Mb/s

查詢(xún)單臺(tái)主機(jī)所有bond網(wǎng)卡速率命令,輸出網(wǎng)卡名稱(chēng)和對(duì)應(yīng)的網(wǎng)卡速率:

for i in {0..3};do echo bond$i `/usr/sbin/ethtool bond$i 2 > /dev/null | grep Speed`;done
bond0
bond1 Speed: 20000Mb/s
bond2 Speed: 20000Mb/s
bond3 Speed: 2000Mb/s

查詢(xún)遠(yuǎn)程主機(jī)所有bond網(wǎng)卡速率命令,可以使用ssh -tt遠(yuǎn)程執(zhí)行命令:

ssh -tt user@192.168.1.1 "command "

需要查詢(xún)的IP都在/etc/hosts文件,
文件格式:

  • 192.168.1.1 compute-1

  • 192.168.1.2 compute-2

篩選出192網(wǎng)段的IP

cat /etc/hosts | grep 192 | cut -d' ' -f1

使用expect自動(dòng)輸入密碼

完整腳本:

#!/bin/bash
cat /etc/hosts | grep 192 | while read line
do
echo $line
ip=`echo $line | cut -d' ' -f1`
/usr/bin/expect <<-EOF
spawn ssh -tt user@$ip "for i in {0..3};do echo bond\$\i \`/usr/sbin/ethtool bond\$\i 2>/dev/null | grep Speed\`;done "
expect {
    "(yes/no)?" { send "yes\n";exp_continue }
    "*assword:" { send "password\n";}
}
expect eof
EOF
done

看完上述內(nèi)容,你們掌握使用shell腳本怎么輸出主機(jī)的網(wǎng)卡速率的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI