User's Manual 38 Document #: LTRT-71405
MediaPack Series
5.2 Option B - DHCP-based Configuration Server
This alternative is similar to Option A, except that DHCP is used instead of BootP. The
DHCP server may be specially configured to automatically provide AudioCodes devices
with a temporary IP address, so that individual MAC addresses are not required.
Below is a sample configuration file for Linux DHCP server (dhcpd.conf). The devices will
be allocated temporary IP addresses in the range 10.31.4.53 to 10.31.4.75.
TFTP is assumed to be on the same machine as the DHCP server (the "next-server"
directive may be used otherwise).
ddns-update-style ad-hoc;
default-lease-time 60;
max-lease-time 60;
class "audiocodes" {
match if(substring(hardware, 1, 3) = 00:90:8f);
}
subnet 10.31.0.0 netmask 255.255.0.0 {
pool {
allow members of "audiocodes";
range 10.31.4.53 10.31.4.75;
filename "MP118_SIP_5.00A.001.cmp -fb;mp118.ini";
option routers 10.31.0.1;
option subnet-mask 255.255.0.0;
}
}
This alternative requires configuration to take place at a staging warehouse.