mongoose/test/dhcpd.conf
jfsimon1981 751413f050
MIP tuntap with dhcp added, enabled gitactions (#1890)
Enable DHCP with MIP tests.
Separate sources for high and low level stack tests.
Fixed assertion.
Added dhcpd.conf file.
2022-12-02 17:40:46 +01:00

13 lines
369 B
ISCdhcpd

# Network: 192.168.32.0/255.255.255.0
# Domain name: mos.host
# Name servers: 1.1.1.1 and 8.8.8.8
# Default router: 192.168.32.1
# Addresses: 192.168.32.32 - 192.168.1.127
#
option domain-name "mos.host";
option domain-name-servers 1.1.1.1, 8.8.8.8;
subnet 192.168.32.0 netmask 255.255.255.0 {
option routers 192.168.32.1;
range 192.168.32.32 192.168.32.127;
}