おそらく最善の解決策ではありませんが、スクリプトの簡単な修正として、次のようにする必要があります。
#!/usr/local/bin/bash
echo -n "Enter VPS IP address:"
read userinput
lookupip="vps $userinput"
first_octet=`echo "$userinput" | cut -d'.' -f1`
if [[ $first_octet -lt 80 || $first_octet -gt 255 ]]
then
echo "Input outside acceptable range."
else
#The grep removes all from VPS tool output except primary IP address
$lookupip | grep -E -o '(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)' | sed '1 ! d' | xargs ping -oc 1000 -Q
fi
EDITED:より良い解決策は、3つのIPアドレス(検査中のもの、最低のものと最高のもの)をすべてパラメーターとして取り、それらを32ビットの数値に変換し(それがinet_aton()
関数の機能です)、範囲を確認することです:
#!/usr/local/bin/bash
inet_aton ()
{
local IFS=. ipaddr ip32 i
ipaddr=($1)
for i in 3 2 1 0
do
(( ip32 += ipaddr[3-i] * (256 ** i) ))
done
return $ip32
}
echo -n "Enter VPS IP address, min IP address, max IP address:"
read userinput
ip1=`echo "$userinput" | cut -d' ' -f1`
ip2=`echo "$userinput" | cut -d' ' -f2`
ip3=`echo "$userinput" | cut -d' ' -f3`
lookupip="vps $ip1"
ip=`inet_aton $ip1`
min=`inet_aton $ip2`
max=`inet_aton $ip3`
if [[ $ip -lt $min || $ip -gt $max ]]
then
echo "Input outside acceptable range."
else
#The grep removes all from VPS tool output except primary IP address
$lookupip | grep -E -o '(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)' | sed '1 ! d' | xargs ping -oc 1000 -Q
fi
唯一の違いは、以前のように 1 つではなく、3 つの IP アドレスを入力する必要があることです。もちろん、最下位および最上位の IP アドレスをハードコーディングするか、別の場所から取得することもできますが、パラメーターの検証とエラー チェックとともに、それはあなた次第です。