mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-11 19:08:20 +00:00
21 lines
339 B
Go
21 lines
339 B
Go
package service
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type DHCPv4 struct {
|
|
Interface string
|
|
Pool []string
|
|
DefaultLeaseTime time.Duration
|
|
MaxLeaseTime time.Duration
|
|
|
|
GatewayMode Mode
|
|
Gateway *string
|
|
DNSServerMode Mode
|
|
DNSServer *[]string
|
|
NTPServerMode Mode
|
|
NTPServer *[]string
|
|
|
|
Reservations []Reservation
|
|
}
|