Thanks for the info, got my port forwarded. However, I'm running into some samba issues as well and I hope its ok to just add this to your thread instead of just making a new one. I want to be able to write to any folder within my public folder.
I started taking a look at the smb.conf file. So far I've added the 'guest ok = yes' option under [public] and i've changed 'security = user' to 'security = share'. I then restarted the samba daemon. But apparently I still can't drop files from my Suse 10.2 box to my LinuxMCE box. Its giving me an "Error "Access Denied" while copying ..." Has anyone run into this before? Here's my smb.conf:
## @FileType: Pluto Sectioned Config File ##
## @Version: 1 ##
## @KeepSections: ##
## @RemoveSections: ##
[global]
## BEGIN : Domain and Hostname
workgroup = LinuxMCE
server string = DCERouter
netbios name = DCERouter
## END : Domain and Hostname
smb ports = 139
log level = 2
invalid users = root
log file = /var/log/samba/log.%m
max log size = 1000
syslog = 0
encrypt passwords = true
socket options = TCP_NODELAY
dns proxy = no
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\sUNIX\spassword:* %n\n *Retype\snew\sUNIX\spa$
username map = /etc/samba/usermap.txt
unix extensions = yes
security = share
[public]
comment = public files
browseable = yes
writable = yes
create mask = 0777
directory mask = 0777
path = /home/public/data
public = yes
guest ok = yes
[home]
comment = shared home files
browsable = yes
writable = yes
path = /home
public = no
guest ok = no
force user = root
force group = root
## BEGIN : User Shares
## END : User Shares