#!/bin/sh

ipaddrcheck --allow-loopback --is-valid-intf-address "$1"

if [ $? -gt 0 ]; then
    echo "Error: $1 is not a valid network interface address"
    exit 1
fi

exit 0
