#!/bin/sh
/sbin/route -n | grep -q ^0
if [ $? = 1 ]; then exit 0; fi

/sbin/route -n | grep ^0 | cut -c 73- | sort | uniq

