]> git.pld-linux.org Git - packages/VMware-server.git/blob - VMware-server-dhcpd.conf
- up to 2.0.0 build 116503
[packages/VMware-server.git] / VMware-server-dhcpd.conf
1 #
2 # Configuration file for ISC 2.0b6pl1 vmnet-dhcpd operating on vmnet8.
3 #
4 # We set domain-name-servers to make some DHCP clients happy
5 # (dhclient as configued in SuSE, TurboLinux, etc.).
6 # We also supply a domain name to make pump (Red Hat 6.x) happy.
7 #
8 allow unknown-clients;
9 default-lease-time 1800;                # 30 minutes
10 max-lease-time 7200;                    # 2 hours
11
12 subnet 172.16.98.0 netmask 255.255.255.0 {
13     range 172.16.98.128 172.16.98.254;
14     option broadcast-address 172.16.98.255;
15     option domain-name-servers 172.16.98.2;
16     option domain-name "localdomain";
17     option routers 172.16.98.2;
18 }
This page took 0.029637 seconds and 3 git commands to generate.