ANONYMOUS (JANUS DEFINE parameter): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 1: Line 1:
{{DISPLAYTITLE:ANONYMOUS}}
{{DISPLAYTITLE:ANONYMOUS}}
<span class="pageSubtitle"><section begin="desc" />[maxanon | *]<section end="desc" /></span>
<span class="pageSubtitle"><section begin="desc" />ANONYMOUS [maxanon | *]<section end="desc" /></span>


ANONYMOUS is a parameter on [[JANUS DEFINE]], which defines and sets characteristics of a Janus port. See the [[JANUS DEFINE#parmlist|List of JANUS DEFINE parameters]].
ANONYMOUS is a parameter on [[JANUS DEFINE]], which defines and sets characteristics of a Janus port. See the [[JANUS DEFINE#parmlist|List of JANUS DEFINE parameters]].
Line 7: Line 7:


The ANONYMOUS parameter must be followed by a number ('''maxanon''') or an asterisk (*):
The ANONYMOUS parameter must be followed by a number ('''maxanon''') or an asterisk (*):
<ul>
<ul>
<li>'''maxanon''' is an integer in the range from 1 to '''maxcon''' that indicates how many of the FTP server's sessions may be used for anonymous sessions. '''maxcon''' is the maximum number of simultaneous FTP sessions supported by this server.  
<li>'''maxanon''' is an integer in the range from 1 to '''maxcon''' that indicates how many of the FTP server's sessions may be used for anonymous sessions. '''maxcon''' is the maximum number of simultaneous FTP sessions supported by this server.  
<li>An asterisk indicates that all '''maxcon''' sessions are available for anonymous FTP use.
<li>An asterisk indicates that all '''maxcon''' sessions are available for anonymous FTP use.
</ul>
</ul>


<p class="code"> JANUS DEFINE FTP 2121 FTPSERVER 10 ANONYMOUS * ANONUSER SMITH
</p>
The above example shows the definition of an FTP port named '''FTP''' that allows all users to log on anonymously, assigning the anonymous logon id of "SMITH" to each anonymous user.


If anonymous access is permitted, the default name of the anonymous user is <code>ANONYMOUS</code>. This name can be overridden with the ANONUSER parameter (:hdref refid=anonuse.).  
If anonymous access is permitted, the default name of the anonymous user is <code>ANONYMOUS</code>. This name can be overridden with the [[ANONUSER]] parameter.  


For more information about the Janus FTP Server, see the ''Janus Sockets Reference Manual''.  
For more information about the Janus FTP Server, see the ''Janus Sockets Reference Manual''.  

Revision as of 17:01, 9 March 2011

<section begin="desc" />ANONYMOUS [maxanon | *]<section end="desc" />

ANONYMOUS is a parameter on JANUS DEFINE, which defines and sets characteristics of a Janus port. See the List of JANUS DEFINE parameters.

This parameter indicates that anonymous access is permitted to the FTP server being defined. Anonymous access is FTP access that does not require a valid Model 204 user ID. If the ANONYMOUS parameter is not specified, no anonymous access is permitted.

The ANONYMOUS parameter must be followed by a number (maxanon) or an asterisk (*):

  • maxanon is an integer in the range from 1 to maxcon that indicates how many of the FTP server's sessions may be used for anonymous sessions. maxcon is the maximum number of simultaneous FTP sessions supported by this server.
  • An asterisk indicates that all maxcon sessions are available for anonymous FTP use.

JANUS DEFINE FTP 2121 FTPSERVER 10 ANONYMOUS * ANONUSER SMITH

The above example shows the definition of an FTP port named FTP that allows all users to log on anonymously, assigning the anonymous logon id of "SMITH" to each anonymous user.

If anonymous access is permitted, the default name of the anonymous user is ANONYMOUS. This name can be overridden with the ANONUSER parameter.

For more information about the Janus FTP Server, see the Janus Sockets Reference Manual.

This parameter is valid only for FTPSERVER port types.

References

See: List of Janus commands | List of JANUS DEFINE parameters.