From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 1/9] ipsec-interfaces: Fixes bug12763 Date: Thu, 11 Apr 2024 17:01:00 +0200 Message-ID: <20240411150108.21573-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2595917211737961952==" List-Id: --===============2595917211737961952== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - Some of the ip route commands are not redirected to null. This causes the "= FIB table does not exist" message from bug12763 - This patch makes all ip route commands get redirected to null, preventing t= he error message from being seen at boot. - One of the ip rule commands is not redirected to null. This causes the "RTN= ETLINK answers: no such file or directory" message. - This patch makes all ip rule commands get redirected to null, preventing th= e error message from being seen at boot. - Additional patches in this set ensure that all ip route and ip rule command= s in all IPFire code is redirected to null unless the output of the ip route or ip = rule command is used in a variable for use elsewhere in the code. - Tested on my vm system and confirmed that the fix in ipsec-interfaces stops= the "FIB table does not exist" and "RTNETLINK answers: no such file or directory" m= essages during boot. Fixes: Bug#12763 Tested-by: Adolf Belka Signed-off-by: Adolf Belka --- src/scripts/ipsec-interfaces | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/scripts/ipsec-interfaces b/src/scripts/ipsec-interfaces index 23512b9bd..974d3ac84 100644 --- a/src/scripts/ipsec-interfaces +++ b/src/scripts/ipsec-interfaces @@ -107,15 +107,15 @@ main() { local interfaces=3D() =20 # Flush IPsec routes - ip route flush table "${ROUTE_TABLE}" + ip route flush table "${ROUTE_TABLE}" >/dev/null 2>&1 =20 # Remove lookups - ip rule del lookup "${ROUTE_TABLE}" + ip rule del lookup "${ROUTE_TABLE}" >/dev/null 2>&1 =20 # We are done when IPsec is not enabled if [ "${ENABLED}" =3D "on" ]; then # Enable route table lookup - ip rule add lookup "${ROUTE_TABLE}" prio "${ROUTE_TABLE_PRIO}" + ip rule add lookup "${ROUTE_TABLE}" prio "${ROUTE_TABLE_PRIO}" >/dev/null = 2>&1 =20 while IFS=3D"," read -r "${VARS[@]}"; do # Check if the connection is enabled @@ -158,7 +158,7 @@ main() { =20 log "Creating route to ${rightsubnet} (via ${address} and ${RED_INTF})" ip route add table "${ROUTE_TABLE}" "${rightsubnet}" proto static \ - dev "${RED_INTF}" src "${address}" + dev "${RED_INTF}" src "${address}" >/dev/null 2>&1 done =20 # No interface processing required --=20 2.44.0 --===============2595917211737961952==--