diff options
author | Roy Marples <roy@marples.name> | 2009-12-05 21:23:39 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2009-12-05 21:23:39 +0000 |
commit | 775d56b877876dacca8939706445ce5ab3920f7d (patch) | |
tree | 2fefa1b95863e8b51676033cccf1a261fcc0d20a /conf.d | |
parent | 22e2a4f0a156c566f0c460c2229a19dbff4e0553 (diff) |
Document multiple routes, fixes #210.
Diffstat (limited to 'conf.d')
-rw-r--r-- | conf.d/staticroute.BSD | 8 | ||||
-rw-r--r-- | conf.d/staticroute.Linux | 11 |
2 files changed, 13 insertions, 6 deletions
diff --git a/conf.d/staticroute.BSD b/conf.d/staticroute.BSD index 01e0ea35..47984733 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 15956cd1..68d22eb4 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" |