#!/bin/bash

# Usage: pingtest

while [ -1 ]
do
	ping -c 4 master
	ping -c 4 zinc2
	ping -c 4 zinc3
	ping -c 4 zinc4
	sleep 5
done
