Autor Tópico: Não consigo fazer config do DHCP  (Lida 1276 vezes)

Offline Rayane Soriano

  • Usuário Ubuntu
  • *
  • Mensagens: 1
    • Ver perfil
Não consigo fazer config do DHCP
« Online: 02 de Outubro de 2010, 14:43 »

Olá Pessoal,

Primeiramente gostaria de pedir desculpas se já existe um tópico como esse, mas eu procurei no site e não encontrei uma solução. Perdoe-me se fiz algo duplicado  :-[

Preciso de ajuda!! rs sou iniciante!!!

Tenho um Dell Power Edge T310 com o ubuntu 9.10 (ainda não coloquei o 10.4)

Minha conexão é vírtua!
Tenho 15 máquinas na rede com windows 7, o problema é que elas não conseguem se conectar se eu colocar para detectar o ip automaticamente, só quando indico o local da rede.
Segue meus arquivos de config.


interfaces:

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

auto eth1
iface eth1 inet static
address 10.1.1.1
netmask 255.255.255.0
network 10.1.1.0
broadcast 10.1.1.255

Sendo que eth0 para o cabo do modem e eth1 para rede local

arquivo de dhcpd.conf

#
# Sample configuration file for ISC dhcpd for Debian
#
# Attention: If /etc/ltsp/dhcpd.conf exists, that will be used as
# configuration file instead of this file.
#
# $Id: dhcpd.conf,v 1.1.1.1 2002/05/21 00:07:44 peloy Exp $
#

# The ddns-updates-style parameter controls whether or not the server will
# attempt to do a DNS update when a lease is confirmed. We default to the
# behavior of the version 2 packages ('none', since DHCP v2 didn't
# have support for DDNS.)
ddns-update-style none;

# option definitions common to all supported networks...
option domain-name "x.com.br";
option domain-name-servers x.x.x.x, x.x.x.x;

default-lease-time 43200;
max-lease-time 43200;

# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;

# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;

# No service will be given on this subnet, but declaring it helps the
# DHCP server to understand the network topology.

#subnet 192.168.0.1 netmask 255.255.255.0 {
#}

# This is a very basic subnet declaration.

subnet 10.1.1.1 netmask 255.255.255.0 {
 range 10.1.1.2 10.1.1.100;
#  option routers
}

# This declaration allows BOOTP clients to get dynamic addresses,
# which we don't really recommend.

#subnet 192.168.0.1 netmask 255.255.255. {
#  range dynamic-bootp 192.168.0.40 192.168.0.60;
#  option broadcast-address 192.168.0.255;
#  option routers 192.168.1.102;
#}

# A slightly different configuration for an internal subnet.
 subnet 10.1.1.1 netmask 255.255.255.0 {
  range 10.1.1.2 10.1.1.100;
  option domain-name-servers x.x.x.x;
  option domain-name "x.com.br";
  option routers 10.1.1.1;   acho que aqui esta errado
  option broadcast-address 10.1.1.255;
 default-lease-time 21600;
 max-lease-time 43200;
}


Já rodei o comando
Modprobe iptable_nat
Echo 1 > /proc/sys/net/ipv4/ip_forward

Não sei mais o que fazer…
Poderiam me ajudar?

Desde já agradeço!















Offline zekkerj

  • Usuário Ubuntu
  • *
  • Mensagens: 19.736
  • Gratidão gera gratidão, lamúria atrai lamúria...
    • Ver perfil
    • Blog do Zekke
Re: Não consigo fazer config do DHCP
« Resposta #1 Online: 03 de Outubro de 2010, 13:02 »
edite o arquivo "/etc/default/dhcp3-server", procure a linha abaixo:

INTERFACES=""

Altere-a para citar apenas a interface eth1:

INTERFACES="eth1"
Pesquise antes de perguntar, sua dúvida pode já ter sido respondida.
Não respondo dúvidas por MP, coloque sua dúvida no fórum onde ela pode ser pesquisada pelos seus colegas!
Não venha ao fórum apenas para perguntar. Se você sabe a resposta de um problema, porque não ajudar seu colega? ;D