Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 145 results for
tftp
- Page 1
tftp server package is needed to run PXES of redhat 9.0 is?
Hardware and Software
Linux and Unix
11 Years Ago
by billy.umpel
tftp
server package is needed to run PXES of redhat 9.0 is?
Re: tftp server package is needed to run PXES of redhat 9.0 is?
Hardware and Software
Linux and Unix
11 Years Ago
by rubberman
You are talking about the network PXE boot capability? Yes, it uses
tftp
to download the system image to boot.
tftp client issue
Programming
Software Development
13 Years Ago
by 46agogo
…exists */ #define ENOUSER 7 /* no such user */ #endif /*
tftp
.h */ `
tftp
.cpp ` #include <stdio.h> #include <stdlib…ackbuf=(char*)malloc(vPKTSIZE); if (ackbuf==NULL) { fprintf(stderr,"
TFTP
: out of memory.\n"); free(buf); return 255; }…
Tftp on Fedora 7
Hardware and Software
Linux and Unix
16 Years Ago
by Nick Evan
… now I'm required to use
Tftp
as a server. So I tried: yum install
tftp
-server That worked fine, it installed…
TFTP on UDP
Hardware and Software
Networking
14 Years Ago
by ashwini.engr07
Hi, We know that UDP does not contain any acknowledgement mechanism. But the
TFTP
which uses UDP sends the ACK packet on reception of data packet. How is this justified? And if the
TFTP
is sending the ACK packets, the overhead is bound to happen so why not use TCP instead? What makes TCP not usable for file transfers?
Re: Tftp on Fedora 7
Hardware and Software
Linux and Unix
16 Years Ago
by John A
How about: [url]http://llbb.wordpress.com/2007/06/14/installing-
tftp
-on-fedora/[/url] You might not want to use vi if you're not familiar with it though :)
Re: Tftp on Fedora 7
Hardware and Software
Linux and Unix
16 Years Ago
by Nick Evan
… about: [url]http://llbb.wordpress.com/2007/06/14/installing-
tftp
-on-fedora/[/url] Thanks! That was just the link I…
Re: Tftp on Fedora 7
Hardware and Software
Linux and Unix
16 Years Ago
by Nick Evan
I misread your original post. I thought you said that I shouldn't use
tftp
if I wasn't familiar with it, but you were talking about VI :) Luckily I have the [URL="http://www.cafepress.com/geekcheat.11507711"]VI-coffee-mug[/URL] (yes, really), a real must-have for the beginners in VI.
TFTP Timeout Help
Programming
Software Development
14 Years Ago
by kinto
Hello, I am in the middle of implementing a
TFTP
client using python though I have come unstuck on a …
TFTP Server in Java how to go about it.
Programming
Software Development
13 Years Ago
by nered
… an application for communication between two points similar to a
TFTP
Server/Client. So this is how i visioned this to…
Re: tftp server package is needed to run PXES of redhat 9.0 is?
Hardware and Software
Linux and Unix
11 Years Ago
by rch1231
Hello, For a genereal idea of what is involved in setting a PXE boot server here is a link to the CentOS (Red Hat distro) instructions which should be pretty close to what you need. [http://wiki.centos.org/HowTos/PXE/PXE_Setup](http://wiki.centos.org/HowTos/PXE/PXE_Setup)
Need a python tFTP open source class library
Programming
Software Development
16 Years Ago
by rob spade
I have a router mamangement requirement that requires a log file to be uploaded to a
tFTP
server. I wanted to do this using a python script. I have not been able to find a
tFTP
open source library anywhere. Does anyone know the where-abouts of one?
bind() returning -1 (for a tftp server)
Programming
Software Development
15 Years Ago
by prushik
I am trying to write a
TFTP
server. I have successfully completed the code, it is fully … have one for Haiku. So I need to port my
TFTP
server to Linux. Now the code compiles fine in linux…
Re: Need a python tFTP open source class library
Programming
Software Development
16 Years Ago
by rob spade
… own. :) I'm surprised at the demand for upload in
TFTP
, given its lack of security, but I suppose it's…
Re: bind() returning -1 (for a tftp server)
Programming
Software Development
15 Years Ago
by prushik
… else is using that port, but I uninstalled all other
tftp
severs, and I see no other traffic on wireshark. Meanwhile…
Can't get file from TFTP server
Hardware and Software
Microsoft Windows
17 Years Ago
by Jason Zhang
When I start a
TFTP
server on my laptop (Windows XP), I can get a file from it from the same host but can't if I try to get it from other PCs in the network (request time out). What kind of security options I need to change to make it work?
Re: tftp client issue
Programming
Software Development
13 Years Ago
by histrungalot
Maybe try [getaddrinfo(name, port, &hints, &result)](http://msdn.microsoft.com/en-us/library/windows/desktop/ms738520%28v=vs.85%29.aspx). There is an example at the bottom of the page. >pNodeName: A pointer to a NULL-terminated ANSI string that contains a host (node) name or a numeric host address string. For the Internet protocol, the…
Re: Tftp on Fedora 7
Hardware and Software
Linux and Unix
16 Years Ago
by John A
[QUOTE=niek_e;708634]Although I have no choice in this matter (it wasn't my decision to make) I would like to know why I shouldn't use it according to you?[/QUOTE] Oh, vi is a perfectly good command line text editor; there's nothing really wrong with it except that it's not particularly user-friendly to those who have never used it before. :P
Re: TFTP on UDP
Hardware and Software
Networking
14 Years Ago
by getnit
[url]http://www2.mmae.ucf.edu/~ambrose/tcpvsudp.html[/url]
Re: TFTP Server in Java how to go about it.
Programming
Software Development
13 Years Ago
by JamesCherrill
The two key classes you will need are ServerSocket and Socket (short for "client socket"). You create a ServerSocket on your server. It listens for incoming requests on a chosen port. You create a Socket at the client that connects to the server. The ServerSocket accepts the connection and gives you another Socket that represents the …
Re: Need a python tFTP open source class library
Programming
Software Development
16 Years Ago
by hvelocity
I haven't tried it myself (I need to do the same basic thing as you and bumped into your question), but you might try [url]http://tftpy.sourceforge.net/[/url]
Re: Need a python tFTP open source class library
Programming
Software Development
16 Years Ago
by rob spade
>you might try http://tftpy.sourceforge.net/[/url] Thanks for replying. I did look at the "sourceforgecode". But it looks like it only supports a download action in the client. I couldn't find any support in the source code for an upload action. It doesn't look like the server component would work either since it seems to requires a …
Re: bind() returning -1 (for a tftp server)
Programming
Software Development
15 Years Ago
by Salem
[url]http://beej.us/guide/bgnet/output/html/multipage/syscalls.html#bind[/url] Since your port is <1024, are you running as root? Some more error checking wouldn't go amiss either. You might have found the error to be "EPERM" or something.
PXE Boot Linux
Hardware and Software
Networking
13 Years Ago
by jbennet
…instead: sudo apt-get install dnsmasq tftpd-hpa
tftp
-hpa openbsd-inetd xinetd bootp dhcp3-server sudo …as needed): dhcp-range=lower,upper,12h enable-
tftp
tftp
-root=/var/lib/tftpboot dhcp-boot=pxelinux.0,…Add the following to /etc/xinetd.d/
tftp
(replace values as needed): service
tftp
{ disable = no socket_type = dgram wait…
Router not working
Hardware and Software
Networking
18 Years Ago
by davidlyhua
… current working directory. 2. At DOS prompt, type [B]"
tftp
<the SOHO router's IP address> get upgrade…".[/B] 3. Type "[B]
tftp
-i <the SOHO router's IP address> put… address is 192.168.1.1 so I typed "
tftp
192.168.1.1 get upgrade", as soon as…
More help with Linksys wrt54g
Hardware and Software
Networking
15 Years Ago
by slash49er
… I dl'ed from linksys. I am trying the
tftp
within windows,
tftp
apps from linksys, router tools program and I always…
Cisco 7960 with Sipgate UK
Hardware and Software
Networking
13 Years Ago
by DaveSW
… ####### # Dialplan template (.xml format file relative to the
TFTP
root directory) dial_template: dialplan #
TFTP
Phone Specific Configuration File Directory tftp_cfg_dir: ""…
May have Virus/Spyware/Aliens? or IE Hijacked
Hardware and Software
Information Security
20 Years Ago
by Mereannjen
…:40 pm and running Spyware Doctor, AVG and Ad-Aware:
TFTP
Trojan Horse IRC/Backdoor/SdBot.48T ("healed" by…
Download and execute
Programming
Software Development
20 Years Ago
by Justup
i am pretty new at programming but i want to make a program that will download a file from a
TFTP
server and then execute that file in command prompt with specific paramete. Can someone give me some general coding i should use?
Complete Debian Linux Server Setup Tutorial
Hardware and Software
Linux and Unix
19 Years Ago
by gg234
… Proxy Server Setup in Debian SSH Server Setup in Debian
tftp
Server Setup in Debian DHCP Server Setup in Debian IPtables…
1
2
3
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC