[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] how to manually delete an IP Address
- Subject: Re: [cobalt-users] how to manually delete an IP Address
- From: Kris Dahl <krislists@xxxxxxxxxxxxx>
- Date: Thu May 18 11:11:26 2000
on 5/18/00 9:09 AM, Luc Schiltz at becher@xxxxxx wrote:
> Hi,
>
> we need to remove an IP address from our raq3
> not via the gui but manually
>
> does anybody know where the routing configfiles are stored ?
You mean where are the interface config files located?
That would be /etc/sysconfig/network-scripts.
to figure out which one is what you want, do a
cd /etc/sysconfig/networks-scripts
grep "10.0.0.5" *
it will tell you what file.
To take that interface down, type
./ifdown eth0:5
where eth0:5 is the config file you got back from the grep command above
that matches the ip you're looking for.
Then delete that file so that next time you restart it won't reactivate the
ip.
-k