#!/bin/bash

if [ $# -lt 1 ]; then
	echo "Usage: $0 hostname"
	exit 3
fi

HN=$1

nc -w 1 $HN 53486
nc -w 1 $HN 23597
nc -w 1 $HN 47354

exit 0
