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
3
votes
1 answer

Aliased network interfaces and isc dhcp server

I have been banging my head on this for a long time now. There are many discussions on the net about this and similar problems, but none of the solutions seems to work for me. I have a Debian server with two ethernet network interfaces. One of them…
Jonatan
  • 145
  • 1
  • 7
3
votes
0 answers

ISC DHCPD IPv6 for multiple interfaces

I want to assign multiple IPv6 to a server with multiple NIC. As IPv6 RFC defines, each server has a unique DUID that can have one of the 3 formats (LL, LLT or enterprise). And each NIC has an IAID. So a request from NIC1 its the DUID and the IAID…
Seoman
  • 243
  • 1
  • 3
  • 11
3
votes
4 answers

Computer gets IP from DHCP server but has no internet connection

I've installed an isc-dhcp-server on Ubuntu 12.10 and I'm trying to setup a DHCP server on a head node for six worker computers in the local network. The head node itself is a DHCP client receiving the IP-address 192.168.20.1 (on eth0) from an other…
user2611216
  • 31
  • 1
  • 1
  • 4
3
votes
1 answer

Cannot assign IP address according to an option parameter

I have this DHCP conf file: authoritative; option domain-name "XXX.XXX.XX"; allow bootp; ddns-update-style ad-hoc; class "karpuz-kabugu" { match if (substring (option user-class, 0, 6) = "karpuz"); log (info, "karpuz-kabugu"); } …
Alptugay
  • 211
  • 3
  • 8
3
votes
1 answer

Is there a match on incoming interface in DHCPd classes?

(Note, the title of the question Is there a way to classify DHCP requests based on the interface they're coming from? is what I want answered, but it doesn't actually ask that question for a non-dhcp relay situation, and the answer doesn't help here…
Nick Bastin
  • 213
  • 2
  • 8
3
votes
2 answers

Iptables - Allowing only a single dhcp (relay) client

I am trying to create a firewall rule on an Ubuntu 10.04 server running isc-dhcpd. I only want dhcp to be accessible by a single relay host (172.1.1.1). I have iptables set up like so: # iptables -vnL Chain INPUT (policy ACCEPT 5325 packets, 523K…
Cory J
  • 1,568
  • 5
  • 19
  • 28
3
votes
1 answer

Windows 7 Failing Ping on IPv6 in DHCP Setup

I have set up a test ISC DHCP server that is not connected to an internet with DHCP and DHCPv6. I also have a Cisco 3750G with IPv6 enabled. I have firewalls off on both machines. My Windows 7 machine will get both an IPv4 and an IPv6…
bradlis7
  • 353
  • 1
  • 5
  • 17
2
votes
1 answer

Configuring isc-dhcpd server for DHCPv6 with multiple NTP addresses

I'm trying to configure a DHCPv6 server to provide more than one NTP address (option 56) using the isc-dhcpd server. Is there a currently supported way of doing this? My first attempt was defining a custom option 56 in the configuration to be an…
vbeljan
  • 21
  • 1
2
votes
0 answers

Clear routes from DHCP option 121

I have 3 subnets 192.168.10.0/24 192.168.103.0/24 192.168.2.0/24 Most of them can route to each other via static routes defined in their respective default gateways. However due to some interesting... hardware it is not possible to configure routes…
Qowy
  • 36
  • 2
2
votes
2 answers

How do I purge dhcpd.leases?

I'm running DHCPD (isc-dhcp-4.2.4) on an Ubuntu 14.04 system. The var/lib/dhcp/dhcpd.leases file is getting pretty huge (350MB). Looking in it, there's historical data going back many months about leases that have long since expired. How do I…
kbro
  • 260
  • 1
  • 2
  • 12
2
votes
0 answers

DHCP client doesn't get address

I'm trying to use a Phytron MCC-1 motor controller which gets its IP only via DHCP (no manual setting). I setup isc-dhcp-server on ubuntu as such: # /etc/dhcp/dhcpd.conf option domain-name "example.org"; option domain-name-servers ns1.example.org,…
dargaud
  • 193
  • 1
  • 7
2
votes
2 answers

How to use omshell with ICS DHCP?

In /etc/dhcp/dhcpd.conf have added omapi-port 7911; omapi-key testkey; key testkey { algorithm hmac-sha256; secret QUt1z1O3fxqgSDKILAMXFA==; } but it won't let me connect when I do # systemctl restart dhcpd # omshell > server localhost > key…
Sandra
  • 10,303
  • 38
  • 112
  • 165
2
votes
2 answers

fixed-address is not behaving properly with DHCP version 4.2.5

If I configure an IP address range in dhcp, and allocate two addresses to two different MACs using fixed-address, and if those two or one of the systems is not active in the network, then the corresponding IP address is getting assigned to some…
Kiran
  • 21
  • 3
2
votes
0 answers

ISC DHCP (Infoblox) takes 30+ seconds to respond to DISCOVERS

Client's DISCOVER packets reach the Infoblox DHCP server through DHCP relays, but Infoblox doesn't seem to be responding. I checked the pcap taken from the DHCP server, I can see there is 3 DISCOVERS from the Client (via Relay), Infoblox DHCP…
Vignesh SP
  • 129
  • 1
  • 10
2
votes
1 answer

VyOS equivalent of "deny unknown-clients" from dhcpd

I'm attempting to use VyOS as a router and move my dhcp server functionality into it. In my current setup, I have a subnet that only allowed statically mapped clients. I can easily get the static maps to work with VyOS, but I don't know how to…
seanr8
  • 131
  • 4