e it that it is used to download the firmware and configuration files, but I see it is used for provisioning, correct? Regards Bilal ----------------- =20> bilal ghayyad wrote: > > Any one can suggest a TFTP server to be installed in > Fedora >=20 > The one in the repos should be fine.=A0 I'm not Fedora > (I'm Mandriva), but=20 > both are RPM based.=A0 Try: >=20 > yum install tftp-server.=A0 The one that comes with > Mandriva works fine=20 > with our Cisco 7940/7960 phones. >=20 > Doug >=20-----------> > Hi All; > > > > Any one can suggest a TFTP server to be installed in > Fedora (same machine that Asterisk is installed) to be used > for Cisco IP Phones to download the required firmware and > configuration files. > > > > Thanks for the help in advance. > > Regards > > Bilal > > >=20 > Try this http://etel.wiki.oreilly.com/wiki/index.php/Dynamic_Phone_Provisioning_with_res_phoneprov_and_TFTP >=20 > --=20 > ~~~ Andrew "lathama" Latham lathama at gmail.com
bilal ghayyad
2011-Jun-11 14:29 UTC
[asterisk-users] TFTP to be installed in Linux same asterisk machine to be used with Cisco
Hi All; Any one can suggest a TFTP server to be installed in Fedora (same machine that Asterisk is installed) to be used for Cisco IP Phones to download the required firmware and configuration files. Thanks for the help in advance. Regards Bilal
Doug Lytle
2011-Jun-11 14:36 UTC
[asterisk-users] TFTP to be installed in Linux same asterisk machine to be used with Cisco
bilal ghayyad wrote:> Any one can suggest a TFTP server to be installed in FedoraThe one in the repos should be fine. I'm not Fedora (I'm Mandriva), but both are RPM based. Try: yum install tftp-server. The one that comes with Mandriva works fine with our Cisco 7940/7960 phones. Doug -- Ben Franklin quote: "Those who would give up Essential Liberty to purchase a little Temporary Safety, deserve neither Liberty nor Safety."
Andrew Latham
2011-Jun-11 15:34 UTC
[asterisk-users] TFTP to be installed in Linux same asterisk machine to be used with Cisco
On Sat, Jun 11, 2011 at 10:29 AM, bilal ghayyad <bilmar_gh at yahoo.com> wrote:> Hi All; > > Any one can suggest a TFTP server to be installed in Fedora (same machine that Asterisk is installed) to be used for Cisco IP Phones to download the required firmware and configuration files. > > Thanks for the help in advance. > Regards > Bilal >Try this http://etel.wiki.oreilly.com/wiki/index.php/Dynamic_Phone_Provisioning_with_res_phoneprov_and_TFTP -- ~~~ Andrew "lathama" Latham lathama at gmail.com ~~~
bilal ghayyad
2011-Jun-12 17:03 UTC
[asterisk-users] TFTP to be installed in Linux same asterisk machine to be used with Cisco
Dears; Thanks alot for the kindly help. I installed the tftp-server, and I configured it. How can I see the the files are now loaded? Normally in the windows, I can see that a request reached to the TFTP server and the files now are loaded (upload or download)?
Steve Edwards
2011-Jun-12 19:18 UTC
[asterisk-users] TFTP to be installed in Linux same asterisk machine to be used with Cisco
On Sun, 12 Jun 2011, bilal ghayyad wrote:> How can I see the the files are now loaded? Normally in the windows, I > can see that a request reached to the TFTP server and the files now are > loaded (upload or download)?The tftp daemon should log the transfers via syslogd. For example: Jun 12 12:03:23 dt in.tftpd[11486]: RRQ from 192.168.0.19 filename /spa841.cfg I start tftp via xinetd and the configuration looks like this: service tftp { cps = 100 2 bind = 192.168.0.1 disable = no flags = IPv4 per_source = 11 protocol = udp server = /usr/sbin/in.tftpd server_args = -c -s /tftpboot -v -v -v -v -v -v socket_type = dgram user = root wait = yes } -- Thanks in advance, ------------------------------------------------------------------------- Steve Edwards sedwards at sedwards.com Voice: +1-760-468-3867 PST Newline Fax: +1-760-731-3000
Steve Totaro
2011-Jun-12 23:02 UTC
[asterisk-users] TFTP to be installed in Linux same asterisk machine to be used with Cisco
On Sun, Jun 12, 2011 at 3:18 PM, Steve Edwards <asterisk.org at sedwards.com> wrote:> On Sun, 12 Jun 2011, bilal ghayyad wrote: > >> How can I see the the files are now loaded? Normally in the windows, I can >> see that a request reached to the TFTP server and the files now are loaded >> (upload or download)? > > The tftp daemon should log the transfers via syslogd. For example: > > Jun 12 12:03:23 dt in.tftpd[11486]: RRQ from 192.168.0.19 filename > /spa841.cfg > > I start tftp via xinetd and the configuration looks like this: > > service tftp > ? ? ? ?{ > ? ? ? ?cps ? ? ? ? ? ? ? ? ? ? = 100 2 > ? ? ? ?bind ? ? ? ? ? ? ? ? ? ?= 192.168.0.1 > ? ? ? ?disable ? ? ? ? ? ? ? ? = no > ? ? ? ?flags ? ? ? ? ? ? ? ? ? = IPv4 > ? ? ? ?per_source ? ? ? ? ? ? ?= 11 > ? ? ? ?protocol ? ? ? ? ? ? ? ?= udp > ? ? ? ?server ? ? ? ? ? ? ? ? ?= /usr/sbin/in.tftpd > ? ? ? ?server_args ? ? ? ? ? ? = -c -s /tftpboot -v -v -v -v -v -v > ? ? ? ?socket_type ? ? ? ? ? ? = dgram > ? ? ? ?user ? ? ? ? ? ? ? ? ? ?= root > ? ? ? ?wait ? ? ? ? ? ? ? ? ? ?= yes > ? ? ? ?} > > -- > Thanks in advance, > ------------------------------------------------------------------------- > Steve Edwards ? ? ? sedwards at sedwards.com ? ? ?Voice: +1-760-468-3867 PST > Newline ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?Fax: +1-760-731-3000 > > --You should really be asking on the Fedora lists or even Google, this is about TFTP on Fedora, not anything to do with Asterisk. http://tinyurl.com/6xj3he3 http://tinyurl.com/3hjtwsu Also, check /var/log/messages on your server. Are there any tftp messages there? Also run tftpd with the "-v" flag (multiple times -- try "man tftpd"). Thanks, Steve Totaro