Dhcpcd: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
Cosmo (talk | contribs)
Updated to version 5 as per svn (20100828) book
 
(15 intermediate revisions by 4 users not shown)
Line 2: Line 2:
|-
|-
!Download Source:
!Download Source:
| http://download.berlios.de/dhcpcd/dhcpcd-{{Dhcpcd-Version}}.tar.bz2
| http://roy.marples.name/downloads/dhcpcd/dhcpcd-{{Dhcpcd-Version}}.tar.bz2
|}
|}


----
----


== Introduction to Dhcpcd ==
{{Package-Introduction|A DHCP client|http://roy.marples.name/dhcpcd}}
 
Dhcpcd is an implementation of the DHCP client specified in RFC2131. This is useful for connecting your computer to a network which uses DHCP to assign network addresses.  


== Dependencies ==
== Dependencies ==


== Non-Multilib ==
== Non-Multilib ==
Configure the package:
./configure --prefix=/usr --sbindir=/sbin \
    --sysconfdir=/etc --dbdir=/var/lib/dhcpcd --libexecdir=/usr/lib/dhcpcd


Compile the package:
Compile the package:


  make CC="gcc"
  make


Install the package
Install the package
Line 27: Line 30:


=== 32Bit ===
=== 32Bit ===
Configure the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr --sbindir=/sbin \
    --sysconfdir=/etc --dbdir=/var/lib/dhcpcd --libexecdir=/usr/lib/dhcpcd


Compile the package:
Compile the package:


  make CC="gcc ${BUILD32}"
  make


Install the package
Install the package
Line 37: Line 45:


=== N32 ===
=== N32 ===
Configure the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --sbindir=/sbin \
    --sysconfdir=/etc --dbdir=/var/lib/dhcpcd --libexecdir=/usr/lib/dhcpcd


Compile the package:
Compile the package:


  make CC="gcc ${BUILDN32}"
  make


Install the package
Install the package
Line 47: Line 60:


=== 64Bit ===
=== 64Bit ===
Configure the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr --sbindir=/sbin \
    --sysconfdir=/etc --dbdir=/var/lib/dhcpcd --libexecdir=/usr/lib/dhcpcd


Compile the package:
Compile the package:


  make CC="gcc ${BUILD64}"
  make


Install the package
Install the package


  make install
  make install
== Configuring ==
=== Network Service ===
Install the dhcpcd service included in the [[bootscripts]] package:
make install-service-dhcpcd
=== Example Configuration ===
cd /etc/sysconfig/network-devices &&
mkdir -v ifconfig.eth0 &&
cat > ifconfig.eth0/dhcpcd << "EOF"
ONBOOT="yes"
SERVICE="dhcpcd"
# Start Command for DHCPCD
DHCP_START="-q"
# Stop Command for DHCPCD
DHCP_STOP="-k"
EOF
[[Category:Network Utilities]]

Latest revision as of 02:15, 15 October 2010

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

Introduction to Dhcpcd

A DHCP client

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

Dependencies

Non-Multilib

Configure the package:

./configure --prefix=/usr --sbindir=/sbin \
   --sysconfdir=/etc --dbdir=/var/lib/dhcpcd --libexecdir=/usr/lib/dhcpcd

Compile the package:

make

Install the package

make install

Multilib

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

32Bit

Configure the package:

CC="gcc ${BUILD32}" ./configure --prefix=/usr --sbindir=/sbin \
   --sysconfdir=/etc --dbdir=/var/lib/dhcpcd --libexecdir=/usr/lib/dhcpcd

Compile the package:

make

Install the package

make install

N32

Configure the package:

CC="gcc ${BUILDN32}" ./configure --prefix=/usr --sbindir=/sbin \
   --sysconfdir=/etc --dbdir=/var/lib/dhcpcd --libexecdir=/usr/lib/dhcpcd

Compile the package:

make

Install the package

make install

64Bit

Configure the package:

CC="gcc ${BUILD64}" ./configure --prefix=/usr --sbindir=/sbin \
   --sysconfdir=/etc --dbdir=/var/lib/dhcpcd --libexecdir=/usr/lib/dhcpcd

Compile the package:

make

Install the package

make install

Configuring

Network Service

Install the dhcpcd service included in the bootscripts package:

make install-service-dhcpcd

Example Configuration

cd /etc/sysconfig/network-devices &&
mkdir -v ifconfig.eth0 &&
cat > ifconfig.eth0/dhcpcd << "EOF"
ONBOOT="yes"
SERVICE="dhcpcd"

# Start Command for DHCPCD
DHCP_START="-q"

# Stop Command for DHCPCD
DHCP_STOP="-k"
EOF
Retrieved from "?title=Dhcpcd&oldid=20322"