PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Samba -- ssl error ?? häää?



04.04.01, 23:39
Jep.. das nächste Prob mit Samba

Also ich hab mir samba 2.0.7 als src heruntergeladen und OHNE ssl kompiliert .. trotzdem geht Samba nicht ..

auf smbclient -L localhost

bekomme ich nen error wie:

---ssl error -- keine Ahnung ... auf jeden Fall geht der Samba server nicht ..

naja... gibts da evtl Probleme mit dem Firewall auf dem Rechner .. die stammt dann von der DSL Verbindung per Masq .. die IPchains kann ich dann auch noch posten wenns hilft...

muß etwas im Kernel (2.4.2) an oder bestimmt aus sein, damit Samba läuft ???

Danke für Eure Hilfe

04.04.01, 23:43
Nachtrag:

Der Fehler:

SSL: Error error setting CA cert locations: error:00000000::lib(0) :func(0) :reason(0)

trying default locations.
added interface ip=192.168.0.1 bcast=192.168.0.255 nmask=255.255.255.0
error connecting to 127.0.0.1:139 (Verbindungsaufbau abgelehnt)
Connection to localhost failed

-----------------------------------------

DSL - MASQ - SKRIPT:

#!/bin/sh
#
# firewall-masq This script sets up firewall rules for a machine
# acting as a masquerading gateway
#
# Copyright (C) 2000 Roaring Penguin Software Inc. This software may
# be distributed under the terms of the GNU General Public License, version
# 2 or any later version.

# Interface to Internet
EXTIF=ppp+

ANY=0.0.0.0/0

ipchains -P input ACCEPT
ipchains -P output ACCEPT
# ipchains -P forward DENY
ipchains -P forward ACCEPT

ipchains -F forward
ipchains -F input
ipchains -F output

# Deny TCP and UDP packets to privileged ports
ipchains -A input -l -i $EXTIF -d $ANY 0:1023 -p udp -j DENY
ipchains -A input -l -i $EXTIF -d $ANY 0:1023 -p tcp -j DENY

# Deny TCP connection attempts
ipchains -A input -l -i $EXTIF -p tcp -y -j DENY

# Deny ICMP echo-requests
ipchains -A input -l -i $EXTIF -s $ANY echo-request -p icmp -j DENY

# Do masquerading
ipchains -A forward -j MASQ
echo 1 > /proc/sys/net/ipv4/ip_forward


--- das wäre alles soweit ---

hoffe mit kann wer helfen