Hi there,
I'm pretty sure that with the Polycoms you don't have to set ntp from dhcp, you can do it in the provisioning set... Here's an example from a contributor who is using Polycoms with SAIL...
tcpIpApp.sntp.resyncPeriod="14400"
tcpIpApp.sntp.address="192.168.0.1"
tcpIpApp.sntp.address.overrideDHCP="1"
tcpIpApp.sntp.gmtOffset="-25200"
tcpIpApp.sntp.gmtOffset.overrideDHCP="1"
tcpIpApp.sntp.daylightSavings.enable="0"
...and here is an example of how we set option 66 for our SIP provisioning subsystem in SAIL. We do it in a template we created called /etc/e-smith/templates/etc/dhcpd.conf/25TFTPServerName. The code fragment looks like this...
{
#----------------------------------------------------------------------
#
# Copyright (c) Selintra.com 2005
#
#----------------------------------------------------------------------
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Technical support for this program is available from Selintra Ltd
# Please visit our web site www.selintra.com/ for details.
#----------------------------------------------------------------------
package esmith;
use strict;
use Errno;
use esmith::config;
use esmith::util;
use esmith::db;
my %config;
tie %config, 'esmith::config', '/home/e-smith/db/configuration';
my $systemname = db_get_type(\%config, 'SystemName') || '';
my $domainname = db_get_type(\%config, 'DomainName') || '';
$OUT .= " option tftp-server-name \"$systemname.$domainname\";\n";
}
You should be able to modify this on to suit your own needs.
Kind Regards
Selintra