- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- tftpd setup and "TRANSFER TIMEOUTS"
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-04-2007 06:33 AM
тАО01-04-2007 06:33 AM
tftpd setup and "TRANSFER TIMEOUTS"
Running Fedora FC6, have tftpd defined in /etc/xinetd.d/tftp as follows:
# default: off
# description: The tftp server serves files using the trivial file transfer \
# protocol. The tftp protocol is often used to boot diskless \
# workstations, download configuration files to network-aware printers, \
# and to start the installation process for some operating systems.
service tftp
{
disable = no
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -l -s /usr/boot
per_source = 11
cps = 100 2
flags = IPv4
}
I ran "chkconfig tftp on"
then view it via
chkconfig --list |grep tftp
tftp: on
and can see it running when I do a
netstat -a |grep tftp
udp 0 0 *:tftp *:*
I can "connect" to the tftp service via a client, and get active status:
# tftp xxx.yyy.zzz.A
tftp> status
Connected to xxx.yyy.zzz.A.
Mode: netascii Verbose: off Tracing: off
Rexmt-interval: 5 seconds, Max-timeout: 25 seconds
I have a xyplex boot file that needs to load terminal servers, via this method. this file /usr/boot/xpcs00s.sys has the following permissions:
-r--r--r-- 1 root root 711808 Jan 4 11:07 xpcs00s.sys
Can someone with some intimate knowledge of tftp perhaps point in a direction as to why the connection times out?
I loaded tftp-server from RPMFIND..
Any insight appreciated
Rex Mueller
Educational Service Unit #3
La Vista NE
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-04-2007 06:46 AM
тАО01-04-2007 06:46 AM
Re: tftpd setup and "TRANSFER TIMEOUTS"
getting from XXX.YYY.ZZZ.A:xpcs00s.sys to xpcs00s.sys [octet]
sent RRQ
sent RRQ
sent RRQ
sent RRQ
sent RRQ
Transfer timed out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-04-2007 07:50 AM
тАО01-04-2007 07:50 AM
Re: tftpd setup and "TRANSFER TIMEOUTS"
http://www.onlamp.com/pub/a/bsd/2003/06/05/FreeBSD_Basics.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-04-2007 07:57 AM
тАО01-04-2007 07:57 AM
Re: tftpd setup and "TRANSFER TIMEOUTS"
Unfortunately we have multiple terminal servers that define tftp via a command line boot that uses /usr/boot
FWIW our xinetd.conf looks as such as well
# This is the master xinetd configuration file. Settings in the
# default section will be inherited by all service configurations
# unless explicitly overridden in the service configuration. See
# xinetd.conf in the man pages for a more detailed explanation of
# these attributes.
defaults
{
# The next two items are intended to be a quick access place to
# temporarily enable or disable services.
#
# enabled =
# disabled =
# Define general logging characteristics.
log_type = SYSLOG daemon info
log_on_failure = HOST
log_on_success = PID HOST DURATION EXIT
# Define access restriction defaults
#
# no_access =
# only_from =
# max_load = 0
cps = 50 10
instances = 50
per_source = 10
# Address and networking defaults
#
# bind =
# mdns = yes
v6only = no
# setup environmental attributes
#
# passenv =
groups = yes
umask = 002
# Generally, banners are not used. This sets up their global defaults
#
# banner =
# banner_fail =
# banner_success =
}
includedir /etc/xinetd.d
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-04-2007 08:25 AM
тАО01-04-2007 08:25 AM
Re: tftpd setup and "TRANSFER TIMEOUTS"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-04-2007 08:55 AM
тАО01-04-2007 08:55 AM