#!/bin/sh
. ./interfaces || exit 1
for i in $INTERFACES; do
  ifconfig $i |grep 'inet addr' >/dev/null || exit 1
done
