Hi Kev,
Sorry I kind of forgot to reply to you on this. Yes we are auto provisioning via DHCP Option 66 with TFTP pointing to the Eygi (one of the only way it can work in our environment). The DHCP file config looks like the below:
Code:
# Match Snom M9 by first 7 characters of the "vendor-class-identifier"
if substring(option vendor-class-identifier , 0 , 7) = "snom m9"
{
option tftp-server-name "http://192.168.70.25";
# Set the name of the Snom M9 Config file
option bootfile-name "ipeconfig/{mac}.xml";
}
# Match All other Snom phones by first 4 characters of the "vendor-class-identifier"
elsif substring(option vendor-class-identifier , 0 , 4) = "snom"
{
option tftp-server-name "http://192.168.70.25";
# Set the name of the Snom (300 & 320) Config file
option bootfile-name "snom.cgi?mac={mac}";
}