realiza teste de ping para alterar o dns

0

Eu escrevi este script para verificar se o meu servidor dns funciona bem ou não, e se não alterá-lo. mas dá erro ./dns-ping.sh: line 15: ((: 3 < : syntax error: operand expected (error token is "< ")

onde está o problema?

#! /bin/bash

loss_count=0
echo "--------------------------------------------------------------"
echo "++ DNS Ping Tester ++"
echo "--------------------------------------------------------------"
echo "please enter threshold:"
read $threshold
for timer in {1..2}
    do
        png='ping -c 5 -q yahoo.com | grep -oP '\d+(?=% packet loss)''
        let loss_count=$png+$loss_count
done
let loss_mid=loss_count/12
if (($loss_mid < $threshold)); then
#   ifdown eth0
    echo "less"
else
    echo "nameserver 8.8.8.8" > /etc/resolv.conf
fi
    
por Hojat Taheri 08.04.2013 / 17:16

1 resposta

1

Você precisa substituir a seguinte linha:

if (($loss_mid < $threshold)); then

Por este:

if [ "$loss_mid" -lt "$threshold" ]; then
    
por 08.04.2013 / 17:42