public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] netother.cgi: show content of routing table 220
@ 2020-03-07 18:46 Peter Müller
  2020-03-08 11:42 ` Michael Tremer
  0 siblings, 1 reply; 8+ messages in thread
From: Peter Müller @ 2020-03-07 18:46 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 963 bytes --]

Since IPsec routing information do not show up in the normal routing
table, also displaying the contents of table 220 on netother.cgi might
be useful for debugging purposes.

Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
 html/cgi-bin/netother.cgi | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/html/cgi-bin/netother.cgi b/html/cgi-bin/netother.cgi
index dde1b603a..ac02b8148 100644
--- a/html/cgi-bin/netother.cgi
+++ b/html/cgi-bin/netother.cgi
@@ -79,6 +79,12 @@ if ( $querry[0] =~ "fwhits"){
 	print "<pre>$output</pre>\n";
 	&Header::closebox();
 
+	&Header::openbox('100%', 'left', "$Lang::tr{'routing table entries'} 220");
+	$output = `/sbin/ip route list table 220`;
+	$output = &Header::cleanhtml($output,"y");
+	print "<pre>$output</pre>\n";
+	&Header::closebox()
+
 	&Header::openbox('100%', 'left', $Lang::tr{'arp table entries'});
 	$output = `/sbin/ip neigh show`;
 	$output = &Header::cleanhtml($output,"y");
-- 
2.16.4

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-03-30 17:56 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-07 18:46 [PATCH] netother.cgi: show content of routing table 220 Peter Müller
2020-03-08 11:42 ` Michael Tremer
2020-03-08 13:15   ` Peter Müller
2020-03-08 13:35     ` Michael Tremer
2020-03-21 16:03       ` [PATCH v2] " Peter Müller
2020-03-22  9:24         ` Michael Tremer
2020-03-30 17:38         ` Arne Fitzenreiter
2020-03-30 17:56           ` Peter Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox