diff --git a/dhcpd/dhcpd.go b/dhcpd/dhcpd.go index fff30f44..ac1a23a6 100644 --- a/dhcpd/dhcpd.go +++ b/dhcpd/dhcpd.go @@ -178,3 +178,8 @@ func (s *Server) FindMACbyIP(ip net.IP) net.HardwareAddr { } return s.srv6.FindMACbyIP(ip) } + +// AddStaticLease - add static v4 lease +func (s *Server) AddStaticLease(lease Lease) error { + return s.srv4.AddStaticLease(lease) +}