aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2010-11-30 21:53:02 -0500
committerBill Nottingham <notting@redhat.com>2010-11-30 21:53:02 -0500
commitff5befb95b133cc1da3f32ffcd9f3cef779244b6 (patch)
treec2f360e405892a0add6ac011917d96c3fe2374aa /sysconfig
parentd624aba089bd95acfe8f02bebb01c34a4f242216 (diff)
downloadinitscripts-ff5befb95b133cc1da3f32ffcd9f3cef779244b6.tar
initscripts-ff5befb95b133cc1da3f32ffcd9f3cef779244b6.tar.gz
initscripts-ff5befb95b133cc1da3f32ffcd9f3cef779244b6.tar.bz2
initscripts-ff5befb95b133cc1da3f32ffcd9f3cef779244b6.tar.xz
initscripts-ff5befb95b133cc1da3f32ffcd9f3cef779244b6.zip
Support multiple IP addreses via IPADDRn, PREFIXn (or NETMASKn) (#633984) Adapted from <jklimes@redhat.com>
In addition to legacy IP aliases, this commit adds a support for configuring mupliple IPs via single ifcfg file. It uses the same syntax and behaviour as NetworkManager.
Diffstat (limited to 'sysconfig')
-rwxr-xr-xsysconfig/network-scripts/ifup-eth53
-rw-r--r--sysconfig/network-scripts/network-functions36
2 files changed, 57 insertions, 32 deletions
diff --git a/sysconfig/network-scripts/ifup-eth b/sysconfig/network-scripts/ifup-eth
index cae00783..dd9fb5ea 100755
--- a/sysconfig/network-scripts/ifup-eth
+++ b/sysconfig/network-scripts/ifup-eth
@@ -1,6 +1,6 @@
#!/bin/bash
# Network Interface Configuration System
-# Copyright (c) 1996-2009 Red Hat, Inc. all rights reserved.
+# Copyright (c) 1996-2010 Red Hat, Inc. all rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2,
@@ -214,7 +214,7 @@ else
else
expand_config
-
+
[ -n "${ARP}" ] && \
ip link set dev ${REALDEVICE} $(toggle_value arp $ARP)
@@ -241,27 +241,36 @@ else
SRC=
fi
- if [ "${REALDEVICE}" != "lo" ]; then
- if ! LC_ALL=C ip addr ls ${REALDEVICE} | LC_ALL=C grep -q "${IPADDR}/${PREFIX}" ; then
- if ! /sbin/arping -q -c 2 -w 3 -D -I ${REALDEVICE} ${IPADDR} ; then
- echo $"Error, some other host already uses address ${IPADDR}."
- exit 1
- fi
- if ! ip addr add ${IPADDR}/${PREFIX} \
- brd ${BROADCAST:-+} dev ${REALDEVICE} ${SCOPE} label ${DEVICE}; then
- echo $"Error adding address ${IPADDR} for ${DEVICE}."
- fi
- fi
-
- if [ -n "$SRCADDR" ]; then
- sysctl -w "net.ipv4.conf.${REALDEVICE}.arp_filter=1" >/dev/null 2>&1
- fi
+ # set IP address(es)
+ for idx in {0..256} ; do
+ if [ -z "${ipaddr[$idx]}" ]; then
+ break
+ fi
- # update ARP cache of neighboring computers
- /sbin/arping -q -A -c 1 -I ${REALDEVICE} ${IPADDR}
- ( sleep 2;
- /sbin/arping -q -U -c 1 -I ${REALDEVICE} ${IPADDR} ) > /dev/null 2>&1 < /dev/null &
- fi
+ if ! LC_ALL=C ip addr ls ${REALDEVICE} | LC_ALL=C grep -q "${ipaddr[$idx]}/${prefix[$idx]}" ; then
+ [ "${REALDEVICE}" != "lo" ] && \
+ if ! /sbin/arping -q -c 2 -w 3 -D -I ${REALDEVICE} ${ipaddr[$idx]} ; then
+ echo $"Error, some other host already uses address ${ipaddr[$idx]}."
+ exit 1
+ fi
+
+ if ! ip addr add ${ipaddr[$idx]}/${prefix[$idx]} \
+ brd ${broadcast[$idx]:-+} dev ${REALDEVICE} ${SCOPE} label ${DEVICE}; then
+ echo $"Error adding address ${ipaddr[$idx]} for ${DEVICE}."
+ fi
+ fi
+
+ if [ -n "$SRCADDR" ]; then
+ sysctl -w "net.ipv4.conf.${REALDEVICE}.arp_filter=1" >/dev/null 2>&1
+ fi
+
+ # update ARP cache of neighboring computers
+ if [ "${REALDEVICE}" != "lo" ]; then
+ /sbin/arping -q -A -c 1 -I ${REALDEVICE} ${ipaddr[$idx]}
+ ( sleep 2;
+ /sbin/arping -q -U -c 1 -I ${REALDEVICE} ${ipaddr[$idx]} ) > /dev/null 2>&1 < /dev/null &
+ fi
+ done
# Set a default route.
if [ "${DEFROUTE}" != "no" ] && [ -z "${GATEWAYDEV}" -o "${GATEWAYDEV}" = "${REALDEVICE}" ]; then
diff --git a/sysconfig/network-scripts/network-functions b/sysconfig/network-scripts/network-functions
index 9645a379..3b5695f7 100644
--- a/sysconfig/network-scripts/network-functions
+++ b/sysconfig/network-scripts/network-functions
@@ -156,20 +156,36 @@ source_config ()
expand_config ()
{
- if [ -z "${NETMASK}" ]; then
- eval $(/bin/ipcalc --netmask ${IPADDR})
- fi
+ local i=0 val
+ for idx in '' {0..255} ; do
+ ipaddr[$i]=$(eval echo '$'IPADDR$idx)
+ if [ -z "${ipaddr[$i]}" ]; then
+ [ "$idx" ] && [ $idx -gt 2 ] && break
+ continue
+ fi
+ prefix[$i]=$(eval echo '$'PREFIX$idx)
+ netmask[$i]=$(eval echo '$'NETMASK$idx)
+ broadcast[$i]=$(eval echo '$'BROADCAST$idx)
- if [ -z "${PREFIX}" ]; then
- eval $(/bin/ipcalc --prefix ${IPADDR} ${NETMASK})
- fi
+ if [ "${netmask[$i]}x" = "x" ]; then
+ val=$(/bin/ipcalc --netmask "${ipaddr[$i]}")
+ netmask[$i]=${val##NETMASK=}
+ fi
- if [ -z "${BROADCAST}" ]; then
- eval $(/bin/ipcalc --broadcast ${IPADDR} ${NETMASK})
- fi
+ if [ "${prefix[$i]}x" = "x" ]; then
+ val=$(/bin/ipcalc --prefix ${ipaddr[$i]} ${netmask[$i]})
+ prefix[$i]=${val##PREFIX=}
+ fi
+
+ if [ "${broadcast[$i]}x" = "x" ]; then
+ val=$(/bin/ipcalc --broadcast ${ipaddr[$i]} ${netmask[$i]})
+ broadcast[$i]=${val##BROADCAST=}
+ fi
+ i=$((i+1))
+ done
if [ -z "${NETWORK}" ]; then
- eval $(/bin/ipcalc --network ${IPADDR} ${NETMASK})
+ eval $(/bin/ipcalc --network ${ipaddr[0]} ${netmask[0]})
fi
}