IEA Software, Inc.

IEA Software Knowledge Base - ID:56881

IEA Knowledge base

Air Marshal (KB ID: 56881)

Aug 6 2007

How can I configure a DHCP server on my Air Marshal server to automatically assign network addresses?

Aug 6 2007

First install a DHCP server on the Air Marshal server.

The following sample configuration file (dhcpd.conf) can be used as a template for configuring an ISC DHCP server assuming a recent version of the ISC DHCPD server is used. The IP numberings in the example below are based on the NAT mode addressing example shown in the Air Marshal v2 documentation.

option domain-name "mydomain.com";
option domain-name-servers x.x.x.x;
option domain-name-servers x.x.x.x;
ddns-update-style none;

subnet 10.221.118.0 netmask 255.255.255.0
{
range 10.221.118.1 10.221.118.253;
option routers 10.221.118.254;
option domain-name "mydomain.com";
default-lease-time 300;
max-lease-time 7200;
option subnet-mask 255.255.255.0;
}

Please see your DHCP server manual for more information.