mirror of
https://gitlab.com/shorewall/code.git
synced 2025-06-19 17:28:35 +02:00
Clean up release notes
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@419 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
5642f7e1d4
commit
cd1417ec17
@ -28,7 +28,7 @@
|
|||||||
# shown below. Simply run this script to revert to your prior version of
|
# shown below. Simply run this script to revert to your prior version of
|
||||||
# Shoreline Firewall.
|
# Shoreline Firewall.
|
||||||
|
|
||||||
VERSION=1.3.13
|
VERSION=1.3.14Beta1
|
||||||
|
|
||||||
usage() # $1 = exit status
|
usage() # $1 = exit status
|
||||||
{
|
{
|
||||||
|
@ -2899,7 +2899,7 @@ rules_chain() # $1 = source zone, $2 = destination zone
|
|||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
# Get the subnets routed out of a given interface
|
# echo the list of subnets routed out of a given interface
|
||||||
#
|
#
|
||||||
get_routed_subnets() # $1 = interface name
|
get_routed_subnets() # $1 = interface name
|
||||||
{
|
{
|
||||||
@ -2908,7 +2908,7 @@ get_routed_subnets() # $1 = interface name
|
|||||||
|
|
||||||
ip route show dev $1 2> /dev/null |
|
ip route show dev $1 2> /dev/null |
|
||||||
while read address rest; do
|
while read address rest; do
|
||||||
[ -z "`echo "$address" | grep '/'`" ] && address="${address}/32"
|
[ "$address" = "${address%/*}" ] && address="${address}/32"
|
||||||
echo $address
|
echo $address
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
@ -2979,7 +2979,7 @@ setup_masq()
|
|||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
subnets=`get_routed_subnets $subnet`
|
subnets=`get_routed_subnets $subnet`
|
||||||
[ -z "$subnets" ] && startup_error "Unable to determine the address(es) for interface $subnet"
|
[ -z "$subnets" ] && startup_error "Unable to determine the routes through interface $subnet"
|
||||||
subnet="$subnets"
|
subnet="$subnets"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
@ -54,7 +54,7 @@
|
|||||||
# /etc/rc.d/rc.local file is modified to start the firewall.
|
# /etc/rc.d/rc.local file is modified to start the firewall.
|
||||||
#
|
#
|
||||||
|
|
||||||
VERSION=1.3.13
|
VERSION=1.3.14Beta1
|
||||||
|
|
||||||
usage() # $1 = exit status
|
usage() # $1 = exit status
|
||||||
{
|
{
|
||||||
|
@ -38,12 +38,11 @@ New features include:
|
|||||||
#INTERFACE SUBNET ADDRESS
|
#INTERFACE SUBNET ADDRESS
|
||||||
eth0 eth2 206.124.146.176
|
eth0 eth2 206.124.146.176
|
||||||
#LAST LINE -- ADD YOUR ENTRIES ABOVE THIS LINE -- DO NOT REMOVE
|
#LAST LINE -- ADD YOUR ENTRIES ABOVE THIS LINE -- DO NOT REMOVE
|
||||||
|
|
||||||
[root@gateway test]# ip route show dev eth2
|
[root@gateway test]# ip route show dev eth2
|
||||||
192.168.1.0/24 scope link
|
192.168.1.0/24 scope link
|
||||||
192.168.10.0/24 proto kernel scope link src 192.168.10.254
|
192.168.10.0/24 proto kernel scope link src 192.168.10.254
|
||||||
[root@gateway test]# ADDRESS
|
|
||||||
eth0 eth2 206.124.146.176
|
|
||||||
#LAST LINE -- ADD YOUR ENTRIES ABOVE THIS LINE -- DO NOT REMOVE
|
|
||||||
[root@gateway test]# ip route show dev eth2
|
[root@gateway test]# ip route show dev eth2
|
||||||
192.168.1.0/24 scope link
|
192.168.1.0/24 scope link
|
||||||
192.168.10.0/24 proto kernel scope link src 192.168.10.254
|
192.168.10.0/24 proto kernel scope link src 192.168.10.254
|
||||||
@ -70,6 +69,7 @@ New features include:
|
|||||||
eth0 eth2 206.124.146.176
|
eth0 eth2 206.124.146.176
|
||||||
eth0 192.168.10.0/24 206.124.146.176
|
eth0 192.168.10.0/24 206.124.146.176
|
||||||
#LAST LINE -- ADD YOUR ENTRIES ABOVE THIS LINE -- DO NOT REMOVE
|
#LAST LINE -- ADD YOUR ENTRIES ABOVE THIS LINE -- DO NOT REMOVE
|
||||||
|
|
||||||
[root@gateway test]# ip route show dev eth2
|
[root@gateway test]# ip route show dev eth2
|
||||||
192.168.1.0/24 scope link
|
192.168.1.0/24 scope link
|
||||||
192.168.10.0/24 proto kernel scope link src 192.168.10.254
|
192.168.10.0/24 proto kernel scope link src 192.168.10.254
|
||||||
@ -84,6 +84,7 @@ New features include:
|
|||||||
#INTERFACE SUBNET ADDRESS
|
#INTERFACE SUBNET ADDRESS
|
||||||
eth0 eth2 206.124.146.176
|
eth0 eth2 206.124.146.176
|
||||||
#LAST LINE -- ADD YOUR ENTRIES ABOVE THIS LINE -- DO NOT REMOVE
|
#LAST LINE -- ADD YOUR ENTRIES ABOVE THIS LINE -- DO NOT REMOVE
|
||||||
|
|
||||||
[root@gateway test]# ip route show dev eth2
|
[root@gateway test]# ip route show dev eth2
|
||||||
192.168.1.0/24 scope link
|
192.168.1.0/24 scope link
|
||||||
192.168.10.0/24 proto kernel scope link src 192.168.10.254
|
192.168.10.0/24 proto kernel scope link src 192.168.10.254
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%define name shorewall
|
%define name shorewall
|
||||||
%define version 1.3.13
|
%define version 1.3.14
|
||||||
%define release 1
|
%define release 0Beta1
|
||||||
%define prefix /usr
|
%define prefix /usr
|
||||||
|
|
||||||
Summary: Shoreline Firewall is an iptables-based firewall for Linux systems.
|
Summary: Shoreline Firewall is an iptables-based firewall for Linux systems.
|
||||||
@ -105,6 +105,8 @@ fi
|
|||||||
%doc COPYING INSTALL changelog.txt releasenotes.txt tunnel
|
%doc COPYING INSTALL changelog.txt releasenotes.txt tunnel
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Jan 25 2003 Tom Eastep <tom@shorewall.net>
|
||||||
|
- Changes version to 1.3.14-0Beta1
|
||||||
* Mon Jan 13 2003 Tom Eastep <tom@shorewall.net>
|
* Mon Jan 13 2003 Tom Eastep <tom@shorewall.net>
|
||||||
- Changes version to 1.3.13
|
- Changes version to 1.3.13
|
||||||
* Fri Dec 27 2002 Tom Eastep <tom@shorewall.net>
|
* Fri Dec 27 2002 Tom Eastep <tom@shorewall.net>
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
# You may only use this script to uninstall the version
|
# You may only use this script to uninstall the version
|
||||||
# shown below. Simply run this script to remove Seattle Firewall
|
# shown below. Simply run this script to remove Seattle Firewall
|
||||||
|
|
||||||
VERSION=1.3.13
|
VERSION=1.3.14Beta1
|
||||||
|
|
||||||
usage() # $1 = exit status
|
usage() # $1 = exit status
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user