View Full Version : Disabling DHCP on a HD installed knoppix
goudiemark
08-19-2004, 04:47 PM
How do I disable DHCP from running on interface ETH0?
I have set /etc/network/interfaces up properly but on boot it still asks for asks the DHCP for an address.
If i do an ifdown eth0 then ifup eth0 it uses the static address not the dhcp'ed address.
Mucki
08-20-2004, 06:41 PM
Hi,
I have the same problem and I am still looking for a solution.
May anybody help me?
Even the problem is, that machine with knoppix on it is my DHCP-Server.
gruntbuggly
08-20-2004, 10:05 PM
If you don't want the DHCP client to run at all then a quick and dirty way is to do, as root:
chmod -x /sbin/pump
Mucki
08-20-2004, 11:03 PM
I am running DHCP on that machine, but the DHCP request, wich the computer during the start makes worries me.
I have a fixed IP-Adress for my local network here set to that card, but any time on start up the computer tries to get DHCP-Information for himself from out of the local net. After reboot I start ifconfig and then the network is running with the specified values.
What do I have to do, to become those fixed values every time during reboot to run?
I don't really undestand the question, but try to figure it out. I assume this is hd installation.
1) If you don't want dhcp to try get an ip for you, try append cheat codes = nodhcp onto /etc/lilo.conf. Don't forget to update lilo by running lilo afterward.
2) If your IP resetting everytime you boot and your static ip don't stick, there is two way you can solve the problem.
a) Edit your /etc/init.d/knoppix-autoconfig:
comment out line that reads: pump -i $DEVICE >/dev/null 2>&1 &
and add line : /etc/init.d/networking restart
or
b) You can create a script consist of this lines:
#!/bin/sh
ifconfig eth0 down
/etc/init.d/networking stop
rmmod *xxx
insmod *xxx *xxx= your network card module
ifconfig eth0 up
/etc/init.d/networking start
name it to what ever you wan't ex: mynet.sh and save it in /etc/init.d
and run update-rc.d mynet.sh defaults so it can run on boot. To remove , run update-rc.d -f mynet.sh remove .
3) If you not using gateway, remove it from your /etc/network/interfaces
Might or might not work. Use at your own risk. :lol: :lol:
Powered by vBulletin® Version 4.2.2 Copyright © 2026 vBulletin Solutions, Inc. All rights reserved.