cancel
Showing results for 
Search instead for 
Did you mean: 

CIFS on Ubuntu doesn't work

ivanhajdinjak
Champ in-the-making
Champ in-the-making
Greetings,

i've installed Alfresco Community 4.0.d on Ubuntu 10.04.LTS
I've configured all the parameters as on Windows Server 2008 (where cifs works), but on Linux I can't make that work.
Are there any special configuration or something to have my attention ?

Thanks !
1 REPLY 1

bisana
Champ on-the-rise
Champ on-the-rise
Ya , You have redirect the samba , CIFS port using IPTABLES

echo 1 > /proc/sys/net/ipv4/ip_forward
modprobe iptable_nat
iptables -F
iptables -t nat -F
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
iptables -t nat -A PREROUTING -p tcp –dport 445 -j REDIRECT –to-ports 1445
iptables -t nat -A PREROUTING -p tcp –dport 139 -j REDIRECT –to-ports 1139
iptables -t nat -A PREROUTING -p udp –dport 137 -j REDIRECT –to-ports 1137
iptables -t nat -A PREROUTING -p udp –dport 138 -j REDIRECT –to-ports 1138

I had refereed, and cut and pasted from http://wiki.alfresco.com/wiki/File_Server_Configuration
Thanks
Joseph John
Notes:- If my posting was useful, please rate me. It encourages me