bstinson / centos / t_functional

Forked from centos/t_functional 3 years ago
Clone
Blob Blame History Raw
#!/bin/sh
#         Christoph Galuschka <christoph.galuschka@chello.at>

t_Log "Running $0 - arpwatch on eth0"

# getting IP-address of default gateway
defgw=$(ip route list | grep default | cut -d' ' -f3)

# setting path to arp.dat
if (t_GetPkgRel basesystem | grep -q el5)
  then
  arpdat='/var/arpwatch/arp.dat'
else
  arpdat='/var/lib/arpwatch/arp.dat'
fi

# beginning and running test
arp -d $defgw
arpwatch
sleep 2
ping -q -i 0.25 -c 5 $defgw
killall arpwatch

grep -q $defgw $arpdat
ret_val=$?

# cleaning up
cat /dev/null > $arpdat

t_CheckExitStatus $ret_val