dan wrote:
>
> Hi
> I have a linux box running 5.1 and its connected to the net via a LAN
> card with a static IP address, I'm testing out some web server functions but
> I want to put some more static IP Addresses on the box (Static IP per Domain
> name) The way I have tried is I start X as root then I:
>
> 1. click on network configuration
> 2. select the "interfaces" tab
> 3. select an ethernet interface
> 4. click on the "clone" button
> 5. fill in the parameters
> 6. click on the "save" button
> 7. click on the "activate" button
>
> And bingo it works... BUT then on reboot it does not activate and have to
> go in click activate...... anyone have any ideas on whats wrong.. Or maybe
> another way to do this.... Or ahhhhh anything?
> Thanks in Advance.
> Dan
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-net" in
> the body of a message to [EMAIL PROTECTED]
Hi,
check this file
/etc/sysconfig/network-scripts/ifup-aliases
for lines like this:
if [ -x /bin/linuxconf ] ; then
# ask linuxconf for lines like:
# add <device> <ip>
# del <device>
# reload <number_of_aliases>
linuxconf --hint ipalias $1 | while read verb arg1 arg2 arg3 arg4; do
In my redhat 5.2 box with linuxconf-1.12r5-6rh and initscripts-3.78-2.2
the command:
linuxconf --hint
does not work.
In the linuxconf site there is a solucion for this issue.
But if you want to solve the problem replace:
if [ -x /bin/linuxconf ] ; then
with this:
if [ ! -x /bin/linuxconf ] ; then
It works for me
C-ya
--
Oliver Schulze L.
[EMAIL PROTECTED]
Asuncion-Paraguay
http://www.pla.net.py/home/oliver/
-
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to [EMAIL PROTECTED]