#!/bin/sh

for ifname in `ifconfig -a | grep 'ra' | awk '{print $1}'`
do
	if ( echo $ifname | grep -q 'ra' ); then
		ifconfig $ifname down
	fi
done
