All pastes #2104772 Raw Edit

Anonymous

public text v1 · immutable
#2104772 ·published 2012-01-21 13:58 UTC
rendered paste body
#!/bin/sh

# replace default route with all routes that are currently available

nexthops=
for i in $@; do
        nexthops="$nexthops nexthop via $i"
done

ip route replace 0.0.0.0/0 $nexthops