Problems installing/starting FTP Server

LabKey Support Forum
Problems installing/starting FTP Server myatthu1986  2008-12-16 03:12
Status: Closed
 
Hello all,

I am using apache ftp sever ftpserver-1.0.0-M3.
I want to access my ftp server from any computers which is same network or not.
eg. ftp://pcname:2121/..

if you have ftpd.xml file,please share me.
I want to know how and where to define server address in ftpd.xml file.

here is my current ftp file...

<?xml version="1.0" encoding="UTF-8"?>

<server xmlns="http://mina.apache.org/ftpserver/spring/v1"
    xmlns:beans="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://mina.apache.org/ftpserver/spring/v1 http://mina.apache.org/ftpserver/ftpserver-1.0.xsd "
    id="myServer">
    
    <listeners>
        <nio-listener name="pc69" port="2121" implicit-ssl="false" idle-timeout="60" local-address="***.***.*.***">           
            <data-connection idle-timeout="600">
                <active enabled="true" local-address="***.***.*.***" local-port="2121" ip-check="true" />
                <passive ports="2121" address="pc69" external-address="***.***.*.***" />
            </data-connection>
            <blacklist>1.2.3.0/16, 1.2.4.0/16, 1.2.3.4</blacklist>
        </nio-listener>
    </listeners>
    
    <file-user-manager file="./res/user.gen" />
    
</server>