# Booting a Snomphone with an IAX enabled Image
1. Configure tftpboot server to hand out snom image. 
   
   cp image /tftpboot/snom100.bin and uncomment tftp for inetd.
################### inetd.conf entry  #############################
tftp		dgram	udp	wait	nobody	/usr/sbin/tcpd	/usr/sbin/in.tftpd /tftpboot
################### end inetd.conf   ##############################
  To check functionality just tftp localhost while NOT in /tftpboot,
  and test retreival with get snom100.bin. Exit ; file should be 
  in local directory.

2. Configure dhcpd server
  Make sure that option router is removed from dhcpd configuration.
################### Sample dhcp.conf ##############################
server-identifier pbx;
option domain-name "pbx.net";
option domain-name-servers 192.168.0.1;
option subnet-mask	255.255.255.0;
# Boot image filename
filename	"snom100.bin";

subnet 192.168.0.0 netmask 255.255.255.0 {
	range dynamic-bootp 192.168.0.3 192.168.0.10;
	#option routers 192.168.0.11;
}
################### end dhcpd.conf   ##############################
Make sure to restart your dhcp server. /etc/init.d/dhcp restart or some-sort.

3. Reboot phone, before phone boots kernel hit any key on phone. 
   Configure network information, when completed press check key.
   Phone should then search bootp and then start erasing flash. 
   Note: If trouble downloading image, be sure to check connection
   the phone tends to let ethernet slip out without noticing especially
   while being unplugged. 
   Also, when configuring network parameters on snom bootup, I suggest
   leaving gateway blank, this paramter seems to sometimes change 
   IP address presented to tftp server as the gateway address.
4. Config iax on snomphone. 
   Telnet to phone, ip address is displayed on main screen.
   Run ./flash_config .
   Phone should be configured to coincide with an entry in iax.conf 
   on asterisk server. 
5. If you want to connect to telephony server outside of phone's subnet, you 
   will need to re-add option routers to dhcpd.conf. Make sure to restart
   dhcp server. Then power cycle phone. 
   You can also telnet into the phone and add the default
   route if you would like.

If you have any comments about the snom-iax image
then contact snom@digium.com. Thanks.