From ce3595b146944482a54a990d449ccefda33bbb40 Mon Sep 17 00:00:00 2001 From: teastep Date: Sun, 18 Jul 2004 01:20:50 +0000 Subject: [PATCH] Add route and IP config info to shorewall status output git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@1483 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- STABLE2/changelog.txt | 5 +++++ STABLE2/releasenotes.txt | 8 +++++++- STABLE2/shorewall | 10 ++++++++++ 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/STABLE2/changelog.txt b/STABLE2/changelog.txt index ead43ac31..a4284c713 100644 --- a/STABLE2/changelog.txt +++ b/STABLE2/changelog.txt @@ -31,3 +31,8 @@ Change in 2.0.6 3) Don't give shorewall.conf and zones execute permission. 4) Backport 'dropInvalid' from 2.1 + +Changes in 2.0.7 + +1) Include output of "ip rule ls" and "ip route ls" in "shorewall + status". diff --git a/STABLE2/releasenotes.txt b/STABLE2/releasenotes.txt index f2496bad2..15cdc806c 100644 --- a/STABLE2/releasenotes.txt +++ b/STABLE2/releasenotes.txt @@ -1,4 +1,4 @@ -Shorewall 2.0.6 +Shorewall 2.0.7 ---------------------------------------------------------------------- Problems Corrected in version 2.0.4 @@ -38,5 +38,11 @@ Problems Corrected in version 2.0.6 3) ICMP packets that are in the INVALID state are now dropped by the Reject and Drop default actions. They do so using the new 'dropInvalid' builtin action. +----------------------------------------------------------------------- +Problems Corrected in version 2.0.7 + +1) To improve supportability, the "shorewall status" command now + includes the output from "ip rule ls" and "ip addr ls". + diff --git a/STABLE2/shorewall b/STABLE2/shorewall index cc75ed19d..ca0363879 100755 --- a/STABLE2/shorewall +++ b/STABLE2/shorewall @@ -881,6 +881,16 @@ case "$1" in iptables -t mangle -L $IPT_OPTIONS echo cat /proc/net/ip_conntrack + echo + echo "IP Configuration" + echo + ip addr ls + echo + echo "Routing" + echo + ip rule ls + echo + ip route ls ;; hits) [ -n "$debugging" ] && set -x