Go Back   FlashFXP Forums > FlashFXP > Release Archive > Website

Website Comments, Suggestions, Questions, Concerns, Fan mail, Hate mail, Whatever goes.

 
 
Thread Tools
Old 01-25-2005, 11:34 PM   #1
Junior Member
 
Join Date: Jan 2005
Posts: 11
Default Help Getting Started

Well I dont know how to ask I read the documentation over and over i searched through the forums its seems simple enough but I dont know how to start io. I commented the

### Encryption ###
#
Require_Encrypted_Auth = !*
Require_Encrypted_Data = !*
#Certificate_Name = 192.168.1.10

which says it wont start if i dont do this. I didnt change the ftpd name. I commented the DENY in host rules. I tried to do this months ago couldent figure it out and just gave up because I didnt want to ask. So please dont flame me. I read this

http://www.ioftpd.com/kb/view.php?kbid=77

i didnt touch UserIdTable so that shoudl be fine default right ?

I tried to run it by double clicking ioFTPD.exe and running it through command prompt. (case sensitive) I looked in the logs dir to see any errors but the dir is empty. The FTPD doesnt even seem to load at all i just double click and get nothing.


Thanks for your help.
houston is offline  
Old 01-25-2005, 11:41 PM   #2
Senior Member
ioFTPD Scripter
 
Join Date: Feb 2003
Posts: 469
Default

I get the same thing man.... I have no clue whats going on. But, luckily I have an old installation laying around here of the SAME EXACT version, I just copied everything over and it work... but when I use the new ioFTPD executable from this site it doesnt even seem to run.. no errors, no signs of life.
SnypeTEST is offline  
Old 01-26-2005, 08:04 AM   #3
Member
ioFTPD Foundation User
 
dink-puller's Avatar
 
Join Date: Sep 2004
Posts: 59
Default

@Houston
ioFTPD has no GUI, it runs very quietly. You can dbl click it to start it, and it looks like nothing happens, but check your task list to make sure it isn't actually running.
dink-puller is offline  
Old 01-26-2005, 12:55 PM   #4
Senior Member
 
Join Date: Jan 2004
Posts: 237
Default

uhh
if you follow the documentation you should be able to set it up no problem.

you said you commented out the DENY line
well did you uncomment the ACCEPT line?

if ioFTPD.exe isn't in your process list there's a very good chance (99% positive) that there's problems with your ini (or host rules, or VFS even)... make sure you set up EVERYTHING relatively positively before you try to run ioFTPD.exe. They don't launch a ship into outer space after only building the body. :P
mr_F_2 is offline  
Old 01-26-2005, 08:18 PM   #5
Junior Member
 
Join Date: Jan 2005
Posts: 11
Default

I didn't uncomment the accept line, but that didn't seem to make it work when uncommented. It still doesnt launch. Also dink I understand its a has no gui I did in fact check processes and its not launching. Are there suppose to be any logs written when it crashes or unsuccessfully launches? I put the files on the next reply. Do I expect you to actually read them ? no but I am thankful if you do. Also how are the services created ?

I searched for vsf and removed samba since i dont think i have that. Thats for a windows/linux network right ?


Code:
admin.vfs

"c:\ioFTPD\site"        /
"c:\"                   /mnt/c-drive
"d:\"                   /mnt/d-drive

default.vfs

"c:\ioFTPD\site"           /
"c:\"               /test
houston is offline  
Old 01-26-2005, 08:23 PM   #6
Junior Member
 
Join Date: Jan 2005
Posts: 11
Default

host rules


[code]
# Default policy
#
# POLICY ACCEPT CONNECTIONS_PER_IP
# POLICY DENY
#
POLICY ACCEPT 2
## PLEASE REMOVE LINE BELOW
#POLICY DENY

# Classes
#
# CLASS CLASS_NAME TOTAL_CONNECTIONS_PER_CLASS
CLASS NORDIC 25
CLASS ADMIN -1

# Rules
#
# ACCEPT I|H IP|HOSTNAME CLASS_NAME CONNECTIONS_PER_IP
# DENY I|H IP|HOSTNAME LOG_STRING
#

ACCEPT I 192.168.1. ADMIN -1
ACCEPT I 127.0.0. ADMIN -1
ACCEPT H .fi NORDIC 2
ACCEPT H .se NORDIC 1
ACCEPT H .no NORDIC 1
DENY I 192.168. "Banned network address"
DENY I 10. "Banned network address"
DENY H .tw "Access from taiwan is prohibited"

[code/]


=====
.ini
Code:
[Threads]
Process_Priority	= NORMAL	# Suggested process base priority (Idle/Normal/High/Realtime)
Io_Threads		= 2		# Number of io threads
Worker_Threads		= 5		# Number of worker threads 
Encryption_Threads	= 2		# Number of encryption threads
WindowName		= ioFTPD::MessageWindow


[File]
MessageCache_Size	= 1000		# Amount of message files to cache
DirectoryCache_Size	= 1000		# Amount of directories to cache per cache bucket (8 buckets)
Device_Concurrency	= 5		# Maximum simultanous io operations per device


[Locations]
User_Id_Table   = ..\etc\UserIdTable
Group_Id_Table  = ..\etc\GroupIdTable
Hosts_Rules     = ..\etc\Hosts.Rules

User_Files      = ..\users
Group_Files     = ..\groups
Log_Files	= ..\logs
Cache_Files	= ..\cache

Default_Vfs     = ..\etc\default.vfs
Environment     = ..\etc\ioftpd.env



##################### DEVICES ########################
##
#
# [Device Name]
# Host   = <Host/IP>         # External host. Address shown to clients. (0.0.0.0 = any local ip)
# Ports  = <Begin-End>       # Ports to use for data transfers. May contain comma seperated list of port ranges.
# Random = <True/False>      # Use ports in random order
# Bind   = <Host/IP>         # Internal host. If specified, connections are bound to this address instead of HOST.
#
# Global_Inbound_Bandwidth  = <kB/s>  # Limit overall inbound speeds
# Global_Outbound_Bandwidth = <kB/s>  # Limit overall outbound speeds
# Client_Inbound_Bandwidth  = <kB/s>  # Limit client inbound speeds
# Client_Outbound_Bandwidth = <kB/s>  # Limit client outbound speeds
#


[Any]
Host				= 0.0.0.0
Ports				= 1024-2048
Random				= True
;Global_Inbound_Bandwidth	= 10000
;Global_Outbound_Bandwidth	= 10000
;Client_Inbound_Bandwidth	= 100          [*registered version*]
;Client_Outbound_Bandwidth	= 50           [*registered version*]
;Bind				= 



################## END OF DEVICES ####################



##################### SERVICES #######################

[FTP_Service]
Type                    = FTP
Device_Name             = Any
Port                    = 9999
Description             = My FTP Service
User_Limit              = 10
Allowed_Users           = *
Messages                = ..\text\ftp

### Encryption ###
#
Require_Encrypted_Auth  = !*
Require_Encrypted_Data  = !*
#Certificate_Name        = 192.168.1.10
Explicit_Encryption     = True
Encryption_Protocol     = SSL3
Min_Cipher_Strength     = 128
Max_Cipher_Strength	= 256

### IDNT command handler ###
#
Get_External_Ident      = True

### Traffic Balancing ###
#
;Data_Devices            =
;Random_Devices          = True


[Telnet_Service]
Type                    = Telnet
Device_Name             = Any
Port                    = 10001
Description             = My Telnet Service
User_Limit              = 10
Allowed_Users           = T !*
Messages                = ..\text\telnet



[HTTP_Service]
Type                    = HTTP
Device_Name             = Any
Port                    = 10000
Description             = My HTTP Service
User_Limit              = 50
Allowed_Users           = H !*
Messages                = d:\ioFTPD\text\http2
#Certificate_Name        = 192.168.1.10
;Explicit_Encryption     = False
;Encryption_Protocol     = SSL3
;Min_Cipher_Strength     = 128
;Max_Cipher_Strength     = 384


################## END OF SERVICES ###################



[Network]
Active_Services            = FTP_Service Telnet_Service HTTP_Service

Ident_Timeout              = 5          # Set ident timeout (seconds)
Hostname_Cache_Duration    = 1800       # Seconds cached hostname is valid
Ident_Cache_Duration       = 120        # Seconds cached ident is valid
Connections_To_Ban         = 1000000         #
Ban_Counter_Reset_Interval = 30         #
Temporary_Ban_Duration     = 1200       # Seconds host remains banned
Internal_Transfer_Buffer   = 65536      # Internal transfer buffer size
Scheduler_Update_Speed     = NORMAL     # Socket scheduler update speed (HIGH/NORMAL/LOW/DISABLED)



[Ftp]
Idle_TimeOut		= 120
Login_Attempts		= 3
Login_TimeOut		= 15
Socket_Send_Buffer	= 4096
Socket_Recv_Buffer	= 1024
DataSocket_Nagle	= False
Transfer_Buffer		= 65536 # For maximum scalability, set Transfer & DataSocket buffers to to low values
DataSocket_Send_Buffer	= 32864
DataSocket_Recv_Buffer	= 32864


[Telnet]
Idle_TimeOut		= 120
Login_TimeOut		= 15
Socket_Send_Buffer	= 4096
Socket_Recv_Buffer	= 1024


[Http]
Keep_Alive		= 180
Max_Memory_Content	= 1024000 # Maximum bytes of GET/PUT/POST/HEAD content to cache in memory
Socket_Send_Buffer	= 4096
Socket_Recv_Buffer	= 4096


[Sections]
## Maximum of 10 different credit sections ##
#
# <alias> = <credit section #> <path>
# <alias> = <credit section #> <stats section #> <path>
#

Home    = 0 1 /home/*
Default = 0 *


[VFS]
###
# Default attributes for files & directories
#
# Required Parameters:  <filemode> <owner uid>:<owner gid>
#

Default_Directory_Attributes    = 755 0:0
Default_File_Attributes         = 644 0:0


###
# Command specific rules
#
Modify_Stats_On_Delete  = False


###
# Detailed permissions for directories
#
# priviledge    = <virtual path> <rights>
#
Upload          = * *
Resume		= * *
Download	= * *
MakeDir         = * *
RemoveOwnDir    = * *
RemoveDir       = * 1VM
Rename		= * 1VM
RenameOwn       = * *
Overwrite       = * 1VM
Delete		= * 1VM
DeleteOwn	= * *
NoStats         = * =lSpeed !*


[Reset]
WeeklyReset     = Sunday
MonthlyReset    = 1st


[Scheduler]
###
# Scheduler
#
# Event = <minutes> <hours> <day of month> <day of week> Command
#
# Internal Commands:
#
# &Reset          : Resets upload/download counters
# &Service_Update : Reloads devices and Restarts services, if bind ip of service has changed
#
Reset           = 0 0 * *               &Reset
Service_Update  = 10,30,50 * * *        &Service_Update





[Events]
;OnUploadError		=
;OnUploadComplete	= EXEC d:\test.bat
;OnUploadComplete	= TCL ..\scripts\test2.itcl
;OnDownloadError	=
;OnDownloadComplete	=
;OnResume		=
;OnUpload		=
;OnNewDir		=
;OnDelDir		=
;OnLogIn		=
;OnServerStart		=
;OnServerStop		=
;OnServiceStart		=
;OnServiceStop		=




[Modules]
;MessageVariableModule  = ..\modules\cookie.dll
;UserModule             = ..\modules\networkuser.dll
;GroupModule            = ..\modules\networkgroup.dll
;EventModule		= ..\modules\eventmodule.dll




[FTP_Pre-Command_Events]
;list =
;stor =
;mkd  =

[FTP_Post-Command_Events]
;mkd  =
;rmd  =
;stor =
;dele =


[FTP_Custom_Commands]
## SITE <trigger> <parameters>
#
# trigger       = !file                 # Show file
# trigger       = @string               # Alias
# trigger       = EXEC script.exe       # Execute file.exe
# trigger       = %EXEC script.exe      # Execute file.exe (translate cookies)
# trigger       = TCL script.itcl       # Execute file.itcl
#
## Examples
# welcome       = !..\text\ftp\welcome.msg
# rehash        = @config rehash
# exec          = EXEC ..\scripts\exec.bat
# myinfo        = %TCL ..\scripts\whoami.itcl %[$user]
# cat           = TCL ..\scripts\showfile.itcl
#
TCL = TCL ..\scripts\test2.itcl
#TCL = TCL ..\scripts\bottalk.itcl
BAT = EXEC d:\test.bat
ioGuiExt = EXEC d:\who\ioGuiExt.exe


[Telnet_Binaries]
hello	= EXEC d:\ioFTPD\site\bin\hello.bat



[FTP_Command_Permissions]


[FTP_SITE_Permissions]
## SITE <cmd> ##
#
# 'M' - MASTER
# 'V' - VFS ADMINISTRATOR
# 'G' - GROUP ADMIN RIGHTS
# 'F' - FXP DENIED (DOWNLOAD)
# 'f' - FXP DENIED (UPLOAD)
# 'L' - SKIP USER LIMIT PER SERVICE
# 'A' - ANONYMOUS
#
adduser		= 1GM
deluser		= 1GM
renuser		= 1M
gadduser        = 1GM
grpadd		= 1M
grpdel		= 1M
grpren		= 1M
chgrp		= 1M
kick		= 1GM
kill            = 1M
addip		= 1GM
delip		= 1GM
passwd          = !A *
stats		= !A *
tagline         = !A *
swho            = 1MG
chmod           = !A *
chown		= MV
chattr          = MV
config		= M
uinfo		= 1GM
ginfo           = 1GM
users		= 1GM
groups          = 1GM
shutdown        = M
bans            = 1M



[Telnet_Command_Permissions]
adduser		= 1GM
deluser		= 1GM
renuser		= 1M
gadduser        = 1GM
grpadd		= 1M
grpdel		= 1M
grpren		= 1M
kick		= 1GM
kill            = 1M
addip		= 1GM
delip		= 1GM
chmod		= !A *
chown		= MV
chattr		= MV
list		= *
cd		= *
passwd		= *
stats		= *
tagline		= *
swho		= 1MG
chgrp		= 1M
config		= M
uinfo		= 1GM
ginfo           = 1GM
users           = 1GM
groups          = 1GM
shutdown        = M
bans            = 1M




[Telnet_Binary_Permissions]


[Change_Permissions]
admingroup        = 1M
credits           = 1M
flags             = 1M
groupdescription  = 1M
groupslots        = 1M
groupvfsfile      = M
homedir           = 1GM
logins            = 1M
passwd            = 1GM
ratio             = 1GM
stats             = M
tagline           = 1GM
showjobs          = M
speedlimit        = 1M
vfsfile           = M


[Http_Permissions]
users		= 1GM
uinfo		= 1GM
addip		= 1GM
delip		= 1GM
config		= M
houston is offline  
Old 01-26-2005, 09:01 PM   #7
Senior Member
 
Join Date: Jan 2004
Posts: 237
Default

1----------

in your Host.Rules, delete the line:
DENY I 192.168. "Banned network address"
as you will be banned from your own server, and you probably don't want that because you have
ACCEPT I 192.168.1. ADMIN -1

just about it.

DENY > ACCEPT, so you will be denied

2-------
to be safe (i'm not sure if it matters or not), comment out the encryption lines to (under FTP_Service):
#Explicit_Encryption = True
#Encryption_Protocol = SSL3
#Min_Cipher_Strength = 128
#Max_Cipher_Strength = 256

3--------
unless you have a bouncer set
Get_External_Ident = False

4-------
to be safe, set (For HTTP_SERVICE)
Messages = ..\text\http2
just in case it's having problems loading those files

5------
under [Sections] remove line:
Home = 0 1 /home/*
because it doesn't seem like you have the virtual directory /home/ (given by your vfs files)


------
other than that i can't see the problem it should be working, seems fine to me.
try those and report back i guess

are you sure the process isn't listed at all in taskman?
mr_F_2 is offline  
Old 01-26-2005, 11:09 PM   #8
Junior Member
 
Join Date: Jan 2005
Posts: 11
Default

I tried that as well and it still doesnt start. Maybe its a unique problem with my box. You would think it would still start with that line. just say access denied while conencting right ? Thanks for your efforts in helping me.
houston is offline  
Old 01-26-2005, 11:18 PM   #9
Junior Member
 
Join Date: Jan 2005
Posts: 11
Default

and yea im sure its not running. here is a pic of my processes in alphabetical order. When i run it my screen kind of flickers for a fraction of a second. So its trying to load I assume.


houston is offline  
Old 01-27-2005, 05:04 AM   #10
Senior Member
FlashFXP Registered User
ioFTPD Registered User
 
Join Date: Oct 2002
Posts: 500
Default

Check SystemError.log in the log files.
Also check to see if its dumped a crash log in root of C drive.
EwarWoo is offline  
Old 01-27-2005, 09:39 PM   #11
Junior Member
 
Join Date: Jan 2005
Posts: 11
Default

no I didnt find a log in either of those locations.
houston is offline  
Old 01-28-2005, 12:16 AM   #12
Senior Member
ioFTPD Scripter
 
Join Date: Oct 2002
Posts: 705
Default

Since the unregistered version doesn't support SSL I wouldn't have touched any settings at all in ini. Either try the default ini (fresh from the package) or uncomment the certificate line.
Zer0Racer is offline  
Old 01-28-2005, 10:35 PM   #13
Junior Member
 
Join Date: Jan 2005
Posts: 11
Default

Quote:
Originally posted by Zer0Racer
Since the unregistered version doesn't support SSL I wouldn't have touched any settings at all in ini. Either try the default ini (fresh from the package) or uncomment the certificate line.
tried it still now go. the reason i commented it is because the directions said to.
houston is offline  
Old 01-28-2005, 11:18 PM   #14
Senior Member
 
Join Date: Jan 2004
Posts: 237
Default

if the default ini is not working, without any changes, then your system probably has some fault with it.
mr_F_2 is offline  
Old 01-29-2005, 12:31 AM   #15
Junior Member
 
Join Date: Jan 2005
Posts: 11
Default

yea somethings wrong i copied the files over to my laptop and it ran. I dont know what could be wrong I never had any problems running appz before on my pc. only ioFTPD. weird eh ? laptop and pc are both xpSP2. Thanks for the help now to figure out what could be wrong with my pc....
houston is offline  
 
Create a free account to browse our forums without ads



Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -5. The time now is 01:38 AM.