#!/bin/sh
# $Id$

if [ $# -ne 1 ]; then
    echo "Usage: `basename $0` ifname"
    exit 1
fi

grep 'Conf.*unique' $1 | awk '{print $5,$2}'


    
