uesler
(usa Ubuntu)
Enviado em 21/05/2012 - 14:15h
Boa Tarde,
Estou configurando meu primeiro servidor DHCP - Ubuntu Server.
quando digito comando para inicializar o dhcp apresenta o erro abaixo.
Gostaria de saber onde esta o erro?
COMANDO:
root@ServidorProxy:/etc# /etc/init.d/isc-dhcp-server start
--------------------------------------------------------------------------------
ERRO:
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service isc-dhcp-server start
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start isc-dhcp-server
start: Job failed to start
---------------------------------------------------------------------------------
eth0 – internet roteador
eth1 – rede local
ABAIXO SEGUE CONFIGURA DO MEU SERVIDOR>
--------------------------------------------------
/etc/network/interfaces
auto lo eth0 eth1
iface lo inet loopback
iface eth0 inet dhcp
iface eth1 inet static
address 192.168.1.1
netmask 255.255.255.0
broadcast 192.168.1.255
network 192.168.1.0
---------------------------------------------------------
/etc/network# ifconfig
eth0 Link encap:Ethernet Endereço de HW 00:08:54:a9:8c:66
inet end.: 192.168.0.100 Bcast:192.168.0.255 Masc:255.255.255.0
endereço inet6: fe80::208:54ff:fea9:8c66/64 Escopo:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Métrica:1
pacotes RX:970 erros:0 descartados:0 excesso:0 quadro:0
Pacotes TX:698 erros:0 descartados:0 excesso:0 portadora:0
colisões:0 txqueuelen:1000
RX bytes:149069 (149.0 KB) TX bytes:108164 (108.1 KB)
IRQ:21 Endereço de E/S:0x1000
eth1 Link encap:Ethernet Endereço de HW 00:1c:c0:22:a4:66
inet end.: 192.168.1.1 Bcast:192.168.1.255 Masc:255.255.255.0
UP BROADCAST MULTICAST MTU:1500 Métrica:1
pacotes RX:0 erros:0 descartados:0 excesso:0 quadro:0
Pacotes TX:0 erros:0 descartados:0 excesso:0 portadora:0
colisões:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
IRQ:20 Memória:90380000-903a0000
lo Link encap:Loopback Local
inet end.: 127.0.0.1 Masc:255.0.0.0
endereço inet6: ::1/128 Escopo:Máquina
UP LOOPBACK RUNNING MTU:16436 Métrica:1
pacotes RX:30 erros:0 descartados:0 excesso:0 quadro:0
Pacotes TX:30 erros:0 descartados:0 excesso:0 portadora:0
colisões:0 txqueuelen:0
RX bytes:1964 (1.9 KB) TX bytes:1964 (1.9 KB)
-------------------------------------------------
/etc/dhcp/dhcpd.conf
ddns-update-style name;
default-lease-time 600;
max-lease-time 7200;
authoritative;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.100 192.168.1.200;
options routers 192.168.1.1;
options domain-name-servers 201.10.128.2,201.10.120.3;
options broadcast-address 192.168.1.255;
-------------------------------------------------------
/etc/resolv.conf
nameserver 192.168.0.1