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.

256 questions
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
4 answers

Can't start isc-dhcp-server because of the Error : Not configured to listen on any interfaces

I try to set up a wifi access point with hostapd and isc-dhcpd but the dhcp server dont work.The conf file is the same i found in this tutorial: [Hostapd : The Linux Way to create Virtual Wifi Access Point][1] !!!!ok i think i wont get any help…
ABeater
  • 51
  • 1
  • 1
  • 4
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
5
votes
2 answers

Why do I get "No subnet declaration" starting ISC DHCP server on subinterfaces?

I have created two subinterfaces on eth0 : eth0:0 with IP 192.168.10.1/24 eth0:1 with IP 192.168.11.1/24 Configured /etc/dhcp/dhcpd.conf like that: option domain-name-server 194.204.159.1; subnet 192.168.10.0 netmask 255.255.255.0 { option…
someHOW
  • 51
  • 1
  • 4
5
votes
2 answers

DHCPv6: passing delegated prefix to local RA

I currently have an Airport Extreme as my home office firewall. In addition to handling IPv4 NAT, my ISP (Comcast) delegates an IPv6 prefix to the Airport, which in turn assigns the delegated prefix to my LAN interface and sends the appropriate…
caw
  • 389
  • 2
  • 6
5
votes
2 answers

DHCP: One NIC and multiple subnets

I'm setting up a Debian to work as a gateway for a small office network. I need to have three subnetworks for different areas within the company and I will define which PCs will get what IP based on their MAC addresses. My question is: is it…
El Barto
  • 963
  • 5
  • 16
  • 24
5
votes
2 answers

Is it possible to run pre-Lion OS X in an IPv6-only environment without static configuration?

Is it possible to run pre-Lion OS X in an IPv6-only environment without static configuration? From what I've been able to figure out, OS X 10.6.x will acquire an address via SLAAC, but it doesn't appear to support either DHCPv6 or the RDNSS/DNSSL…
larsks
  • 43,623
  • 14
  • 121
  • 180
5
votes
3 answers

Where is dhcpd's syslog message formats documented?

I am looking at bunch of syslog messages written by dhcpd. I want to write a quick parser that can deconstruct the message into its component parts, but I don't know what the various parts mean. I assume this is documented somewhere, but my simple…
Chas. Owens
  • 2,053
  • 2
  • 21
  • 24
4
votes
3 answers

A Linux DHCP server that will listen on an non-broadcast (tap) interface?

Are there any Linux DHCP servers that will listen to what Cisco calls an "unnumbered" interface, or what others might call a "NBMA" (non-broadcast) interface. I have a Linux system that connects to a number of others using GRE tunnels. The machines…
TomOnTime
  • 7,945
  • 6
  • 32
  • 52
4
votes
1 answer

dhcpd.conf "Configuration file errors encountered"

I want to set up the isc-dhcp-server, but the dhcp.conf file generates an error while testing with dhcpd -t: ... /etc/dhcp/dhcpd.conf line 6: expecting a parameter or declaration authoritative; ^ Configuration file errors encountered…
Darth-RPi
  • 43
  • 1
  • 1
  • 5
4
votes
1 answer

rfc 6939 support for dhcpv6 relay

isc-dhcp-server now supports rfc6939 as of version 4.3, and I would like to be able use it as it is quite nice to be able to just use the mac address to identify dhcpv6 clients. However, I can't seem to find a dhcpv6 relay that supports rfc 6939,…
Bryce Larson
  • 141
  • 3
4
votes
1 answer

ISC DHCP Server "Dynamic and static leases present"

i have a problem similar to Fixed and dynamic IPs in ISC DHPD lead to double lease In my DHCP-Log I often receive warnings like Jan 21 10:20:56 dc2 dhcpd: Dynamic and static leases present for 192.168.1.107. Jan 21 10:20:56 dc2 dhcpd: Remove host…
user333163
  • 73
  • 1
  • 1
  • 8
4
votes
0 answers

Samba4 internal DNS and isc-dhcp zone update

Could anybody explain, how to solve this problem with internal samba4 DNS and dynamic zone updates from isc-dhcp? In the logs I have: dhcpd: Unable to add reverse map from 170.5.168.192.in-addr.arpa. to dus-ws-21a.nmedia.local: tsig verify…
kbu
  • 255
  • 4
  • 14
4
votes
0 answers

DHCP fault tolerant servers: Split pool or failover?

I need to replace an aging DHCP server by a fault tolerant solution. I consider using the ISC dhcp server solution which can be setup either as split servers serving non-overlapping ip ranges or as a master-slave cluster. The network is of the SOHO…
ripat
  • 183
  • 2
  • 10
4
votes
2 answers

DHCP failover with isc-dhcp-server using two secondary servers

I'm rearranging our network and putting some DHCP failover since we have a lot of machines, and even servers, getting IP addresses with DHCP. Today we have a nice DNS topology with one master server and two slaves. The DHCP gives the slaves address…
Vinícius Ferrão
  • 5,520
  • 11
  • 55
  • 95
1
2
3
17 18