PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : FTP von Anfang an



jurlich
08.12.04, 22:35
Hallo

Ich möchte FTP stellen, aber ich keine Ahnung wie verbinden mit meiner innere Adresse (127.0.0.1- lokal FTP) den(das?) Außenserver machen. Unser Netz hat router, aber ich bin administrator nicht:) Wie kann ich dem Hindernis ausweichen?

towo2099
08.12.04, 22:47
127.0.0.1 is not your local adress, it's the loopback adapter.
When you don't have administrator-privileges on the router, it is not possible, because on the router must be configured a portforward to your machine.

Sorry for my bad english, my german is better ;)

cane
08.12.04, 23:20
127.0.0.1 is not your local adress, it's the loopback adapter.
When you don't have administrator-privileges on the router, it is not possible, because on the router must be configured a portforward to your machine.

Sorry for my bad english, my german is better ;)

127.0.0.1 is not your local adress, it's the so called "loopback adapter".
When you don't have administrative privileges on your router, it is not possible to change the netconfig because you have to configure a portforward to your own machine.

;)

Where do you come from jurlich?

mfg
cane

jurlich
09.12.04, 21:38
Where do you come from jurlich?
cane
Ich komme aus Polen.

Warum ich kann nich z.B. Tunnel machen, oder etwas anderen.

jurlich
10.12.04, 17:33
hello
warum wann ich möchte local FTP benutzen, dann ich sehe das:
root@ubuntu:/etc/init.d # ftp 127.0.0.1
Connected to 127.0.0.1.
421 Service not available, remote server has closed connection
ftp> ls
Not connected.
ftp> bye
root@ubuntu:/etc/init.d #

Mein config proftpd.conf ist Standard:

Port 21



# Umask 022 is a good standard umask to prevent new dirs and files

# from being group and world writable.

Umask 022



# Note that this ONLY works in standalone mode

MaxInstances 30



# Set the user and group under which the server will run.

User nobody

Group nogroup



# To cause every FTP user to be "jailed" (chrooted) into their home

# directory, uncomment this line.

DefaultRoot ~



# Normally, we want files to be overwriteable.

<Directory />

AllowOverwrite on

</Directory>

cane
11.12.04, 11:30
Hallo,

du solltest zuerst überprüfen ob der ftpd überhaupt läuft:
ps -aux | grep ftp

Wenn er nicht läuft starte ihn.

Wenn er läuft versuche mal auf Deine "richtige IP" zu verbinden, nicht auf 127.0.0.1

Also zum Beispiel ftp 192.168.1.15

Deine IP erfährst Du indem Du 'ifconfig' eingibst...

######################################

Hello,

first of all you should check if the ftpd is running:
ps -aux | grep ftp

If there is no output you have to start your ftpd.

If the ftpd is already running try to connect to your "real IP" and not to 127.0.0.1.

For example: ftp 192.168.1.15.

You can get your IP with the command 'ifconfig'.

mfg
cane