[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Konfiguration



Zlatan Jukic schrieb:
Hallo all,

Wie konfiguriert man folgende Dienste mit Debian – Linux 3.0 (Maschine HP
Visualize C360).

Diese Maschine sollte als Server für folgende Dienste konfiguriert werden.

DHCP

TFTP

FTP

DNS

WEB –Server, z.B Appache

KANN MIR jemand BITTE bei der Konfiguration von diesen Services helfen!!! (
Kommando und Prozedure).

Besten DANK, und freundlichen Gruss, Zlatan

********************************************

Zlatan Jukic,

Fachhochschule Vorarlberg GmbH

Achstrasse 1

A-6850 Dornbirn

URL:    <http://www.fh-vorarlberg.at> http://www.fh-vorarlberg.at

email:  <mailto:zlatan.jukic@fh-vorarlberg.ac.at>
zlatan.jukic@fh-vorarlberg.ac.at

Phone: ++43 (0)5572 20336 167
Fax: ++43 (0)5572 20336 100

********************************************


also wenn das die Debiankiste ist, dann mit apt-get install dhcpd proftpd
apache bind dns-utils.
Wenn Du configfiles brauchst dann sag Bescheid.

--

Pawel Slabiak
Systemingenieur
Linux Services
mailto: p.slabiak@linux-services.org
http://www.linux-services.org

Lieber ein laufender Pinguin als ein haengendes Fenster.......


# This is a basic ProFTPD configuration file (rename it to 
# 'proftpd.conf' for actual use.  It establishes a single server
# and a single anonymous login.  It assumes that you have a user/group
# "nobody" and "ftp" for normal operation and anon.

ServerName			"FTP-Server der Linux Services"
ServerType			standalone
DeferWelcome			off
ServerAdmin			p.slabiak@linux-services.org

MultilineRFC2228		on
DefaultServer			on
ShowSymlinks			on
AllowOverwrite			on

TimeoutNoTransfer		600
TimeoutStalled			600
TimeoutIdle			1200

DisplayLogin                    /etc/welcome.msg
DisplayFirstChdir               .message
LsDefaultOptions                "-l"

DenyFilter			\*.*/

# Uncomment this if you are using NIS or LDAP to retrieve passwords:
#PersistentPasswd		off

# Port 21 is the standard FTP port.
Port				21

# To prevent DoS attacks, set the maximum number of child processes
# to 30.  If you need to allow more than 30 concurrent connections
# at once, simply increase this value.  Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances			30
#
#
MaxClients			5
#
#
SyslogLevel 			info
SystemLog			/var/log/proftpd.system.log
TransferLog			/var/log/xferlog.legacy
#ExtendedLog			/var/log/proftpd/access.log WRITE,READ write
#ExtendedLog			/var/log/proftpd/auth.log AUTH auth
ExtendedLog    			/var/log/paranoid.log ALL default
#
#


# Set the user and group that the server normally runs at.
User				nobody
Group				nogroup

# Normally, we want files to be overwriteable.
<Directory /*>
  # Umask 022 is a good standard umask to prevent new files and dirs
  # (second parm) from being group and world writable.
  Umask				022  022

  AllowOverwrite		on
</Directory>
DefaultRoot     ~/

# A basic anonymous configuration, no upload directories.

# These lines are marked with ##proftpd.deb anon access## so that they
# can be recognized, and edited by postinst.  You can remove them once
# you're sure you don't want to keep them around.

##proftpd.deb anon access## <Anonymous ~ftp>
##proftpd.deb anon access##   User				ftp
##proftpd.deb anon access##   Group				nogroup
##proftpd.deb anon access##   # We want clients to be able to login with "anonymous" as well as "ftp"
##proftpd.deb anon access##   UserAlias			anonymous ftp
##proftpd.deb anon access## 
##proftpd.deb anon access##   RequireValidShell		off
##proftpd.deb anon access## 
##proftpd.deb anon access##   # Limit the maximum number of anonymous logins
##proftpd.deb anon access##   MaxClients			10
##proftpd.deb anon access## 
##proftpd.deb anon access##   # We want 'welcome.msg' displayed at login, and '.message' displayed
##proftpd.deb anon access##   # in each newly chdired directory.
##proftpd.deb anon access##   DisplayLogin			welcome.msg
##proftpd.deb anon access##   DisplayFirstChdir		.message
##proftpd.deb anon access## 
##proftpd.deb anon access##   # Limit WRITE everywhere in the anonymous chroot
##proftpd.deb anon access##   <Directory *>
##proftpd.deb anon access##     <Limit WRITE>
##proftpd.deb anon access##       DenyAll
##proftpd.deb anon access##     </Limit>
##proftpd.deb anon access##   </Directory>
##proftpd.deb anon access## 
##proftpd.deb anon access##   # Uncomment this if you're brave.
##proftpd.deb anon access##   # <Directory incoming>
##proftpd.deb anon access##   #   # Umask 022 is a good standard umask to prevent new files and dirs
##proftpd.deb anon access##   #   # (second parm) from being group and world writable.
##proftpd.deb anon access##   #   Umask				022  022
##proftpd.deb anon access##   #            <Limit READ WRITE>
##proftpd.deb anon access##   #            DenyAll
##proftpd.deb anon access##   #            </Limit>
##proftpd.deb anon access##   #            <Limit STOR>
##proftpd.deb anon access##   #            AllowAll
##proftpd.deb anon access##   #            </Limit>
##proftpd.deb anon access##   # </Directory>
##proftpd.deb anon access## 
##proftpd.deb anon access## </Anonymous>
DefaultRoot ~/

Reply to: