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"

# Kill arpwatch instance from previous test
killall arpwatch

# 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
if [ $centos_ver == '6' ]
  then
  t_Log "Skipping for the time being on C6 until fixed"
  ret_val=0
else
  arpwatch
  sleep 4
  arp -d $defgw
  sleep 2
  ping -q -i 0.5 -c 5 $defgw
  killall arpwatch
  sleep 2
  grep -q $defgw $arpdat
  ret_val=$?
fi

# cleaning up
cat /dev/null > $arpdat

t_CheckExitStatus $ret_val