marcelolaiz
(usa Debian)
Enviado em 09/11/2016 - 16:39h
Boa tarde!
Preciso de um servidor DHCP com roteamento para usar na escola, tenho um link de 25 megas da Net
Preciso de ajuda pois o DHCP do modem da Net não suporta muitos usuários e trava a cada 4 horas.
Fiz uma instalação do Debian GNU/Linux 8 (jessie) 32-bit Gnome 3.14.1 em um computador Dell vostro com duas placas de rede.
Instalei o dhcp e fiz as configurações ok.
No ifconfig só sobe uma placa (da internet) e a outra eu tenho que subir manual.
Mas o DHCP dá erro.
root@debian:/home/ti# /etc/init.d/isc-dhcp-server restart
[....] Restarting isc-dhcp-server (via systemctl): isc-dhcp-server.serviceJob for isc-dhcp-server.service failed. See 'systemctl status isc-dhcp-server.service' and 'journalctl -xn' for details.
failed!
Arquivo: /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# the primary network interface
auto eth1
iface eth1 inet dhcp
auto eth0
iface eth0 inet static
adress 172.16.2.2
netmask 255.255.255.0
broadcast 172.255.255.255
network 172.16.2.0
route 172.16.2.1
root@debian:/home/ti# ifconfig
eth0 Link encap:Ethernet Endereço de HW 00:e0:4c:68:07:3a
UP BROADCASTMULTICAST MTU:1500 Métrica:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
colisões:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
eth1 Link encap:Ethernet Endereço de HW a4:ba:db:06:1e:ee
inet end.: 172.16.2.78 Bcast:172.16.3.255 Masc:255.255.254.0
endereço inet6: fe80::a6ba:dbff:fe06:1eee/64 Escopo:Link
endereço inet6: 2804:14d:78d0:88c4:a6ba:dbff:fe06:1eee/64 Escopo:Global
UP BROADCASTRUNNING MULTICAST MTU:1500 Métrica:1
RX packets:86 errors:0 dropped:0 overruns:0 frame:0
TX packets:68 errors:0 dropped:0 overruns:0 carrier:0
colisões:0 txqueuelen:1000
RX bytes:14007 (13.6 KiB) TX bytes:11408 (11.1 KiB)
IRQ:18
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 LOOPBACKRUNNING MTU:65536 Métrica:1
RX packets:203 errors:0 dropped:0 overruns:0 frame:0
TX packets:203 errors:0 dropped:0 overruns:0 carrier:0
colisões:0 txqueuelen:0
RX bytes:25685 (25.0 KiB) TX bytes:25685 (25.0 KiB)
Arquivo: /etc/dhcp/dhcpd.conf
# This is a very basic subnet declaration.
ddns-update-style none;
default-lease-time 3600;
max-lease-time 7200;
authoritative;
subnet 172.16.2.0 netmask 255.255.255.0 {
range 172.16.2.5 172.16.2.253;
option subnet-mask 255.255.255.0;
option domain-name-servers 8.8.8.8,8.8.4.4;
option routers 172.16.2.10;
option broadcast-address 172.16.2.255;
}
root@debian:/# grep -i dhcp /var/log/syslog | tail -500
Nov 9 07:53:12 debian dhclient: DHCPREQUEST on eth0 to 172.16.2.1 port 67
Nov 9 07:53:13 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 08:19:36 debian dhclient: DHCPREQUEST on eth0 to 172.16.2.1 port 67
Nov 9 08:19:37 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 08:26:36 debian dhclient: Internet Systems Consortium DHCP Client 4.3.1
Nov 9 08:26:36 debian dhclient: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 08:26:36 debian networking[259]: Configuring network interfaces...Internet Systems Consortium DHCP Client 4.3.1
Nov 9 08:26:36 debian networking[259]: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 08:26:36 debian dhclient: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 4
Nov 9 08:26:36 debian networking[259]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 4
Nov 9 08:26:36 debian dhclient: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 8
Nov 9 08:26:36 debian networking[259]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 8
Nov 9 08:26:36 debian dhclient: DHCPREQUEST on eth1 to 255.255.255.255 port 67
Nov 9 08:26:36 debian dhclient: DHCPOFFER from 172.16.2.1
Nov 9 08:26:36 debian networking[259]: DHCPREQUEST on eth1 to 255.255.255.255 port 67
Nov 9 08:26:36 debian networking[259]: DHCPOFFER from 172.16.2.1
Nov 9 08:26:36 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 08:26:36 debian networking[259]: DHCPACK from 172.16.2.1
Nov 9 08:26:36 debian systemd[1]: Starting LSB: DHCP server...
Nov 9 08:26:36 debian dhcpd: Internet Systems Consortium DHCP Server 4.3.1
Nov 9 08:26:36 debian dhcpd: Copyright 2004-2014 Internet Systems Consortium.
Nov 9 08:26:36 debian dhcpd: All rights reserved.
Nov 9 08:26:36 debian dhcpd: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 08:26:36 debian dhcpd: Internet Systems Consortium DHCP Server 4.3.1
Nov 9 08:26:36 debian dhcpd: Copyright 2004-2014 Internet Systems Consortium.
Nov 9 08:26:36 debian dhcpd: All rights reserved.
Nov 9 08:26:36 debian dhcpd: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 08:26:36 debian dhcpd: Wrote 0 leases to leases file.
Nov 9 08:26:36 debian dhcpd:
Nov 9 08:26:36 debian dhcpd: No subnet declaration for eth1 (172.16.2.78).
Nov 9 08:26:36 debian dhcpd: ** Ignoring requests on eth1. If this is not what
Nov 9 08:26:36 debian dhcpd: you want, please write a subnet declaration
Nov 9 08:26:36 debian dhcpd: in your dhcpd.conf file for the network segment
Nov 9 08:26:36 debian dhcpd: to which interface eth1 is attached. **
Nov 9 08:26:36 debian dhcpd:
Nov 9 08:26:36 debian dhcpd:
Nov 9 08:26:36 debian dhcpd: Not configured to listen on any interfaces!
Nov 9 08:26:36 debian dhcpd:
Nov 9 08:26:36 debian dhcpd: If you think you have received this message due to a bug rather
Nov 9 08:26:36 debian dhcpd: than a configuration issue please read the section on submitting
Nov 9 08:26:36 debian dhcpd: bugs on either our web page at
www.isc.org or in the README file
Nov 9 08:26:36 debian dhcpd: before submitting a bug. These pages explain the proper
Nov 9 08:26:36 debian dhcpd: process and the information we find helpful for debugging..
Nov 9 08:26:36 debian dhcpd:
Nov 9 08:26:36 debian dhcpd: exiting.
Nov 9 08:26:36 debian isc-dhcp-server[655]: Starting ISC DHCP server: dhcpdcheck syslog for diagnostics. ... failed!
Nov 9 08:26:36 debian isc-dhcp-server[655]: failed!
Nov 9 08:26:36 debian systemd[1]: isc-dhcp-server.service: control process exited, code=exited status=1
Nov 9 08:26:36 debian systemd[1]: Failed to start LSB: DHCP server.
Nov 9 08:26:36 debian systemd[1]: Unit isc-dhcp-server.service entered failed state.
Nov 9 08:38:00 debian dhclient: Internet Systems Consortium DHCP Client 4.3.1
Nov 9 08:38:00 debian dhclient: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 08:38:00 debian networking[1824]: Internet Systems Consortium DHCP Client 4.3.1
Nov 9 08:38:00 debian networking[1824]: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 08:38:01 debian dhclient: DHCPRELEASE on eth1 to 172.16.2.1 port 67
Nov 9 08:38:01 debian networking[1824]: DHCPRELEASE on eth1 to 172.16.2.1 port 67
Nov 9 08:38:01 debian dhclient: Internet Systems Consortium DHCP Client 4.3.1
Nov 9 08:38:01 debian dhclient: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 08:38:01 debian networking[1876]: Configuring network interfaces...Internet Systems Consortium DHCP Client 4.3.1
Nov 9 08:38:01 debian networking[1876]: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 08:38:01 debian dhclient: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 8
Nov 9 08:38:01 debian networking[1876]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 8
Nov 9 08:38:09 debian dhclient: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 20
Nov 9 08:38:09 debian networking[1876]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 20
Nov 9 08:38:09 debian dhclient: DHCPREQUEST on eth1 to 255.255.255.255 port 67
Nov 9 08:38:09 debian dhclient: DHCPOFFER from 172.16.2.1
Nov 9 08:38:09 debian networking[1876]: DHCPREQUEST on eth1 to 255.255.255.255 port 67
Nov 9 08:38:09 debian networking[1876]: DHCPOFFER from 172.16.2.1
Nov 9 08:38:10 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 08:38:10 debian networking[1876]: DHCPACK from 172.16.2.1
Nov 9 08:51:16 debian dhclient: Internet Systems Consortium DHCP Client 4.3.1
Nov 9 08:51:16 debian dhclient: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 08:51:16 debian networking[255]: Configuring network interfaces...Internet Systems Consortium DHCP Client 4.3.1
Nov 9 08:51:16 debian networking[255]: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 08:51:16 debian dhclient: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 3
Nov 9 08:51:16 debian networking[255]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 3
Nov 9 08:51:16 debian dhclient: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 8
Nov 9 08:51:16 debian networking[255]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 8
Nov 9 08:51:16 debian dhclient: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 8
Nov 9 08:51:16 debian networking[255]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 8
Nov 9 08:51:16 debian dhclient: DHCPREQUEST on eth1 to 255.255.255.255 port 67
Nov 9 08:51:16 debian dhclient: DHCPOFFER from 172.16.2.1
Nov 9 08:51:16 debian networking[255]: DHCPREQUEST on eth1 to 255.255.255.255 port 67
Nov 9 08:51:16 debian networking[255]: DHCPOFFER from 172.16.2.1
Nov 9 08:51:16 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 08:51:16 debian networking[255]: DHCPACK from 172.16.2.1
Nov 9 08:51:16 debian systemd[1]: Starting LSB: DHCP server...
Nov 9 08:51:16 debian dhcpd: /etc/dhcp/dhcpd.conf line 50: semicolon expected.
Nov 9 08:51:16 debian dhcpd: option
Nov 9 08:51:16 debian dhcpd: ^
Nov 9 08:51:16 debian dhcpd: Configuration file errors encountered -- exiting
Nov 9 08:51:16 debian dhcpd:
Nov 9 08:51:16 debian dhcpd: If you think you have received this message due to a bug rather
Nov 9 08:51:16 debian dhcpd: than a configuration issue please read the section on submitting
Nov 9 08:51:16 debian dhcpd: bugs on either our web page at
www.isc.org or in the README file
Nov 9 08:51:16 debian dhcpd: before submitting a bug. These pages explain the proper
Nov 9 08:51:16 debian dhcpd: process and the information we find helpful for debugging..
Nov 9 08:51:16 debian dhcpd:
Nov 9 08:51:16 debian dhcpd: exiting.
Nov 9 08:51:16 debian isc-dhcp-server[656]: dhcpd self-test failed. Please fix /etc/dhcp/dhcpd.conf.
Nov 9 08:51:16 debian isc-dhcp-server[656]: The error was:
Nov 9 08:51:16 debian dhcpd: Internet Systems Consortium DHCP Server 4.3.1
Nov 9 08:51:16 debian dhcpd: Copyright 2004-2014 Internet Systems Consortium.
Nov 9 08:51:16 debian dhcpd: All rights reserved.
Nov 9 08:51:16 debian dhcpd: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 08:51:16 debian dhcpd: Config file: /etc/dhcp/dhcpd.conf
Nov 9 08:51:16 debian dhcpd: Database file: /var/lib/dhcp/dhcpd.leases
Nov 9 08:51:16 debian dhcpd: PID file: /var/run/dhcpd.pid
Nov 9 08:51:16 debian isc-dhcp-server[656]: Internet Systems Consortium DHCP Server 4.3.1
Nov 9 08:51:16 debian isc-dhcp-server[656]: Copyright 2004-2014 Internet Systems Consortium.
Nov 9 08:51:16 debian isc-dhcp-server[656]: All rights reserved.
Nov 9 08:51:16 debian isc-dhcp-server[656]: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 08:51:16 debian isc-dhcp-server[656]: Config file: /etc/dhcp/dhcpd.conf
Nov 9 08:51:16 debian isc-dhcp-server[656]: Database file: /var/lib/dhcp/dhcpd.leases
Nov 9 08:51:16 debian isc-dhcp-server[656]: PID file: /var/run/dhcpd.pid
Nov 9 08:51:16 debian dhcpd: /etc/dhcp/dhcpd.conf line 50: semicolon expected.
Nov 9 08:51:16 debian dhcpd: option
Nov 9 08:51:16 debian dhcpd: ^
Nov 9 08:51:16 debian dhcpd: Configuration file errors encountered -- exiting
Nov 9 08:51:16 debian dhcpd:
Nov 9 08:51:16 debian dhcpd: If you think you have received this message due to a bug rather
Nov 9 08:51:16 debian dhcpd: than a configuration issue please read the section on submitting
Nov 9 08:51:16 debian dhcpd: bugs on either our web page at
www.isc.org or in the README file
Nov 9 08:51:16 debian dhcpd: before submitting a bug. These pages explain the proper
Nov 9 08:51:16 debian dhcpd: process and the information we find helpful for debugging..
Nov 9 08:51:16 debian dhcpd:
Nov 9 08:51:16 debian dhcpd: exiting.
Nov 9 08:51:16 debian isc-dhcp-server[656]: /etc/dhcp/dhcpd.conf line 50: semicolon expected.
Nov 9 08:51:16 debian isc-dhcp-server[656]: option
Nov 9 08:51:16 debian isc-dhcp-server[656]: ^
Nov 9 08:51:16 debian isc-dhcp-server[656]: Configuration file errors encountered -- exiting
Nov 9 08:51:16 debian isc-dhcp-server[656]: If you think you have received this message due to a bug rather
Nov 9 08:51:16 debian isc-dhcp-server[656]: than a configuration issue please read the section on submitting
Nov 9 08:51:16 debian isc-dhcp-server[656]: bugs on either our web page at
www.isc.org or in the README file
Nov 9 08:51:16 debian isc-dhcp-server[656]: before submitting a bug. These pages explain the proper
Nov 9 08:51:16 debian isc-dhcp-server[656]: process and the information we find helpful for debugging..
Nov 9 08:51:16 debian isc-dhcp-server[656]: exiting.
Nov 9 08:51:16 debian systemd[1]: isc-dhcp-server.service: control process exited, code=exited status=1
Nov 9 08:51:16 debian systemd[1]: Failed to start LSB: DHCP server.
Nov 9 08:51:16 debian systemd[1]: Unit isc-dhcp-server.service entered failed state.
Nov 9 09:18:06 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 09:18:07 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 09:40:44 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 09:40:45 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 09:46:09 debian systemd[1]: Starting LSB: DHCP server...
Nov 9 09:46:09 debian dhcpd: /etc/dhcp/dhcpd.conf line 50: semicolon expected.
Nov 9 09:46:09 debian dhcpd: option
Nov 9 09:46:09 debian dhcpd: ^
Nov 9 09:46:09 debian dhcpd: Configuration file errors encountered -- exiting
Nov 9 09:46:09 debian dhcpd:
Nov 9 09:46:09 debian dhcpd: If you think you have received this message due to a bug rather
Nov 9 09:46:09 debian dhcpd: than a configuration issue please read the section on submitting
Nov 9 09:46:09 debian dhcpd: bugs on either our web page at
www.isc.org or in the README file
Nov 9 09:46:09 debian dhcpd: before submitting a bug. These pages explain the proper
Nov 9 09:46:09 debian dhcpd: process and the information we find helpful for debugging..
Nov 9 09:46:09 debian dhcpd:
Nov 9 09:46:09 debian dhcpd: exiting.
Nov 9 09:46:09 debian isc-dhcp-server[2411]: dhcpd self-test failed. Please fix /etc/dhcp/dhcpd.conf.
Nov 9 09:46:09 debian isc-dhcp-server[2411]: The error was:
Nov 9 09:46:09 debian dhcpd: Internet Systems Consortium DHCP Server 4.3.1
Nov 9 09:46:09 debian dhcpd: Copyright 2004-2014 Internet Systems Consortium.
Nov 9 09:46:09 debian dhcpd: All rights reserved.
Nov 9 09:46:09 debian dhcpd: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 09:46:09 debian dhcpd: Config file: /etc/dhcp/dhcpd.conf
Nov 9 09:46:09 debian dhcpd: Database file: /var/lib/dhcp/dhcpd.leases
Nov 9 09:46:09 debian dhcpd: PID file: /var/run/dhcpd.pid
Nov 9 09:46:09 debian isc-dhcp-server[2411]: Internet Systems Consortium DHCP Server 4.3.1
Nov 9 09:46:09 debian isc-dhcp-server[2411]: Copyright 2004-2014 Internet Systems Consortium.
Nov 9 09:46:09 debian isc-dhcp-server[2411]: All rights reserved.
Nov 9 09:46:09 debian isc-dhcp-server[2411]: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 09:46:09 debian isc-dhcp-server[2411]: Config file: /etc/dhcp/dhcpd.conf
Nov 9 09:46:09 debian isc-dhcp-server[2411]: Database file: /var/lib/dhcp/dhcpd.leases
Nov 9 09:46:09 debian isc-dhcp-server[2411]: PID file: /var/run/dhcpd.pid
Nov 9 09:46:09 debian dhcpd: /etc/dhcp/dhcpd.conf line 50: semicolon expected.
Nov 9 09:46:09 debian dhcpd: option
Nov 9 09:46:09 debian dhcpd: ^
Nov 9 09:46:09 debian dhcpd: Configuration file errors encountered -- exiting
Nov 9 09:46:09 debian dhcpd:
Nov 9 09:46:09 debian dhcpd: If you think you have received this message due to a bug rather
Nov 9 09:46:09 debian dhcpd: than a configuration issue please read the section on submitting
Nov 9 09:46:09 debian dhcpd: bugs on either our web page at
www.isc.org or in the README file
Nov 9 09:46:09 debian dhcpd: before submitting a bug. These pages explain the proper
Nov 9 09:46:09 debian dhcpd: process and the information we find helpful for debugging..
Nov 9 09:46:09 debian dhcpd:
Nov 9 09:46:09 debian dhcpd: exiting.
Nov 9 09:46:09 debian systemd[1]: isc-dhcp-server.service: control process exited, code=exited status=1
Nov 9 09:46:09 debian systemd[1]: Failed to start LSB: DHCP server.
Nov 9 09:46:09 debian systemd[1]: Unit isc-dhcp-server.service entered failed state.
Nov 9 09:46:09 debian isc-dhcp-server[2411]: /etc/dhcp/dhcpd.conf line 50: semicolon expected.
Nov 9 09:46:09 debian isc-dhcp-server[2411]: option
Nov 9 09:46:09 debian isc-dhcp-server[2411]: ^
Nov 9 09:46:09 debian isc-dhcp-server[2411]: Configuration file errors encountered -- exiting
Nov 9 09:46:09 debian isc-dhcp-server[2411]: If you think you have received this message due to a bug rather
Nov 9 09:46:09 debian isc-dhcp-server[2411]: than a configuration issue please read the section on submitting
Nov 9 09:46:09 debian isc-dhcp-server[2411]: bugs on either our web page at
www.isc.org or in the README file
Nov 9 09:46:09 debian isc-dhcp-server[2411]: before submitting a bug. These pages explain the proper
Nov 9 09:46:09 debian isc-dhcp-server[2411]: process and the information we find helpful for debugging..
Nov 9 09:46:09 debian isc-dhcp-server[2411]: exiting.
Nov 9 09:46:21 debian systemd[1]: Starting LSB: DHCP server...
Nov 9 09:46:21 debian dhcpd: /etc/dhcp/dhcpd.conf line 50: semicolon expected.
Nov 9 09:46:21 debian dhcpd: option
Nov 9 09:46:21 debian dhcpd: ^
Nov 9 09:46:21 debian dhcpd: Configuration file errors encountered -- exiting
Nov 9 09:46:21 debian dhcpd:
Nov 9 09:46:21 debian dhcpd: If you think you have received this message due to a bug rather
Nov 9 09:46:21 debian dhcpd: than a configuration issue please read the section on submitting
Nov 9 09:46:21 debian dhcpd: bugs on either our web page at
www.isc.org or in the README file
Nov 9 09:46:21 debian dhcpd: before submitting a bug. These pages explain the proper
Nov 9 09:46:21 debian dhcpd: process and the information we find helpful for debugging..
Nov 9 09:46:21 debian dhcpd:
Nov 9 09:46:21 debian dhcpd: exiting.
Nov 9 09:46:21 debian isc-dhcp-server[2447]: dhcpd self-test failed. Please fix /etc/dhcp/dhcpd.conf.
Nov 9 09:46:21 debian isc-dhcp-server[2447]: The error was:
Nov 9 09:46:21 debian dhcpd: Internet Systems Consortium DHCP Server 4.3.1
Nov 9 09:46:21 debian isc-dhcp-server[2447]: Internet Systems Consortium DHCP Server 4.3.1
Nov 9 09:46:21 debian dhcpd: Copyright 2004-2014 Internet Systems Consortium.
Nov 9 09:46:21 debian isc-dhcp-server[2447]: Copyright 2004-2014 Internet Systems Consortium.
Nov 9 09:46:21 debian dhcpd: All rights reserved.
Nov 9 09:46:21 debian dhcpd: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 09:46:21 debian dhcpd: Config file: /etc/dhcp/dhcpd.conf
Nov 9 09:46:21 debian dhcpd: Database file: /var/lib/dhcp/dhcpd.leases
Nov 9 09:46:21 debian dhcpd: PID file: /var/run/dhcpd.pid
Nov 9 09:46:21 debian isc-dhcp-server[2447]: All rights reserved.
Nov 9 09:46:21 debian isc-dhcp-server[2447]: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 09:46:21 debian isc-dhcp-server[2447]: Config file: /etc/dhcp/dhcpd.conf
Nov 9 09:46:21 debian isc-dhcp-server[2447]: Database file: /var/lib/dhcp/dhcpd.leases
Nov 9 09:46:21 debian isc-dhcp-server[2447]: PID file: /var/run/dhcpd.pid
Nov 9 09:46:21 debian dhcpd: /etc/dhcp/dhcpd.conf line 50: semicolon expected.
Nov 9 09:46:21 debian dhcpd: option
Nov 9 09:46:21 debian dhcpd: ^
Nov 9 09:46:21 debian isc-dhcp-server[2447]: /etc/dhcp/dhcpd.conf line 50: semicolon expected.
Nov 9 09:46:21 debian isc-dhcp-server[2447]: option
Nov 9 09:46:21 debian isc-dhcp-server[2447]: ^
Nov 9 09:46:21 debian dhcpd: Configuration file errors encountered -- exiting
Nov 9 09:46:21 debian isc-dhcp-server[2447]: Configuration file errors encountered -- exiting
Nov 9 09:46:21 debian dhcpd:
Nov 9 09:46:21 debian dhcpd: If you think you have received this message due to a bug rather
Nov 9 09:46:21 debian dhcpd: than a configuration issue please read the section on submitting
Nov 9 09:46:21 debian dhcpd: bugs on either our web page at
www.isc.org or in the README file
Nov 9 09:46:21 debian dhcpd: before submitting a bug. These pages explain the proper
Nov 9 09:46:21 debian dhcpd: process and the information we find helpful for debugging..
Nov 9 09:46:21 debian dhcpd:
Nov 9 09:46:21 debian dhcpd: exiting.
Nov 9 09:46:21 debian systemd[1]: isc-dhcp-server.service: control process exited, code=exited status=1
Nov 9 09:46:21 debian systemd[1]: Failed to start LSB: DHCP server.
Nov 9 09:46:21 debian systemd[1]: Unit isc-dhcp-server.service entered failed state.
Nov 9 09:46:21 debian isc-dhcp-server[2447]: If you think you have received this message due to a bug rather
Nov 9 09:46:21 debian isc-dhcp-server[2447]: than a configuration issue please read the section on submitting
Nov 9 09:46:21 debian isc-dhcp-server[2447]: bugs on either our web page at
www.isc.org or in the README file
Nov 9 09:46:21 debian isc-dhcp-server[2447]: before submitting a bug. These pages explain the proper
Nov 9 09:46:21 debian isc-dhcp-server[2447]: process and the information we find helpful for debugging..
Nov 9 09:46:21 debian isc-dhcp-server[2447]: exiting.
Nov 9 10:09:44 debian systemd[1]: Starting LSB: DHCP server...
Nov 9 10:09:44 debian dhcpd: Wrote 0 leases to leases file.
Nov 9 10:09:44 debian dhcpd:
Nov 9 10:09:44 debian dhcpd: No subnet declaration for eth0 (no IPv4 addresses).
Nov 9 10:09:44 debian dhcpd: ** Ignoring requests on eth0. If this is not what
Nov 9 10:09:44 debian dhcpd: you want, please write a subnet declaration
Nov 9 10:09:44 debian dhcpd: in your dhcpd.conf file for the network segment
Nov 9 10:09:44 debian dhcpd: to which interface eth0 is attached. **
Nov 9 10:09:44 debian dhcpd:
Nov 9 10:09:44 debian dhcpd:
Nov 9 10:09:44 debian dhcpd: Not configured to listen on any interfaces!
Nov 9 10:09:44 debian dhcpd:
Nov 9 10:09:44 debian dhcpd: If you think you have received this message due to a bug rather
Nov 9 10:09:44 debian dhcpd: than a configuration issue please read the section on submitting
Nov 9 10:09:44 debian dhcpd: bugs on either our web page at
www.isc.org or in the README file
Nov 9 10:09:44 debian dhcpd: before submitting a bug. These pages explain the proper
Nov 9 10:09:44 debian dhcpd: process and the information we find helpful for debugging..
Nov 9 10:09:44 debian dhcpd:
Nov 9 10:09:44 debian dhcpd: exiting.
Nov 9 10:09:46 debian isc-dhcp-server[2746]: Starting ISC DHCP server: dhcpdcheck syslog for diagnostics. ... failed!
Nov 9 10:09:46 debian isc-dhcp-server[2746]: failed!
Nov 9 10:09:46 debian systemd[1]: isc-dhcp-server.service: control process exited, code=exited status=1
Nov 9 10:09:46 debian systemd[1]: Failed to start LSB: DHCP server.
Nov 9 10:09:46 debian systemd[1]: Unit isc-dhcp-server.service entered failed state.
Nov 9 10:10:00 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 10:10:01 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 10:11:46 debian systemd[1]: Starting LSB: DHCP server...
Nov 9 10:11:46 debian dhcpd: Wrote 0 leases to leases file.
Nov 9 10:11:46 debian dhcpd:
Nov 9 10:11:46 debian dhcpd: No subnet declaration for eth0 (no IPv4 addresses).
Nov 9 10:11:46 debian dhcpd: ** Ignoring requests on eth0. If this is not what
Nov 9 10:11:46 debian dhcpd: you want, please write a subnet declaration
Nov 9 10:11:46 debian dhcpd: in your dhcpd.conf file for the network segment
Nov 9 10:11:46 debian dhcpd: to which interface eth0 is attached. **
Nov 9 10:11:46 debian dhcpd:
Nov 9 10:11:46 debian dhcpd:
Nov 9 10:11:46 debian dhcpd: Not configured to listen on any interfaces!
Nov 9 10:11:46 debian dhcpd:
Nov 9 10:11:46 debian dhcpd: If you think you have received this message due to a bug rather
Nov 9 10:11:46 debian dhcpd: than a configuration issue please read the section on submitting
Nov 9 10:11:46 debian dhcpd: bugs on either our web page at
www.isc.org or in the README file
Nov 9 10:11:46 debian dhcpd: before submitting a bug. These pages explain the proper
Nov 9 10:11:46 debian dhcpd: process and the information we find helpful for debugging..
Nov 9 10:11:46 debian dhcpd:
Nov 9 10:11:46 debian dhcpd: exiting.
Nov 9 10:11:48 debian isc-dhcp-server[2826]: Starting ISC DHCP server: dhcpdcheck syslog for diagnostics. ... failed!
Nov 9 10:11:48 debian isc-dhcp-server[2826]: failed!
Nov 9 10:11:48 debian systemd[1]: isc-dhcp-server.service: control process exited, code=exited status=1
Nov 9 10:11:48 debian systemd[1]: Failed to start LSB: DHCP server.
Nov 9 10:11:48 debian systemd[1]: Unit isc-dhcp-server.service entered failed state.
Nov 9 10:12:06 debian systemd[1]: Starting LSB: DHCP server...
Nov 9 10:12:06 debian dhcpd: Wrote 0 leases to leases file.
Nov 9 10:12:06 debian dhcpd:
Nov 9 10:12:06 debian dhcpd: No subnet declaration for eth0 (no IPv4 addresses).
Nov 9 10:12:06 debian dhcpd: ** Ignoring requests on eth0. If this is not what
Nov 9 10:12:06 debian dhcpd: you want, please write a subnet declaration
Nov 9 10:12:06 debian dhcpd: in your dhcpd.conf file for the network segment
Nov 9 10:12:06 debian dhcpd: to which interface eth0 is attached. **
Nov 9 10:12:06 debian dhcpd:
Nov 9 10:12:06 debian dhcpd:
Nov 9 10:12:06 debian dhcpd: Not configured to listen on any interfaces!
Nov 9 10:12:06 debian dhcpd:
Nov 9 10:12:06 debian dhcpd: If you think you have received this message due to a bug rather
Nov 9 10:12:06 debian dhcpd: than a configuration issue please read the section on submitting
Nov 9 10:12:06 debian dhcpd: bugs on either our web page at
www.isc.org or in the README file
Nov 9 10:12:06 debian dhcpd: before submitting a bug. These pages explain the proper
Nov 9 10:12:06 debian dhcpd: process and the information we find helpful for debugging..
Nov 9 10:12:06 debian dhcpd:
Nov 9 10:12:06 debian dhcpd: exiting.
Nov 9 10:12:08 debian isc-dhcp-server[2884]: Starting ISC DHCP server: dhcpdcheck syslog for diagnostics. ... failed!
Nov 9 10:12:08 debian isc-dhcp-server[2884]: failed!
Nov 9 10:12:08 debian systemd[1]: isc-dhcp-server.service: control process exited, code=exited status=1
Nov 9 10:12:08 debian systemd[1]: Failed to start LSB: DHCP server.
Nov 9 10:12:08 debian systemd[1]: Unit isc-dhcp-server.service entered failed state.
Nov 9 10:38:06 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 10:38:07 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 11:01:07 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 11:01:07 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 11:28:25 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 11:28:26 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 11:53:33 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 11:53:34 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 12:19:05 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 12:19:06 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 12:44:50 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 12:44:51 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 13:09:05 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 13:09:06 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 13:29:59 debian dhclient: Internet Systems Consortium DHCP Client 4.3.1
Nov 9 13:29:59 debian dhclient: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 13:29:59 debian networking[5064]: Internet Systems Consortium DHCP Client 4.3.1
Nov 9 13:29:59 debian networking[5064]: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 13:29:59 debian dhclient: DHCPRELEASE on eth1 to 172.16.2.1 port 67
Nov 9 13:29:59 debian networking[5064]: DHCPRELEASE on eth1 to 172.16.2.1 port 67
Nov 9 13:29:59 debian dhclient: Internet Systems Consortium DHCP Client 4.3.1
Nov 9 13:29:59 debian dhclient: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 13:29:59 debian networking[5117]: Configuring network interfaces...Internet Systems Consortium DHCP Client 4.3.1
Nov 9 13:29:59 debian networking[5117]: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 13:29:59 debian dhclient: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 6
Nov 9 13:29:59 debian networking[5117]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 6
Nov 9 13:30:05 debian dhclient: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 13
Nov 9 13:30:05 debian networking[5117]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 13
Nov 9 13:30:05 debian dhclient: DHCPREQUEST on eth1 to 255.255.255.255 port 67
Nov 9 13:30:05 debian dhclient: DHCPOFFER from 172.16.2.1
Nov 9 13:30:05 debian networking[5117]: DHCPREQUEST on eth1 to 255.255.255.255 port 67
Nov 9 13:30:05 debian networking[5117]: DHCPOFFER from 172.16.2.1
Nov 9 13:30:06 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 13:30:06 debian networking[5117]: DHCPACK from 172.16.2.1
Nov 9 13:34:56 debian dhclient: Internet Systems Consortium DHCP Client 4.3.1
Nov 9 13:34:56 debian dhclient: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 13:34:56 debian networking[5315]: Internet Systems Consortium DHCP Client 4.3.1
Nov 9 13:34:56 debian networking[5315]: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 13:34:56 debian dhclient: DHCPRELEASE on eth1 to 172.16.2.1 port 67
Nov 9 13:34:56 debian networking[5315]: DHCPRELEASE on eth1 to 172.16.2.1 port 67
Nov 9 13:34:56 debian dhclient: Internet Systems Consortium DHCP Client 4.3.1
Nov 9 13:34:56 debian dhclient: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 13:34:56 debian networking[5368]: Configuring network interfaces...Internet Systems Consortium DHCP Client 4.3.1
Nov 9 13:34:56 debian networking[5368]: For info, please visit
www.isc.org/software/dhcp/">https://
www.isc.org/software/dhcp/
Nov 9 13:34:56 debian dhclient: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 6
Nov 9 13:34:56 debian networking[5368]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 6
Nov 9 13:35:02 debian dhclient: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 17
Nov 9 13:35:02 debian networking[5368]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 17
Nov 9 13:35:02 debian dhclient: DHCPREQUEST on eth1 to 255.255.255.255 port 67
Nov 9 13:35:02 debian dhclient: DHCPOFFER from 172.16.2.1
Nov 9 13:35:02 debian networking[5368]: DHCPREQUEST on eth1 to 255.255.255.255 port 67
Nov 9 13:35:02 debian networking[5368]: DHCPOFFER from 172.16.2.1
Nov 9 13:35:04 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 13:35:04 debian networking[5368]: DHCPACK from 172.16.2.1
Nov 9 13:38:30 debian systemd[1]: Starting LSB: DHCP server...
Nov 9 13:38:30 debian dhcpd: Wrote 0 leases to leases file.
Nov 9 13:38:30 debian dhcpd:
Nov 9 13:38:30 debian dhcpd: No subnet declaration for eth0 (no IPv4 addresses).
Nov 9 13:38:30 debian dhcpd: ** Ignoring requests on eth0. If this is not what
Nov 9 13:38:30 debian dhcpd: you want, please write a subnet declaration
Nov 9 13:38:30 debian dhcpd: in your dhcpd.conf file for the network segment
Nov 9 13:38:30 debian dhcpd: to which interface eth0 is attached. **
Nov 9 13:38:30 debian dhcpd:
Nov 9 13:38:30 debian dhcpd:
Nov 9 13:38:30 debian dhcpd: Not configured to listen on any interfaces!
Nov 9 13:38:30 debian dhcpd:
Nov 9 13:38:30 debian dhcpd: If you think you have received this message due to a bug rather
Nov 9 13:38:30 debian dhcpd: than a configuration issue please read the section on submitting
Nov 9 13:38:30 debian dhcpd: bugs on either our web page at
www.isc.org or in the README file
Nov 9 13:38:30 debian dhcpd: before submitting a bug. These pages explain the proper
Nov 9 13:38:30 debian dhcpd: process and the information we find helpful for debugging..
Nov 9 13:38:30 debian dhcpd:
Nov 9 13:38:30 debian dhcpd: exiting.
Nov 9 13:38:32 debian isc-dhcp-server[5570]: Starting ISC DHCP server: dhcpdcheck syslog for diagnostics. ... failed!
Nov 9 13:38:32 debian isc-dhcp-server[5570]: failed!
Nov 9 13:38:32 debian systemd[1]: isc-dhcp-server.service: control process exited, code=exited status=1
Nov 9 13:38:32 debian systemd[1]: Failed to start LSB: DHCP server.
Nov 9 13:38:32 debian systemd[1]: Unit isc-dhcp-server.service entered failed state.
Nov 9 13:39:34 debian systemd[1]: Starting LSB: DHCP server...
Nov 9 13:39:34 debian dhcpd: Wrote 0 leases to leases file.
Nov 9 13:39:34 debian dhcpd:
Nov 9 13:39:34 debian dhcpd: No subnet declaration for eth0 (no IPv4 addresses).
Nov 9 13:39:34 debian dhcpd: ** Ignoring requests on eth0. If this is not what
Nov 9 13:39:34 debian dhcpd: you want, please write a subnet declaration
Nov 9 13:39:34 debian dhcpd: in your dhcpd.conf file for the network segment
Nov 9 13:39:34 debian dhcpd: to which interface eth0 is attached. **
Nov 9 13:39:34 debian dhcpd:
Nov 9 13:39:34 debian dhcpd:
Nov 9 13:39:34 debian dhcpd: Not configured to listen on any interfaces!
Nov 9 13:39:34 debian dhcpd:
Nov 9 13:39:34 debian dhcpd: If you think you have received this message due to a bug rather
Nov 9 13:39:34 debian dhcpd: than a configuration issue please read the section on submitting
Nov 9 13:39:34 debian dhcpd: bugs on either our web page at
www.isc.org or in the README file
Nov 9 13:39:34 debian dhcpd: before submitting a bug. These pages explain the proper
Nov 9 13:39:34 debian dhcpd: process and the information we find helpful for debugging..
Nov 9 13:39:34 debian dhcpd:
Nov 9 13:39:34 debian dhcpd: exiting.
Nov 9 13:39:36 debian isc-dhcp-server[6114]: Starting ISC DHCP server: dhcpdcheck syslog for diagnostics. ... failed!
Nov 9 13:39:36 debian isc-dhcp-server[6114]: failed!
Nov 9 13:39:36 debian systemd[1]: isc-dhcp-server.service: control process exited, code=exited status=1
Nov 9 13:39:36 debian systemd[1]: Failed to start LSB: DHCP server.
Nov 9 13:39:36 debian systemd[1]: Unit isc-dhcp-server.service entered failed state.
Nov 9 14:04:18 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 14:04:19 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 14:33:32 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 14:33:33 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 14:58:30 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 14:58:31 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 15:22:23 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 15:22:24 debian dhclient: DHCPACK from 172.16.2.1
Nov 9 15:49:29 debian dhclient: DHCPREQUEST on eth1 to 172.16.2.1 port 67
Nov 9 15:49:30 debian dhclient: DHCPACK from 172.16.2.1
Obrigado.