Questions tagged [isc-dhcp]

ISC DHCP is open source software that implements the Dynamic Host Configuration Protocols for connection to a local network. It is a reference implementation of those protocols, but it is also production-grade software, suitable for use in high-volume and high-reliability applications. DHCP is available for free download under the terms of the ISC License, a BSD style license.

ISC DHCP is open source software that implements the Dynamic Host Configuration Protocols for connection to a local network. It is a reference implementation of those protocols, but it is also production-grade software, suitable for use in high-volume and high-reliability applications. DHCP is available for free download under the terms of the ISC License, a BSD style license.

254 questions
18
votes
6 answers

DHCPDISCOVER/DHCPOFFER, but no DHCPACK

I have a remote client machine that is sending out DHCPDISCOVER's. The server is responding with a DHCPOFFER, but there is no DHCPACK. This repeats about every 30 seconds from the same host. Is there something I can do remotely or do I need to get…
hookenz
  • 14,132
  • 22
  • 86
  • 142
16
votes
3 answers

ISC DHCP infinite lease time

How can i configure ISC DHCP server to infinite lease time for all clients? man dhcpd: Lease Lengths DHCP leases can be assigned almost any length from zero seconds to infinity. What lease length makes sense for any given subnet,…
pylover
  • 708
  • 3
  • 9
  • 15
12
votes
2 answers

How to ignore a set of Mac addresses in dhcpd.conf?

Is it possible in dhcpd.conf to ignore requests from a set of MAC addresses? Something like this: host vminstances { hardware ethernet d0:0d:*; ignore booting; }
Roberto Aloi
  • 565
  • 2
  • 5
  • 14
11
votes
3 answers

How to configure radvd, dhcpd6, routing and /64 subnet based on delegated prefix by DHCPv6-PD server?

My ISP has just started IPv4/IPv6 dual stack service. In order to connect IPv4/IPv6 internet, almost all users usually use a CPE leased by the ISP. But I want to use my Linux router instead of such CPE, because my router has so many roles(a lot of…
takaomag
  • 241
  • 1
  • 3
  • 6
11
votes
1 answer

Is "broadcast-address" necessary in dhcpd.conf?

Or, more generally, is it required to specify the broadcast address that a client should use when a DHCP server is assigning an address?
Jed Daniels
  • 7,172
  • 2
  • 33
  • 41
9
votes
1 answer

Can I request a specific IP address via DHCP without rejecting an offer of a different address from the DHCP server?

Using isc-dhcp-client on ubuntu server 16.04, there's an option that sounds like it should do what i want: send dhcp-requested-address 10.23.33.254; When this option is present in my dhclient.conf file, my client does exactly what I want: always…
notatoad
  • 191
  • 1
  • 2
9
votes
2 answers

Assign DHCP IPs for specific MAC prefixes

I'm running a ISC DHCPd server for my network serving a number of subnets. One of the things I would like to do is assign a specific range of IPs to hosts with a common MAC prefix (ex. 00:01:02). Also, the assignments have to be able to be…
Jon Bailey
  • 257
  • 1
  • 4
  • 11
8
votes
4 answers

DHCP on-the-fly block assignment

We have a large number of clients who connect to our DHCP machine. We want to assign some of them to a different IP block, which is routed with lower priority. Every DHCP lease renewal, we'd like to check a database and decide which IP block we'd…
Andomar
  • 933
  • 1
  • 10
  • 23
8
votes
7 answers

DHCP server with database backend

I have been looking around for something to replace my (ancient) ISC-DHCPd server. A DHCP server with a database backend sounds like a great idea to me, as I could then have a nice, friendly web interface to my server. Surprisingly, I can't any…
Cory J
  • 1,528
  • 4
  • 19
  • 28
7
votes
4 answers

Windows 7 Client flooding network with DHCP requests. Not setting IP

I have a small network, with 15 workstations, SAMBA AD, and a bunch of Virtualized linux servers. All the workstations, and servers are on the same subnet. All workstations are running Windows 7 Pro Both my Samba 4 DC, and ISC-DHCP-SERVER are…
Skye Bowen
  • 71
  • 4
7
votes
3 answers

Exclude IP address from DHCP pool

Is there a way to exclude a single IP address from a DHCP pool? For various reasons I have a machine that I can't reconfigure or move off the network (let's call it a printer). It has been hard coded with address x.x.x.50 and my DHCP pool is…
James Butler
  • 388
  • 1
  • 4
  • 14
6
votes
1 answer

Fixed and dynamic IPs in ISC DHPD lead to double lease

I would like to have a small dynamic adress part and the most clients are assigned a fixed IP adress. My dhcpd.conf looks like this: use-host-decl-names on; authoritative; allow client-updates; ddns-updates on; # Einstellungen fuer DHCP…
GorillaPatch
  • 477
  • 3
  • 9
  • 19
6
votes
5 answers

DHCP: Logging host declarations in log file

I am currently running ISC-DHCP server v3 on Ubuntu 8.04. What I am trying to do is log Who got what IP address when. Currently in the DHCP log file you can see the following: DHCPDISCOVER from d0:50:56:ac:74:71 via eth0 DHCPOFFER on 208.x.x.75…
jinanwow
  • 443
  • 6
  • 15
5
votes
0 answers

BIND: DNS failover and high availability with dynamic updates

I am trying to design a system with 2 servers that act as both DHCP and DNS servers with dynamic updates. I am using ISC DHCP and BIND9. It looks like this. Server1 - DHCP primary and DNS master. IP address - 10.99.99.11 Server2 - DHCP secondary and…
5
votes
2 answers

isc dhcp class with more match

Is there any way to define more matches with OR? I would like to create a class with a mac address check, like class "fixVms" { match if substring (hardware, 1, 4) = 00:15:5d:aa; } but I would like to add another macs to it, like subclass "fixVms"…
ADIX
  • 53
  • 1
  • 4
1
2 3
16 17