Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature Request] Allow to exclude specific class from DHCP Pool #830

Open
Sulquendi opened this issue Jan 14, 2024 · 1 comment
Open

[Feature Request] Allow to exclude specific class from DHCP Pool #830

Sulquendi opened this issue Jan 14, 2024 · 1 comment

Comments

@Sulquendi
Copy link

Sulquendi commented Jan 14, 2024

Hello, first thanks for your awesome work !

Explanation of this feature request : to allow Orange TV Decoder to work properly, it has to be handled by the ISP box DHCP server.
It is easy to create a static DHCP record in the ISP Box, but then the Technitium DHCP service should allow to exclude the device.

In example, with isc.dhcp.server, it is possible to do this in dhcpd.conf :

1- Declare a custom class to match the mac addr of the specific device you want to exclude

class "orange" {
  # exclude orange decoder from pool! Ie. 30:24:78:8d:00:98/30:24:78:8d:00:9a
  match if substring (hardware,1,4) = 30:24:78:8d;
}

2- then in the pool config :

subnet 192.168.0.0 netmask 255.255.255.0 {
  #...
  pool {
    range 192.168.0.24 192.168.0.63;
    allow unknown-clients;
    deny members of "orange";
  }
}

Regards

@ShreyasZare
Copy link
Member

Thanks for the feature request. Will get that implemented when DHCP changes are planned.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants