SOLVED t*f*t*p server for Incredible Pi

jharre

New Member
Joined
Jun 9, 2014
Messages
14
Reaction score
0
While on vacation, a newer version of IncrediblePi was released and I loaded it up after returning. Still had the same problem with the t*f*t*p server and did some more digging.

Basically, there's an option missing in the file /etc/default/tftpd-hpa. Apparently, tftpd-hpa tries to start up in IPv6 and dies when it doesn't find it. The fix is to change the configuration file to add "--ipv4" to the TFTP_OPTIONS line:

Edit it using:
Code:
nano /etc/default/tftpd-hpa
and change the file to look like this:

Code:
# /etc/default/tftpd-hpa
 
RUN_DAEMON="yes"
OPTIONS="-l -s /tftpboot"
TFTP_USERNAME="t*f*t*p"
TFTP_DIRECTORY="/tftpboot"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="--ipv4 --secure"
After saving the file, restart the service using:
Code:
service tftpd-hpa restart

Now my Cisco phones find the configuration files in the /tftpboot directory as expected!
 

Members online

No members online now.

Forum statistics

Threads
25,810
Messages
167,754
Members
19,240
Latest member
nikko
Get 3CX - Absolutely Free!

Link up your team and customers Phone System Live Chat Video Conferencing

Hosted or Self-managed. Up to 10 users free forever. No credit card. Try risk free.

3CX
A 3CX Account with that email already exists. You will be redirected to the Customer Portal to sign in or reset your password if you've forgotten it.
Top