您好,登錄后才能下訂單哦!
使用shell腳本怎么輸出主機的網卡速率?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
具體思路:
查詢單臺主機單網卡速率命令:
ethtool bond1 | grep Speed Speed: 20000Mb/s
查詢單臺主機所有bond網卡速率命令,輸出網卡名稱和對應的網卡速率:
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
查詢遠程主機所有bond網卡速率命令,可以使用ssh -tt遠程執行命令:
ssh -tt user@192.168.1.1 "command "
需要查詢的IP都在/etc/hosts文件,
文件格式:
192.168.1.1 compute-1
192.168.1.2 compute-2
篩選出192網段的IP
cat /etc/hosts | grep 192 | cut -d' ' -f1
使用expect自動輸入密碼
完整腳本:
#!/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
看完上述內容,你們掌握使用shell腳本怎么輸出主機的網卡速率的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。