proftp läuft auf ippp nicht

Locked
Message
Author
Alex

proftp läuft auf ippp nicht

#1 Post by Alex »

Hi, bin bereits am Verzweifeln..
Bei mir läuft der ProFtp Server auf eth ohne Probleme,
nur auf ipp gibts nicht einmal einen Port 21 ... ??
wie kann ich den Server auch für ipp aktivieren?

Alex

Alex

Re: proftp läuft auf ippp nicht

#2 Post by Alex »

Hat keiner irgendeine Ahnung??

Alex

pwk.linuxfan

Re: proftp läuft auf ippp nicht

#3 Post by pwk.linuxfan »

ProFTP kenne ich nicht, aber ein device kann keinen Port besitzen. Normall (mit ftp in der Konsole und allen Frontends) wählt man sich ein und verbindet sich mit dem Rechner.
Ist ftp installiert ?
Geht in der Konsole:
ftp ftp://ftp.?????.de
was ist die meldung wenn nicht ?
Für die ??? setzt du irgendeine ftp addresse ein !

PS: Deine zweite message war unklug, da denken die Leute deine Frage ist beantwotrtet...

odauter
Posts: 460
Joined: 17. Apr 2000 20:05
Location: Hamburg
Contact:

Re: proftp läuft auf ippp nicht

#4 Post by odauter »

Vielleicht hilft Dir das weiter:

http://www.proftpd.net/docs/proftpdfaq-5.html#ss5.14

"To listen on a interfaces which are not the primary host interface
Use the SocketBindTight directive, place your server configuration in a <VirtualHost ftp.mydomain.com> block and use "Port 0" for the main host configuration and and "Port 21" inside the VirtualHost block."

http://www.proftpd.net/docs/configurati ... tBindTight

Syntax: SocketBindTight on|off
Default: SocketBindTight off
Context: server config
Compatibility: 0.99.0pl6 and later

The SocketBindTight directive controls how proftpd creates and binds its initial tcp listen sockets in standalone mode (see ServerType). The directive has no effect upon servers running in inetd mode, because listen sockets are not needed or created. When SocketBindTight is set to off (the default), a single listening socket is created for each port that the server must listen on, regardless of the number of IP addresses being used by <VirtualHost> configurations. This has the benefit of typically requiring a relatively small number of file descriptors for the master daemon process, even if a large number of virtual servers are configured. If SocketBindTight is set to on, a listen socket is created and bound to a specific IP address for the master server and all configured virtual servers. This allows for situations where an administrator may wish to have a particular port be used by both proftpd (on one IP address) and another daemon (on a different IP address). The drawback is that considerably more file descriptors will be required if a large number of virtual servers must be supported.

Example: Two servers have been configured (one master and one virtual), with the IP addresses 10.0.0.1 and 10.0.0.2, respectively. The 10.0.0.1 server runs on port 21, while 10.0.0.2 runs on port 2001.

SocketBindTight off #default
# proftpd creates two sockets, both bound to ALL available addresses.
# one socket listens on port 21, the other on 2001. Because each socket is
# bound to all available addresses, no other daemon or user process will be
# allowed to bind to ports 21 or 2001.
...
SocketBindTight on
# proftpd creates two sockets again, however one is bound to 10.0.0.1, port 21
# and the other to 10.0.0.2, port 2001. Because these sockets are "tightly"
# bound to IP addresses, port 21 can be reused on any address OTHER than
# 10.0.0.1, and visa-versa with 10.0.0.2, port 2001.

One side-effect of setting SocketBindTight to on is that connections to non-bound addresses will result in a "connection refused" message rather than the typical "500 Sorry, no server available to handle request on xxx.xxx.xxx.xxx.", due to the fact that no listen socket has been bound to the particular address/port pair. This may or may not be aesthetically desirable, depending on your circumstances."
bye.olli
--
"Where's Oswald when we need him.."

Alex

Re: proftp läuft auf ippp nicht

#5 Post by Alex »

Inzwischen hab ichs gefunden..
Brauch nur DefaultServer auf on setzen und schon gehts *grml*
sonah und doch so fern <img src="http://www.pl-forum.de/UltraBoard/Images/Sad.gif" border="0" align="middle">
thanks to all

Alex

Locked