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

Tell connected devices that this network does not offer internet access

I installed the isc-dhcp-server (version 4.3.3) onto my Raspberry Pi and set it up to assign IP Addresses to devices that are connected to the Ethernet port (via a Switch but that should be unrelated). This network is only for Ethernet purposes and…
Tim Schumacher
  • 576
  • 3
  • 12
0
votes
1 answer

isc-dhcp send packet not permitted when using iptables snat

I'm having this issue with iptables snat and isc dhcp. This is the case: I have configured 2 IPs in my network card. Primary and secondary OS: Ubuntu 16.04 2: ens32: mtu 1500 qdisc pfifo_fast state UP group default…
0
votes
1 answer

DHCP Client starts sending DHCP Discover messages upon receiving a NAK from another DHCP server

I am trying to set up a DHCP client that is supposed to get its IP address via DHCP. I have configured two DHCP servers (one in 192.168.X.X pool and the other in 162.16.X.X pool). Then, the client starts the DHCP protocol and obtains a DHCP lease…
0
votes
1 answer

How do I setup a secondary default gateway using classless-routes in isc dhcp?

Here is a snippet of my dhcpd.conf file subnet 10.3.0.0 netmask 255.255.0.0 { option classless-routes 16, 10,2, 10,3,0,110,16,10,4,10,3,0,110,0,10,3,0,110; } It generates the following routes default via 10.3.0.110 dev eth0 10.2.0.0/16 via…
0
votes
0 answers

TFTP Server for multiple vlans

I have a linux dhcp/tftp server with multiple vlans serving a CMTS. The gist of it is in the CMTS, I tell the cable modems on what vlan I want them to get their address and configuration file from. The tftp server address is 192.168.130.2 and the…
0
votes
1 answer

Having issues with DHCP classes

I'm having issues with DHCP classes matching mac addresses. We have a lot of one type of machine and I want to get the IPMI cards in the same pool. I've tried the following; class "IPMI" { match if (substring(hardware, 0, 3) = 0c:c4:7a); } subnet…
0
votes
0 answers

Which options are required to send a PAC file URL via DHCP to Android devices?

I would like the Android devices which connect to WiFi networks to be automatically configured to proxy their HTTP(S) traffic through a web proxy. There is a PAC file available though an URL, which points to a squid proxy. The PAC URL manually…
WoJ
  • 3,607
  • 9
  • 49
  • 79
0
votes
1 answer

Is it possible to have an isc-dhcp server and a foreman proxy on the same network ?

I'm trying to setup a foreman service in my homelab to replace my current manually managed KVM solution. As part of this, I'm trying to get deployment working and the DHCP and DNS proxies working. I'm starting with DHCP. The problem that I'm seeing…
Anonymouslemming
  • 891
  • 4
  • 15
  • 26
0
votes
1 answer

dhcpd (isc-dhcp-server) not using part of address range

dhcpd (isc-dhcpd-4.3.4 under Debian) ignores part of specified address range. I have the subnet 10.24.32.0/22 assigned to interface: 10.24.32.0/22 dev net0 proto kernel scope link src 10.24.32.1 So the possible address range is 10.24.32.1 to…
0
votes
0 answers

Linux machine gets different IP through and after installation

we have some automatic building of our building machines using packer (jessie, trusty, xenial, macos, ...) on separate network (VLAN on L3 switch which is used as default GW for the network). Till now, the network had some commercial DHCP server and…
user3337015
  • 63
  • 1
  • 2
  • 7
0
votes
1 answer

Why does a DHCP4 client not respond to the DHCP Offer from a DHCP server?

An extremely simple DHCP server works reliably with Windows 10 PCs and Android devices. It receives DHCP Discover from a client, replies with DHCP Offer, then receives DHCP Request from a client. However, it does not work with a device using DHCP4.…
Hong
  • 111
  • 1
  • 5
0
votes
0 answers

What data is stored in DHCID RR by rfc 4701 (in lay terms)?

To understand what is going on my dhcp server I need to understand what is stored in this record that idenities my dhcp clients. I have long read this standart. But cannot understand. In lay terms I want to know what data relate to client is stored…
vskubriev
  • 686
  • 9
  • 15
0
votes
2 answers

Don't write "no free leases" messages from ISC DHCP server to systemd log

I have a DHCP server that provides TFTP server IP, NBP (Network Bootstrp Program) and IP addresses to PXE clients. When a machine boots normally (not PXE boot) it gets an IP address from another DHCP server. Every time a machine boots normally the…
xloto
  • 109
  • 7
0
votes
1 answer

DHCP renew fails with multiple subnets on same link

Our network currently consists of 3 subnets on the same link: 1.2.3.0/24 is the global subnet 10.1.0.0/16 is used for NAT (because there are far more than 200 clients) 192.168.0.0/16 is the "guest network" with a simple captive portal for unknown…
cbix
  • 141
  • 6
0
votes
0 answers

Configuring ISC DHCP server to not serve IP's on the local network

Is it possible to have a DHCP server serve subnets for multiple network segments, but not its own local subnet? I have a DHCP server on a subnet 10.x.x.x. It serves approximately 125 subnets on various 10.x networks. I'm attempting to migrate this…
blindsnowmobile
  • 377
  • 1
  • 5
  • 16