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
0
votes
0 answers

How to configure DHCPv6 and DNSv6 configuration in Ubuntu 12.04?

I'm planning to configure DHCPv6 and DNS server in my network. I would like to understand whether both DHCPv4 and DHCPv6 can be configured using isc-dhcp-server service? When i tried nslookup domainname it returned the IPv4 address instead of ipv6…
Renold Singh
  • 336
  • 2
  • 3
  • 13
0
votes
1 answer

calculate reserved ip address based on mac address

Is it possible to calculate ip address based on mac address for isc-dhcp server? For example: 'aa:aa:aa:aa:aa:x' => '10.10.10.x' I have following in dhcpd.conf: subnet 10.10.10.0 netmask 255.255.255.0 { class "v" { match if substring…
kakabomba
  • 113
  • 3
0
votes
1 answer

ISC DHCP server: how to use "reserved" statement

I've been looking online, cannot find a single example of how to use the "reserved" statement. Supposedly it goes into the dhcpd.leases file. Stop dhcpd, edit the file, and restart. But it doesn't seem to be working because after restarting it…
Michael Martinez
  • 2,543
  • 3
  • 20
  • 31
0
votes
1 answer

Disable to receive address from dhcpd for one host/mac

I have a client in my network, who ask me to prevent him from getting ip address via dhcp. He has a strange software, and can't switch off dhcp-client, but this dhcp client do something bad after it get ip. In same vlan I have clients who needs…
Korjavin Ivan
  • 2,230
  • 2
  • 25
  • 39
0
votes
0 answers

ISC DHCPD MAC address matching classes confusion

I'm having trouble successfully matching a mix of different mac address classes to their appropriate subnet declarations. These classes are meant to differentiate IP phones, kvm guests and desktops from each other. So far only the IP Phones…
SinaOwolabi
  • 219
  • 1
  • 7
  • 18
0
votes
0 answers

"ifup eth0" causes dhclient to bring up more than one interface

Can someone tell me why dhclient is not respecting to only handle the one interface it has been passed? I've seen this multiple times over the years; never figured it out - it's not related to wpa_applicant, my interfaces are pretty standard (see…
0
votes
1 answer

ISC DHCP Server scope error

Why am I getting the following error after modifying my dhcpd server config? option space definitions may not be scoped
AXE Labs
  • 1,519
  • 5
  • 19
  • 24
0
votes
1 answer

ISC DHCP - different subnet for specific mac addresses

I'm attempting to create a different subnet for a few specific mac addresses, and have my DHCP config set up as follows: authoritative; shared-network local { subnet 192.168.2.0 netmask 255.255.255.0 { range 192.168.2.1 192.168.2.99; option…
berry120
  • 103
  • 4
0
votes
2 answers

Using isc-dhcp-server to allocate addresses from subnet different from server subnet

I'm trying to break my network into different subnets. Server is located into 192.168.15.0/24 subnet. I have the following declaration in my dhcp.conf: subnet 192.168.15.0 netmask 255.255.255.0 { range 192.168.15.100 192.168.15.250; option…
Mee
  • 101
  • 1
  • 2
0
votes
0 answers

How do I stop a Linux computer from sending a DHCP hostname?

I need to set up a Linux computer so that it uses DHCP but doesn't send any hostname at all. I'm using isc-dhclient-4.2.4 /etc/dhcp/dhclient.conf contains the line send host-name = gethostname(); I've tried commenting out that line and restarting.…
Olathe
  • 101
  • 1
0
votes
0 answers

DHCP server with ability to update mac address dynamically

Is there a better way to maintain MAC to IP specification in dhcp with out restarting dhcp service each time when there is an update. is it possible to use DHCP with database in Linux to save all configuration,so that dhcp just needs to read that…
Kevin Parker
  • 757
  • 1
  • 13
  • 29
0
votes
1 answer

How to forward gateway requests for a subnet through another connection under Linux

I have a Debian machine acting as a DHCP server/NAT, connected via PPTP to another machine,connected to a subnet 10.0.0.0. How do I configure it so requests from clients on this machine for the 10.0.0.0 subnet are forwarded over the PPTP…
Tattar
  • 1
0
votes
1 answer

Replies to request coming over a relay goes to relay's internal IP, not to original request's source IP

Dhcpd running on Linux gets a dhcp request over dhcrelay which is running on other remote machine. Oct 6 10:09:46 2012 dhcpd: DHCPDISCOVER from 00:1e:68:06:eb:37 (oguz-U300) via 172.16.17.81 tcpdump: listening on eth1, link-type EN10MB (Ethernet),…
seaquest
  • 668
  • 2
  • 11
  • 25
0
votes
1 answer

isc dhcpd: how to insert option 61 (client id) into dhcpoffer

I have a quick question. Is it possible to make ISC dhcpd server insert the option 61 (client id) in DHCPOFFER, in case if it is present in DHCPDISCOVER? The ISC dhcpd version I'm using is dhcp-4.1.1 (dhcp-4.1.1-12.P1.el6_0.4.x86_64 CentOS…
facha
  • 1,298
  • 2
  • 16
  • 26
0
votes
1 answer

Force windows 7 to update dns through dhcp server?

I have setup a new BIND9 to allow dynamic updates from my DHCP3 server. I am securing it using a DNSSEC key. Everything appears to work except when my windows workstation grabs an IP address it tries to update the dns records itself instead of going…
ianc1215
  • 1,965
  • 7
  • 34
  • 55