Light DHCPd -- 拥有小型功能集和一个远程可编程控制面板的DHCP服务器

网友投稿 585 2022-10-23

Light DHCPd -- 拥有小型功能集和一个远程可编程控制面板的DHCP服务器

Light DHCPd -- 拥有小型功能集和一个远程可编程控制面板的DHCP服务器

Light DHCPd

This is a DHCP service/daemon with very few features. It provides basic dynamic IPv4 pool allocation as well as persistent, static leases. iPXE support does not exist yet, but is planned.

One thing Light DHCPd offers that is novel, is a remote control plane powered over GRPC, authenticated and encrypted by TLS client certificates. This control plane can be embedded into your orchestration code or you can use the provided command-line tool to manipulate it from your shell. There is a golang client, and the protobufs are included in the source tree if you wish to generate clients for other languages.

There is a small configuration file for managing dynamic leases and the overall network parameters (resolver, gateway).

Stability

Light DHCPd has been powering my network for over a week!

(Seriously, you do not want to use this in production yet.)

Development Instructions

make shell: This runs a docker shell. You can do a few things in here: make test: This is context-dependent and will run properly in the container or outside of it, running the unit and functional tests in a container.make interfaces: This sets up some dummy interfaces and plumbs them through a bridge; afterwards veth1 will be available for running a ldhcpd on, and veth3 will be available for running a dhclient on.make start: will start the dhcpd.make stop: stops it.make get-ip: issues a ISC dhclient launch against the second veth pair to get an IP, allowing you to test interaction with a real client.

NOTE: The following instructions install https://github.com/box-builder/box on first run to build the images, will require sudo for that (but nothing else). If you don't want to run sudo to install box, install it in your $PATH somewhere and try again.

Assuming you're not crazy enough to try this on your own network, try this at your shell instead:

$ make shell# $ make interfaces$ make install$ sudo ldhcpd veth1 example.conf &$ sudo dhclient -1 -v -d veth3# ^C it to stop it$ ip addr# veth3 -> 10.0.20.50

If you want to boot the control plane only, without serving DHCP, try the -d flag.

Config File Rundown

## DNS servers#dns_servers: - 10.0.0.1 - 1.1.1.1## network gateway#gateway: 10.0.20.1## Dynamic Range of IPs to use in dynamic lease hand-outs, IP inclusive.#dynamic_range: from: 10.0.20.50 to: 10.0.20.100## Lease parameters:## The duration is the duration of the lease; no other allocation can affect the# IP you will get back while this lease is obtained.## The grace period is the maximum amount of time the IP is available to the mac# address; it is added to the duration. If another mac comes in and there are# no available IPs, addresses in the grace period may be reclaimed to make# room.#lease: duration: 24h grace_period: 8h

Making your certificate authority

We use mkcert to generate our certs.

You can use this script to generate a very basic CA that operates over localhost. Depending on your circumstances, you may need to run it as root.

This code also installs it into the paths expected by default in the daemon and client; be mindful of permissions and directory names!

CAROOT=/etc/ldhcpd mkcert -install # CA file will be /etc/ldhcpd/rootCA.pemCAROOT=/etc/ldhcpd mkcert -cert-file /etc/ldhcpd/server.pem -key-file /etc/ldhcpd/server.key localhost 127.0.0.1CAROOT=/etc/ldhcpd mkcert -client -cert-file /etc/ldhcpd/client.pem -key-file /etc/ldhcpd/client.key localhost 127.0.0.1

Other Notes

ldhcpd will suss out your subnet block from the interface you tell it to listen on. It is very important your interface is configured correctly. We make some checks, but no guarantees! Most importantly, ensure the subnet for ip is configured properly. Subnetting is a bit beyond this document's scope, but this is typically done by associating the IP with a CIDR address space that is less than 32.

Example:

2: ens18: mtu 1500 qdisc fq_codel state UP group default qlen 1000 link/ether a6:80:e0:5e:c5:46 brd ff:ff:ff:ff:ff:ff inet 10.0.0.2/24 brd 10.0.0.255 scope global ens18 valid_lft forever preferred_lft forever inet6 2001:1::1/64 scope global valid_lft forever preferred_lft forever inet6 fe80::a480:e0ff:fe5e:c546/64 scope link valid_lft forever preferred_lft forever

10.0.0.2/24 will get selected here to serve. Only one address like this may be configured for now. We may eventually address this, but for now if you need to serve two subnets, start two of ldhcpd on different interfaces.

Roadmap

These are the items planned for the near future of this project:

Per-Lease DNS and Gateway parameters Hostname support: Pushing hostnames Recording hostnames from clients Better, easier to use bridge for the GRPC client PXE booting support maybe with TFTP baked-in?

Dependencies

https://github.com/krolaw/dhcp4 for the dhcp4 protocol work, thanks to Richard Warburton (@krolaw), et al. This tool would be much less useful without it.https://github.com/jinzhu/gorm and https://github.com/mattn/go-sqlite3 for the database work.https://google.golang.org/grpc for the control plane protocol.https://github.com/box-builder/box which is a mruby-based docker image builder.

License

MIT License

Author

Erik Hollensbe erik+git@hollensbe.org

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:《学会写作》粥佐罗著
下一篇:Google Kaptcha验证码生成的使用实例说明
相关文章

 发表评论

暂时没有评论,来抢沙发吧~