diff options
author | Roy Marples <roy@marples.name> | 2009-12-14 19:31:18 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2009-12-14 19:31:18 +0000 |
commit | a165fbe384ed4851ea42d7fa2d2d74daa0c02f1c (patch) | |
tree | 3162c8fff3cd0978e317e0032bb6ff44b797ed06 /init.d/staticroute.in | |
parent | 02c12c1caced4c2393e2ca15efdaca56d5f0d452 (diff) |
Support inet6 routes.
Diffstat (limited to 'init.d/staticroute.in')
-rw-r--r-- | init.d/staticroute.in | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/init.d/staticroute.in b/init.d/staticroute.in index 9f38b562..9995d37f 100644 --- a/init.d/staticroute.in +++ b/init.d/staticroute.in @@ -50,7 +50,7 @@ dump_args() do_routes() { - local xtra= + local xtra= family= [ "$RC_UNAME" != Linux ] && xtra=-q ebegin "$1 static routes" @@ -74,7 +74,14 @@ do_routes() ip route $2 $args ;; *) - route $xtra $2 -$args + # Linux route does cannot work it out ... + if [ "$RC_UNAME" = Linux ]; then + case "$args" in + *:*) family="-A inet6";; + *) family=;; + esac + fi + route $famly $xtra $2 -$args ;; esac veend $? |