From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [network] [PATCH 2/2] route: apply static routes on startup and restart
Date: Fri, 02 Jun 2017 08:30:35 +0200 [thread overview]
Message-ID: <1496385035-3913-2-git-send-email-jonatan.schlag@ipfire.org> (raw)
In-Reply-To: <1496385035-3913-1-git-send-email-jonatan.schlag@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1359 bytes --]
The static routes can only be applied when the network has a valid layer 3 connectivity.
So it is not useful to have a route_init which is called before we have any layer 3 connectivity.
We now call the route_apply every time we set new routes for a zone.
We do this every time we get a new layer 3 connectivity so all routes are applied correctly.
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
src/functions/functions.route | 7 -------
src/functions/functions.routing | 3 +++
2 files changed, 3 insertions(+), 7 deletions(-)
diff --git a/src/functions/functions.route b/src/functions/functions.route
index 026656c..72f8c51 100644
--- a/src/functions/functions.route
+++ b/src/functions/functions.route
@@ -22,13 +22,6 @@
# Functions for static routing.
#
-route_init() {
- # Apply configured static routes.
- route_apply
-}
-
-init_register route_init
-
route_add() {
local ${NETWORK_CONFIG_ROUTES_PARAMS}
diff --git a/src/functions/functions.routing b/src/functions/functions.routing
index c7aac09..2436585 100644
--- a/src/functions/functions.routing
+++ b/src/functions/functions.routing
@@ -181,4 +181,7 @@ routing_update() {
cmd ${routing_cmd}
cmd ${ip_cmd} rule add from ${local_ip_address} lookup ${table}
+
+ # Apply all static routes
+ route_apply
}
--
2.6.3
prev parent reply other threads:[~2017-06-02 6:30 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-02 6:30 [network] [PATCH 1/2] 6to4-tunnel: LOCAL_ADDRESS6 needs to be a valid IPv6 network Jonatan Schlag
2017-06-02 6:30 ` Jonatan Schlag [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1496385035-3913-2-git-send-email-jonatan.schlag@ipfire.org \
--to=jonatan.schlag@ipfire.org \
--cc=network@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox