From ab841d3588c88e0e8ef86693471281badce92a9f Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Sun, 12 Jul 2020 21:16:22 +0200 Subject: T2696: collection of small fixes to increase stability - Error on exit when clear routing tables - Possible crash (buffer overflow) in function for receive icmp echo packet - Error in parsing of config file for udp ttl "probe" - Wrong error messge in analyzing config file --- src/lbdecision.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lbdecision.cc') diff --git a/src/lbdecision.cc b/src/lbdecision.cc index 0e9ad5a..989f925 100644 --- a/src/lbdecision.cc +++ b/src/lbdecision.cc @@ -488,7 +488,7 @@ LBDecision::shutdown(LBData &data) sprintf(buf,"%d",h_iter->second._interface_index + IPT_MARK_OFFSET); execute(string("ip rule del table ") + buf, stdout); - execute(string("ip route del table ") + buf, stdout); + execute(string("ip route flush table ") + buf, stdout); //need to delete ip rule here as well! -- cgit v1.2.3