Operating System - HP-UX
1833247 Members
2825 Online
110051 Solutions
New Discussion

Using site command in ftp

 
SOLVED
Go to solution
MikeL_4
Super Advisor

Using site command in ftp

Is there documentation on using the site command within an ftp session and what options are available on the site command ?
4 REPLIES 4
Torsten.
Acclaimed Contributor
Solution

Re: Using site command in ftp

See

# man ftpd

everything is there.

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
A. Clay Stephenson
Acclaimed Contributor

Re: Using site command in ftp

Once connected, you should issue the command "site help" to see which commands are supported by this FTP implementation. Careful scripting would never make assumptions about which of these commands are implemented.
If it ain't broke, I can fix that.
Bill Hassell
Honored Contributor

Re: Using site command in ftp

Very important: SITE (and QUOTE) commands are defined by the remote side (ftpd in the case of most Unix servers). So the availability of specific SITE commands is completely under the control of the remote system. Many sysadmins will lockout high risk commands that could probe the system for security information.


Bill Hassell, sysadmin
MikeL_4
Super Advisor

Re: Using site command in ftp

Thanks