您好,登錄后才能下訂單哦!
使用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è)資訊頻道,感謝各位的閱讀!
免責(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)容。