Dhcpcd: Difference between revisions

From CBLFS
Jump to navigationJump to search
Hoeth (talk | contribs)
Project web site and new version
Line 2: Line 2:
|-
|-
!Download Source:
!Download Source:
| http://download.berlios.de/dhcpcd/dhcpcd-{{Dhcpcd-Version}}.tar.bz2
| http://roy.marples.name/dhcpcd/dhcpcd-{{Dhcpcd-Version}}.tar.bz2
|}
|}


----
----


{{Blank-Package-Introduction}}
{{Package-Introduction|A DHCP client|http://roy.marples.name/dhcpcd}}


== Dependencies ==
== Dependencies ==

Revision as of 05:41, 2 March 2008

Download Source: http://roy.marples.name/dhcpcd/dhcpcd-5.2.8.tar.bz2

Introduction to Dhcpcd

A DHCP client

Project Homepage: http://roy.marples.name/dhcpcd

Dependencies

Non-Multilib

Compile the package:

make CC="gcc"

Install the package

make install

Multilib

This package does not provide any libraries so only one installation is needed.

32Bit

Compile the package:

make CC="gcc ${BUILD32}" 

Install the package

make install

N32

Compile the package:

make CC="gcc ${BUILDN32}"

Install the package

make install

64Bit

Compile the package:

make CC="gcc ${BUILD64}"

Install the package

make install

Configuring

Network Service

Install the dhcpcd service included in the bootscripts package:

make install-service-dhcpcd

Example Configuration

install -v -d /etc/sysconfig/network-devices/ifconfig.eth0 &&
cat > /etc/sysconfig/network-devices/ifconfig.eth0/dhcpcd << "EOF"
ONBOOT="yes"
SERVICE="dhcpcd"
DHCP_START=""
DHCP_STOP="-k"

# Set PRINTIP="yes" to have the script print
# the DHCP assigned IP address
PRINTIP="no"

# Set PRINTALL="yes" to print the DHCP assigned values for
# IP, SM, DG, and 1st NS. This requires PRINTIP="yes".
PRINTALL="no"
EOF
Retrieved from "?title=Dhcpcd&oldid=13516"