jeferson_paiva
(usa Fedora)
Enviado em 27/05/2010 - 15:17h
Pessoal eu ja tentei de todos os modos fazer o meu dhcp funcionar, mas da erro, eu uso fedora 12.
eu to tentando fazer ele distribuir da placa de rede com fio para sem fio, eth0 > wlan0. isso para poder usar o squid.
na verdade sou iniciante com linux, meu negocio e mais windows, mas quero abandonar aquele treco,flw...
esse é o meu dhcpd.conf
# Ajuste DHCPD aos pedidos da resposta na relação sem fio
DHCPDARGS=wlan0;
# Ajuste alguns defeitos para o método do tempo do aluguer e da actualização do DNS
ddns-update-style ad-hoc;
default-lease-time 600;
max-lease-time 7200;
# mascara de rede para ip sem fio
option subnet-mask 255.255.255.0;
# Set the Broadcast address. This will be 10.x.x.255,
# the "x.x" will depend upon the network assigned to you by NZWireless.
option broadcast-address 10.1.1.255;
# Set the router address, this will be 10.x.x.1, the address
# of your wireless interface WLAN0
option routers 10.1.2.1;
# Set the Name Server address. This will be the same as your WLAN0 address
# because we intend to run DNS on this machine.
option domain-name-servers 10.1.1.1;
# Set the default domain name for clients on this network.
# i.e. the DNS domain assigned to you by your wireless administrator.
option domain-name "simon.akld.nzwireless.org";
# Allocate a network range for dynamic IP addresses to hand out to clients.
# Again, this range will be in 10.x.x.x, depending upon the network allocated
# to you by your wireless administrator.
subnet 10.1.2.0 netmask 255.255.255.0 {
range 10.1.2.10 10.1.2.20;
}