ANONYMOUS (JANUS DEFINE parameter): Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:ANONYMOUS}}
<span class="pageSubtitle">ANONYMOUS [maxanon | *]</span>
<span class="pageSubtitle"><section begin="desc" />ANONYMOUS [maxanon | *]<section end="desc" /></span>


<var>ANONYMOUS</var> 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]].
<var>ANONYMOUS</var> is a parameter on <var>[[JANUS DEFINE]]</var>, which defines and sets characteristics of a Janus port.  


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 <var>ANONYMOUS</var> parameter is not specified, no anonymous access is permitted.  
This parameter indicates that anonymous access is permitted to the <var class="product">[[Janus FTP Server|FTP Server]]</var> being defined. Anonymous access is FTP access that does not require a valid <var class="product">Model 204</var> user ID. If the <var>ANONYMOUS</var> parameter is not specified, no anonymous access is permitted.  


The <var>ANONYMOUS</var> parameter must be followed by a number ('''maxanon''') or an asterisk (*):
The <var>ANONYMOUS</var> 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>


===Example===
==Example==
<p class="code"> JANUS DEFINE FTP 2121 FTPSERVER 10 ANONYMOUS * ANONUSER SMITH
<p class="code">JANUS DEFINE FTP 2121 FTPSERVER 10 ANONYMOUS * ANONUSER SMITH
</p>
</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.
The above example shows the definition of an FTP port named <code>FTP</code> that allows all users to log on anonymously, assigning the anonymous logon id of <code>SMITH</code> 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 <var>[[ANONUSER (JANUS DEFINE parameter)|ANONUSER]]</var> parameter.  
If anonymous access is permitted, the default name of the anonymous user is <code>ANONYMOUS</code>. This name can be overridden with the <var>[[ANONUSER (JANUS DEFINE parameter)|ANONUSER]]</var> parameter.  


This parameter is valid only for FTPSERVER port types.
This parameter is valid only for <var>[[JANUS DEFINE#type|FTPSERVER]]</var> port types.


==References==
==See also==
 
<ul>
See: [[List of Janus commands]] | [[JANUS DEFINE#parmlist|List of JANUS DEFINE parameters]].
<li>[[List of Janus commands]]
<li>[[JANUS DEFINE#parmlist|List of JANUS DEFINE parameters]]
</ul>


[[Category:JANUS DEFINE parameters|ANONYMOUS]]
[[Category:JANUS DEFINE parameters|ANONYMOUS]]

Latest revision as of 21:38, 16 April 2013

ANONYMOUS [maxanon | *]

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

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.

Example

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.

This parameter is valid only for FTPSERVER port types.

See also