summaryrefslogtreecommitdiff
path: root/dhcp3/dhcpd.macintosh
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2004-10-06 21:02:12 +0000
committerJonas Smedegaard <dr@jones.dk>2004-10-06 21:02:12 +0000
commitdd572eae7639d05066e3d3f8fcde8988f5dbc7b1 (patch)
tree90f986bcb5f1cf21556478fe591942bce80ec666 /dhcp3/dhcpd.macintosh
parentfa78451ebd444f11e98f81df5265e3c7415ef7fa (diff)
Add somewhat generic dhcpd addon snippets.
Diffstat (limited to 'dhcp3/dhcpd.macintosh')
-rw-r--r--dhcp3/dhcpd.macintosh12
1 files changed, 12 insertions, 0 deletions
diff --git a/dhcp3/dhcpd.macintosh b/dhcp3/dhcpd.macintosh
new file mode 100644
index 0000000..01d56a2
--- /dev/null
+++ b/dhcp3/dhcpd.macintosh
@@ -0,0 +1,12 @@
+# Open Transport 2.5.1 and 2.5.2 fails with lease times larger than 1 hour
+class "Macintosh_a" {
+if (
+ ( substring (hardware, 0, 3) = 00:05:02 )
+ or
+ ( (hardware, 0, 3) = 00:61:61 )
+) {
+
+ default-lease-time 3599;
+ max-lease-time 3599;
+ min-lease-time 3599;
+}