diff options
-rw-r--r-- | init.d/network.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/init.d/network.in b/init.d/network.in index f32bcb4d..3beba1ca 100644 --- a/init.d/network.in +++ b/init.d/network.in @@ -250,7 +250,8 @@ start() if [ -n "$defaultroute" ]; then ebegin "Setting default route $defaultroute" - if [ "$RC_UNAME" = Linux ]; then + if [ "$RC_UNAME" = Linux -a \ + "${defaultroute#dev }" = "$defaultroute" ]; then route add default gw $defaultroute else route add default $defaultroute |