#!/bin/sh

cat <<EOF

# example ...

subnet 192.168.1.0 netmask 255.255.255.0 {
	range 192.168.1.20 192.168.1.200;
	option routers 192.168.1.1;
	option domain-name-servers 192.168.1.1;
	option broadcast-address 192.168.1.255;
	option subnet-mask 255.255.255.0;
}

host host1 {
	hardware ethernet 12:34:56:78:90:ab;
	fixed-address 192.168.1.30;
}

host host2 {
	hardware ethernet 34:56:78:90:ab:cd;
	fixed-address 192.168.1.42;
}

EOF
