blob: 44fbb89fe8b3d3b39aa7683393c17d236bf47829 [file] [log] [blame] [raw]
#!/bin/bash
# Copyright (C) 2000-2008, Parallels, 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 as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
# Adds IP address(es) in a container running SuSE 7.
VENET_DEV=venet0
CFGFILE=/etc/rc.config
function setup_network()
{
NETCONFIG_ID=0
[ -f $CFGFILE ] || return 0
# Set up venet0 interface config file inside CT
put_param "$CFGFILE" NETCONFIG "_${NETCONFIG_ID}"
put_param "$CFGFILE" IPADDR_0 "127.0.0.1"
put_param "$CFGFILE" NETDEV_0 venet0
put_param "$CFGFILE" IFCONFIG_0 "127.0.0.1 netmask 255.255.255.255 up"
put_param "$CFGFILE" IP_FORWARD yes
# set default routes
routefile=/etc/route.conf
if ! grep -qE "127\.0\.0\.1.*255\.255\.255\.255[ ]*lo" \
$routefile 2>/dev/null
then
echo "127.0.0.1 * 255.255.255.255 lo" >> $routefile
fi
if ! grep -qE "default.*0\.0\.0\.0[ ]*venet0" \
$routefile 2>/dev/null
then
echo "default * 0.0.0.0 venet0" >> $routefile
fi
}
function get_net_ids()
{
NETCONFIG_ID=`grep -E "^NETCONFIG=" ${CFGFILE} | head -n1 | sed -e 's/NETCONFIG=\(.*\)$/\1/' -e 's/["_]//g'`
[ -z "${NETCONFIG_ID}" ] && NETCONFIG_ID=0
}
function add_ip()
{
local ip ipm id netconfig aliasid
local IP_NUM=0
# In case we are starting CT
if [ "x$VE_STATE" = "xstarting" -o "${IPDELALL}" = "yes" ]; then
setup_network
else
get_net_ids
fi
# create NETCONFIG, IPADDR_x, NETDEV_x and IFCONFIG_x strings
# Get last id
for id in ${NETCONFIG_ID}; do
netconfig="${netconfig} _${id}"
IP_NUM=${id}
done
# create appropriate records for each given IP addr
for ipm in ${IP_ADDR}; do
ip_conv $ipm
aliasid=${IP_NUM}
let IP_NUM=IP_NUM+1
# build 'IPADDR_x' records
put_param ${CFGFILE} IPADDR_${IP_NUM} "${_IP}"
# build 'NETDEV_x' records
put_param ${CFGFILE} NETDEV_${IP_NUM} "venet0:${aliasid}"
# build 'IFCONFIG_x' records
put_param ${CFGFILE} IFCONFIG_${IP_NUM} "${_IP} up"
netconfig="${netconfig} _${IP_NUM}"
done
put_param ${CFGFILE} NETCONFIG "${netconfig}"
if [ "x$VE_STATE" = "xrunning" ]; then
/etc/init.d/network restart
fi
chmod 644 $CFGFILE
}
add_ip
exit 0
# end of script