- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ftp problem..too slow
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
Forums
Discussions
Discussions
Discussions
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
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
06-19-2002 05:57 PM
06-19-2002 05:57 PM
ftp problem..too slow
what is the problem.?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2002 06:03 PM
06-19-2002 06:03 PM
Re: ftp problem..too slow
Have a look first off at your system performance. 'top' is a good place to start, you could multiple runaway processes.
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2002 06:03 PM
06-19-2002 06:03 PM
Re: ftp problem..too slow
Sounds like a resolution issue - how are you resolving your host names - DNS ?
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2002 06:04 PM
06-19-2002 06:04 PM
Re: ftp problem..too slow
nslookup server
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2002 06:06 PM
06-19-2002 06:06 PM
Re: ftp problem..too slow
If you are using dns - set it to resolve locally -
/etc/nsswitch.conf
hosts: files [NOTFOUND=continue] dns
Regards
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2002 06:11 PM
06-19-2002 06:11 PM
Re: ftp problem..too slow
it's sound like resolution problem,too.
check up these file.
/etc/hosts, /etc/resolv.conf and /etc/nsswitch.conf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2002 06:24 PM
06-19-2002 06:24 PM
Re: ftp problem..too slow
check lan card settings with lanadmin see if it is full or half duplex.
try doing ftp to various places (smallish file) & look at kB throughput.
if the network is sufferering from weird probs then
# netfmt -f /var/adm/nettl.LOG00 -t 6 #.. this may give you a clue
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2002 09:34 PM
06-19-2002 09:34 PM
Re: ftp problem..too slow
If u add the system name and IP address of the system (from which system you are trying to run ftp) in the /etc/hosts file in the server, it will connect real fast.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2002 09:45 PM
06-19-2002 09:45 PM
Re: ftp problem..too slow
Where are you trying to connect from?
A PC on your local LAN another server on the
same subnet?
Have your server set up in a simple manner.
Have your hosts file resolve before trying
to query a DNS server, make sure your
/etc/nsswitch file is set correctly. Make sure
the contents of your /etc/resolv.conf file
has at least one domain server listed.
/etc/nsswitch.conf
hosts: files [NOTFOUND=continue UNAVAIL=return TRYAGAIN=return] dns [NOTFO
UND=return UNAVAIL=continue TRYAGAIN=return]
/etc/resolv.conf
domain mydomain.com
nameserver 10.20.10.2
nameserver 10.32.10.3
What was the output from top, glance etc.??
Any output from the other network questions
will help us solve your problem.
Mick
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2002 01:19 AM
06-20-2002 01:19 AM
Re: ftp problem..too slow
To check whether this is a dns problem. From
a windows client,
c:>\ftp x.x.x.x
x.x.x.x is the ftp server's ip address
now log in and try to get and put a file in server. Is the same problem seen now ?. If no,
then there is some problem with DNS reverse lookup.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2002 03:57 AM
06-20-2002 03:57 AM
Re: ftp problem..too slow
- verify what the lan card is set too, particularly the duplexing, and then verify what the network component into which it is plugged is set too.
- is the the /usr/bin/ftp binary or are you running proftp or something else?
HTH
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2002 04:23 AM
06-20-2002 04:23 AM
Re: ftp problem..too slow
To avoid this issue (DNS is far too critical to rely on it unless the networks AND the DNS server are ultra-reliable), create the nsswitch.conf file and replace the hosts line with:
hosts: files[NOTFOUND=continue UNAVAIL=continue] dns [NOTFOUND=return UNAVAIL=continue TRYAGAIN=return]
(this is all one line)
Now put important hostnames and IP's into /etc/hosts. This has an added advantage of much faster response than using an external DNS machine. While some will argue that this defeats the purpose of a DNS server, the choice is: very slow or failed logins and applications if the DNS server goes down, or for the few production IP addresses, use /etc/hosts. After all, how many times per week do you change the production machines's IP address?
Bill Hassell, sysadmin