summaryrefslogtreecommitdiffstats
path: root/virtualization/templates/dhcpd.conf
diff options
context:
space:
mode:
authorVolker Uhrig2007-05-14 14:59:24 +0200
committerVolker Uhrig2007-05-14 14:59:24 +0200
commit8b88f3b308666f2dfda683870fa09489ebe3f5ff (patch)
tree49ff26aad1d94ebf8db29e3262a2cb0190199b98 /virtualization/templates/dhcpd.conf
parentMinor fixes (diff)
downloadcore-8b88f3b308666f2dfda683870fa09489ebe3f5ff.tar.gz
core-8b88f3b308666f2dfda683870fa09489ebe3f5ff.tar.xz
core-8b88f3b308666f2dfda683870fa09489ebe3f5ff.zip
dhcpd.conf and nat.conf for vmware-vmnet8 added
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1079 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'virtualization/templates/dhcpd.conf')
-rw-r--r--virtualization/templates/dhcpd.conf22
1 files changed, 22 insertions, 0 deletions
diff --git a/virtualization/templates/dhcpd.conf b/virtualization/templates/dhcpd.conf
new file mode 100644
index 00000000..6bc581a4
--- /dev/null
+++ b/virtualization/templates/dhcpd.conf
@@ -0,0 +1,22 @@
+#
+# Configuration file for ISC 2.0b6pl1 vmnet-dhcpd operating on vmnet8.
+#
+# This file was automatically generated by the VMware configuration program.
+# If you modify it, it will be backed up the next time you run the
+# configuration program.
+#
+# We set domain-name-servers to make some DHCP clients happy
+# (dhclient as configued in SuSE, TurboLinux, etc.).
+# We also supply a domain name to make pump (Red Hat 6.x) happy.
+#
+allow unknown-clients;
+default-lease-time 1800; # 30 minutes
+max-lease-time 7200; # 2 hours
+
+subnet 192.168.100.0 netmask 255.255.255.0 {
+ range 192.168.100.100 192.168.100.101;
+ option broadcast-address 192.168.100.255;
+ option domain-name-servers 192.168.100.2;
+ option domain-name "localdomain";
+ option routers 192.168.100.2;
+}