mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-24 16:43:21 +01:00
Cause aliases added under ADD_IP_ALIASES to use the VLSM and Broadcast of
the primary IP address. git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@13 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
7c78bb16a7
commit
d97c5573c6
@ -1068,7 +1068,28 @@ setup_nat() {
|
||||
fi
|
||||
|
||||
if [ -n "$ADD_IP_ALIASES" ]; then
|
||||
run_ip addr add $external dev $interface
|
||||
#
|
||||
# Folks begin to panic if they don't see all of the same
|
||||
# decoration on these IP addresses that they see when their
|
||||
# distro's net config tool adds them. In an attempt to cut
|
||||
# down on their anxiety, we'll introduce the following (no doubt
|
||||
# buggy) code to set the VLSM and BRD just like the primary
|
||||
# address
|
||||
#
|
||||
# Get all of the lines that contain inet addresses with broadcast
|
||||
#
|
||||
val=`ip addr show $interface | grep 'inet.*brd '` 2> /dev/null
|
||||
#
|
||||
# Hack off the leading 'inet <ip addr>' (actually cut off the
|
||||
# "/" as well but add it back in.
|
||||
#
|
||||
val="/${val#*/}"
|
||||
#
|
||||
# Now get the VLSM, "brd" and the broadcast address
|
||||
#
|
||||
val=`echo $val | cut -d' ' -f1,2,3`
|
||||
|
||||
run_ip addr add ${external}${val} dev $interface
|
||||
echo "$external $interface" >> ${STATEDIR}/nat
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user