From 775d56b877876dacca8939706445ce5ab3920f7d Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Sat, 5 Dec 2009 21:23:39 +0000 Subject: Document multiple routes, fixes #210. --- conf.d/staticroute.BSD | 8 ++++++-- conf.d/staticroute.Linux | 11 +++++++---- init.d/staticroute.in | 1 + 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/conf.d/staticroute.BSD b/conf.d/staticroute.BSD index 01e0ea3..4798473 100644 --- a/conf.d/staticroute.BSD +++ b/conf.d/staticroute.BSD @@ -1,2 +1,6 @@ -# Example static route. See route(8) for syntax. -#staticroute="net 192.168.0.0 -netmask 255.255.0.0 10.73.1.1" +# Separate multiple routes using ; or new lines. +# /etc/route.conf(5) takes precedence over this configuration. + +# Example static routes. See route(8) for syntax. +#staticroute="net 192.168.0.0 -netmask 255.255.255.0 10.73.1.1 +#net 192.168.1.0 -netmask 255.255.255.0 10.73.1.1" diff --git a/conf.d/staticroute.Linux b/conf.d/staticroute.Linux index 15956cd..68d22eb 100644 --- a/conf.d/staticroute.Linux +++ b/conf.d/staticroute.Linux @@ -1,5 +1,8 @@ -# Example static route. See route(8) for syntax. -#staticroute="net 192.168.0.0 netmask 255.255.0.0 gw 10.73.1.1" +# Separate multiple routes using ; or new lines. -# Example static route using iproute2. See ip(8) for syntax. -#staticiproute="192.168.0.0/24 via 10.73.1.1" +# Example static routes. See route(8) for syntax. +#staticroute="net 192.168.0.0 netmask 255.255.255.0 gw 10.73.1.1 +#net 192.168.1.0 netmask 255.255.255.0 gw 10.73.1.1" + +# Example static routes using iproute2. See ip(8) for syntax. +#staticiproute="192.168.0.0/24 via 10.73.1.1; 192.168.1.0/24 via 10.73.1.1" diff --git a/init.d/staticroute.in b/init.d/staticroute.in index 8aea55c..9f38b56 100644 --- a/init.d/staticroute.in +++ b/init.d/staticroute.in @@ -28,6 +28,7 @@ pre_flight_checks() dump_args() { + # Route configuration file, as used by the NetBSD RC system if [ -s /etc/route.conf ]; then cat /etc/route.conf return $? -- cgit v1.2.3