Reading an SMB Share Without Mounting

I'm sure hte answer to this must be incredibly simple, but when I Google, almost every link is about mounting SMB shares.
I want to be able to read an SMB share on another system from the command line WITHOUT mounting the share.
For example, in Windows, I can type "dir \\servername\directory" and get a listing of the files on an SMB mount without having to mount it.
Can I do anything like that from the command line in OS X?  (I tried variations, like "ls //servername/directory" and did not get anything that worked.)

There's no support for the Microsoft \\ syntax within the various tools of the command line environment.
You're using a CIFS/SMB/Samba remote access path and particularly attempting to use a feature and syntax that is specific to Microsoft Windows (that \\ stuff) and its MS-DOS command mode.
It's probably easier (and likely best) to use Filezilla or another similar tool to remotely access the share via ftp or sftp transport or another path when the GUI is required, or to use the command-level tools scp or sftp (which can be configured for a no-password login), or to use ftp (wildly insecure, and largely incompatible with firewalls), or to simply mount (or automount) the share. 
Alternatively and if the other system involved here is remote and you're being blocked by a gateway firewall, then you might look to use a VPN into the remote network gateway or (less desirably) a VPN that's been port-forwarded into the remote server.  That can allow the volume to be mounted, and also avoids exposing CIFS/SMB/Samba to the Internet.
The most direct command-line analog to what you're trying here is the smbclient command-line tool.  For details and features and limitations of that, issue the smbclient --help command, or see the available Samba smbclient documentation.  Though it can do what you want, I"d still look to use scp or sftp (directly at the command line, or via a GUI client) or a VPN here.

Similar Messages

  • Automounting smb share without network daemon

    Hello everyone, I have an issue. I'm using networkmanager to manage wireless connections. While installing networkmanger, the wiki told you must remove network daemon from rc.conf, and use networkmanager instead: that's exactly what I did, and networkmanager does the job just well. I told you that because I think that it is the reason why i'm failing to auto mount smb share through editing fstab. If i put in fstab the command described on the wiki (cisf mounting) I get a FAIL at booting, it says it can't find the share. Otherwise am I wrong and the reason must be related to something else, like syntax errors? Thank you.

    Trying to follow your advice, I did the following: I put into /etc/fstab
    //server/Videos$ /mnt/video cifs noauto,noatime,username=Y3KNET/Arch,password=Ilove69,ip=192.168.1.1 0 0
    //server/Public$ /mnt/public cifs noauto,noatime,username=Y3KNET/Arch,password=Ilove69,ip=192.168.1.1 0 0
    then, in /etc/rc.local:
    mount /mnt/video
    mount /mnt/public
    and, as a second try,
    sudo mount /mnt/video
    sudo mount /mnt/public
    but without luck: no mount actually takes place. Anyway, if i type the above code after logon into kde, everything works flawlessly. Where am I mistaken?
    Last edited by Y3k (2011-12-03 23:06:36)

  • SMB shares all mounted drives regardless permission set or not

    Not sure if anyone encountered the same issue, tried google but no luck with it.
    I enable the SMB in the "file sharing" on my iMac, and granted the read access to my public folder only. The reason I used SMB instead of AFP is the folder I want to share is on an external USB drive which is formatted as exFAT. When I try to connect to the iMac from my Macbook pro, i can see all the drives, including the internal hard drive and 2 external USB drive, and I can read and write in these drives.
    Anyone have a clue why this is happening? Thanks

    Thanks for the replies guys. I do not have a firewall enabled.  I have some developments (Slight)
    I have an SMB share on a windows machine.  If I CMD+K and just do SMB://IP.Address then it ask me for credentials.
    If I put in completely wrong credentials, the box just shakes when I hit OK.
    If I put in correct credentials, it shows me a list of available shares (to that particular user) and then when I click the one I want and hit OK I get a popup "You do not have permission to access this server"
    So its obviously taking the login in some way or another, just failing at another part.
    I've looked in /var/log and the only log I can see that has anything relevant is system.log (Admittedly I didnt check them all as there are a lot)
    I get the below message after a failed attempt to access an SMB share:
    Jan 21 12:04:51 Carls-MacBook-Air.local NetAuthSysAgent[1042]: NAHSelectionAcquireCredential The operation couldn’t be completed. (com.apple.NetworkAuthenticationHelper error -1765328228 - acquire_kerberos failed carlnewton@EUDC1PCUBAC: -1765328228 - unable to reach any KDC in realm EUDC1PCUBAC)
    EUDC1PCUBAC is the name of the computer that I am trying to access the SMB share on.  carlnewton is the name of the user account on that machine that I am trying to use to access the share.
    I'm going to start googling this error now but if anyone else has seen it before then input would be appreciated!
    Thanks

  • Define User/Group for an SMB share being mounted!

    Ave,
    Mac OS X 10.3.9 had a very easy way of defining UID & GID of a share being mounted on a mount point, to define an Owner of the content.
    mount_smbfs -u 70 -g 70 //usr:pwd@ip/share SharePoint
    This would make Apache Web Server the User/Group for the mounted share, and this way PHP could access the files on the mounted share with no problems.
    Leopard has elimited that -u & -g arguments to mount_smbfs, and I can't for the life of me figure out how to define User/Group on a share being mounted.
    Any clues?

    sudo -u www mount_smbfs -f 0777 -d 0777 //usr:pwd@ip/share node fixed it!

  • Using an "if not exists" command with a folder on an SMB share

    I'm trying to use an "if not exists" command on a folder which is stored on a mounted smb share..
    This part of my script is supposed to check if a folder exists and;
    If it does - Skip to the next part of the script
    If it doesn't - Create the folder.
    At the moment it either errors saying that the folder doesn't exist or doesn't create the folder.
    I can get this script to work fine using local folder paths but I want to do it on an SMB share..
    Here's my script.
    Many thanks in advance.
    Martin
    set username to (do shell script "whoami")
    set Media to " Media Files"
    mount volume "smb://172.22.8.23/macmedia$"
    tell application "Finder"
    if not (exists ("smb://172.22.8.23/macmedia$/" & username as text) & Media as text) then
      make new folder at "macmedia$" with properties {name:(username as text) & Media as text}
    end if
    end tell
    tell application "Finder"
    set mnt to ("smb://172.22.8.23/macmedia$/" & username as text) & Media as text
    try
      mount volume mnt
    end try
    eject "macmedia$"
    end tell

    Hi Camelot,
    Thanks a lot for that the script's working as it should now..
    I'm still having intermittent problems on some clients where it will only map the root volume "macmedia$" and freeze there.. This is a problem as they can then see and access everyone elses folders from there.
    Do you know of a better/cleaner way to do what I'm trying to acheive? All i'm after is mapping an additional drive for student's so they can save larger files to our media server within their own folders.
    Is there a way of checking if a folder exisits within an smb share without mounting the volume? Just trying to think outside of the box a bit..
    Here's my new script;
    set username to (do shell script "whoami") & " Media" as text
    mount volume "smb://172.22.8.23/macmedia$"
    tell application "Finder"
              if not (exists folder username of disk "macmedia$") then
      make new folder at disk "macmedia$" with properties {name:username as text}
              end if
    end tell
    tell application "Finder"
              set mnt to ("smb://172.22.8.23/macmedia$/" & username as text)
              try
      mount volume mnt
              end try
              eject "macmedia$"
    end tell
    Many thanks,
    Martin

  • SMB share read-only after upgrade to 10.6.4

    since i upgraded my MBP to 10.6.4 i can access our samba shares only in read-only mode.
    i'm connecting with the following string:
    cifs://myUsername@servername/aFolder/anotherFolder/myFolder
    this connection used to work since 10.3 or 10.4 up to 10.6.3, but now i'm getting a read-only volume ("You can only read" in the finder's get info window).
    any hints what i could change to make things writeable again?

    maybe an important additional info:
    the SMB share is mounted under /Volumes using my local MBP user/group setting.
    on the unix box where this share is located, i'm using a different username ("myUsername"), hence the cifs://myUsername@... in the server address string.
    since this connection always worked until 10.6.3 i have no idea if this share used to be mounted for root/admin (or other) - i never checked those permissions/owner settings before.
    THIS IS /Volumes:
    drwxrwxrwt@ 5 root admin 170 14 Jul 12:55 .
    drwxrwxr-t@ 38 root admin 1360 23 Jun 08:38 ..
    lrwxr-xr-x 1 root admin 1 11 Jul 10:53 Macintosh HD -> /
    drwxrwxr-x@ 24 root admin 884 18 Jun 19:39 Users
    *dr-xr-xr-x 4 mbpuser mbpuser 16384 14 Jul 12:52 myFolder*
    loging in on the remote server (using Terminal.app and "myUsername" + password) i have full r/w access on myFolder and all subdirectories. it's only the mounted share on the MBP that is read-only.

  • Smb shares read only

    Hi all,
    Upgraded to Lion from a retail build of Snow-Leopard, upgrade went fine, but noticed i can connect SMB fine to my Win7 shares, but when doing a "mount" command on the MBP side, all mounted shares are read-only !
    Permissions for this user are correct (it worked great in Snow-Leopard) with no changes to the Windows side.
    Also i am giving credentials when i mount the share.
    I realize Apple have written their own SMB stack since they cant distribute Samba anymore, but surely it can mount shares read-write, or is the implementation not ready for prime-time and mounts read-only for now until Apple correct the issue?
    Thanks.

    You described my situation as well.
    I have a Windows XP computer -> Lion SMB share that mounts correctly but has "challenges"
    - Files and folders can be created but error messages are displayed on the Windows side. Refresh the window and they are there.
    - Files and folders can't be renamed or deleted
    A Snow Leopard Mac on the same network -> Lion SMB share works great
    Prior to upgrading to Lion the same shares on Snow Leopard worked flawlessly.

  • Windows 2012 Standard File Server Clustering SMB Share Error: Access is denied.

    Hi All,
    My setup consist of 2 nodes clustered with File Server role.  I can successfully failover role to either node with no issues.  But if I try to modify the permissions of any file share on my file server cluster I get the following error: Error
    Occurred while updating an SMB share: Access is denied.  Access is denied.
    Now I played around with the permissions on these shares and noticed that when I add the "everyone" group to these shares with change permissions I can successfully modify the shares with no errors.  If I removed the "everyone" group
    I get the error.  So to tell its like some service or account needs permission to these shares to be able to modify them.  I don't want to keep "everyone" group on these shares.  Can anyone please shed some light on what group, user,
    or service account needs permissions on these shared in order for me to modify these SMB shares without getting Access is denied.  Thanks

    Hi,
    It seems your account don’t have the enough right to modify this clustered folder permission.
    More information:
    Create a Shared Folder in a Clustered File Server
    http://technet.microsoft.com/en-us/library/cc732302.aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Cannot save to SMB shares in Pages

    This issue is actually occurring ONLY in the iWork applications, Pages, Keynote and Numbers.
    User recently upgraded to Mavericks 10.9.1.  Has two SMB shares to smb://servername called "Public" and "Company Name".
    The two locations are available in Finder as typical network shares in the left-hand pane.  You can navigate the Shares, open files, etc. without any issues.
    However, if I create a new file in Pages and type some text into the new file and attempt to save it to "Public" or "Company Name", I'm presented with the following error:
    "Untitled" couldn't be moved because you don't have permission to access "Public".  To view or change permissions, select the item in the Finder and choose File > Get Info.
    When I do this, I see the information as "You have custom permissions" which typically indicates an NTFS or ACL related permissions that OSX can't quite read. 
    This same issue occurs whether i'm in Pages, Keynote or Numbers.
    Troubleshooting:
    1.  Checked and verified permissions were correct on Windows 2003 server hosting the SMB shares;
    2.  Created new file in TextEdit and attempted to save it to "Public" and "Company Name".  File save was successful.
    3.  Created new user on machine and logged in and performed steps above with Pages, Keynote and Numbers.  Ran into the exact same error.
    4.  Disconnected the shares and reconnected to the server using domain administrator account.  Same issues occur regardless ONLY in the iWorks applications.  Permissions are fine for navigating location, opening files and saving in any application outside of iWorks.
    For now, I have the user performing the following steps:
    1. Create new document in Pages, Keynote or Numbers.  Edit the document.  Save it to the local drive in Documents\Need to Save
    2. Within Finder, user goes to Documents\Need to Save and drags the files that need to be on the network to the appropriate location, "Public" or "Company Name". 
    I'm almost thinking I need to remove and reinstall the iWork suite applications.  However, I don't want to perform that step without checking here.
    Any thoughts or ideas are appreciated.  Thank you!

    Peter,
    In working with the client, we did find that we could create new documents in the various iWork '09 applications and save them to the SMB shares without any issues.  However, since 5.0 Pages, for now, is installed, all applications have been created in 5.0.1, which is the current version on the App Store, and therefore, cannot be opened in Pages '09.  When we open Pages '09, we're prompted to upgrade to Pages 5.0.  Therefore, we look to still have the issue in saving to SMB shares through the iWorks applications regardless.  Especially since the client cannot access any of the current documents in iWorks '09 applications as they were created in the newer application.
    Any assistance on this would be greatly appreciated.  Thank you!
    Jeff

  • SMB shares in solaris 11.1

    hi , i am a newbie to solaris 11.1 and i need to allow windows users in a Workgroup Mode to access SMB shares without username or password and have full permissions , how can i do it ???
    thanks in advance

    Oracle recommends below things on rpool: (thats reason wanted to apply SMI Label)
    I have seen in the Oracle documentation that for rpool below are recommended:
    - A disk that is intended for a ZFS root pool must be created with an SMI label, not an EFI label.
    - Create root pools with slices by using the s* identifier.
    - ZFS applies an EFI label when you create a storage pool with whole disks.
    - In general, you should create a disk slice with the bulk of disk space in slice 0.

  • Active Directory, Windows 2003 SP2 Server and SMB shares

    I have 10 new iMacs that will be returned and exchanged for 10 HP wintels if I can't resolve an issue with SMB shares in Mac OS X 10.4.9.
    We had an old win 2000 server, and all the macs could mount their smb shares without problems.
    Recently we upgraded to two new 2003 sp2 servers, one of them the domain controller, and we can't mount their SMB shares. I followed this http://weblog.bignerdranch.com/?p=6&page=3 and/or this http://allinthehead.com/retro/218/accessing-a-windows-2003-share-from-os-x to allow AD authentication, but still, I can't mount the 2003 shares (but can with the 2000 ones!!!).
    If I enable SFM (services for macintosh) then I can mount the shares, but:
    1) the network is slower (I supouse is due to appletalk implementation)
    2) and worse, names with more than 32 characters or with some special characters are not allowed. This renders 30% of our archives unavailable with the AFP solution.
    I also used all the authentication methods (Plain text apple, plain text windows, etc.) but no one works.
    I have now 10 days to find a solution, or all "my" macs will dissapear forever.
    Please, some advice or point to documentation.
    G4, G5, iMac Intel, Mac Book Pro, etc   Mac OS X (10.4.9)  

    Do you just want to mount arbitrary share from the win servers or do you want the macs to be bound to AD?
    The first requires the steps from your second link (allinthehead.com) but the latter (bind to AD) requires things like proper use of DNS, time synchronisation for kerberos to work and proper configuration as described in your first link (bignerdranch.com).
    Here are some more links for the latter (AD intergration):
    http://www.bombich.com/mactips/activedir.html
    http://www.afp548.com/article.php?story=20051202151540574&query=ad-od
    HTH
    -Ralph

  • IMovie Video folder on the SMB share

    Hi,
    Both of my movies and pictures are stored on the SMB share. I can configure iPhoto library to use this smb://share/picture with the option of NOT coping pictures locally just fine.
    However I see no such option in the iMovie. When I import events to library, all movie files are copied locally.
    Is there a way to configure iMovie just like iPhoto: use movies on the SMB share without local copy?
    May be for perm reason iMovie can only operate with local files?

    Let's put it this way: I'm asking on a Mac site because the people on non-windows support sites are WAAAAY more interested in talking about problems and solutions involving things other than Windows.
    I'm fairly certain that the windows servers ARE respecting their own inheritance rules, barring any major bugs and the like which someone may know about...
    The isue isn't with Macs moving shares to a netapp, it's with a share being moved to a NetApp that has folders created by a Mac. Talking with our security team further, it seems the problem may be limited to shares resident on a NetApp or moved from a Windows server to a NetApp.
    I was primarily asking to see if anyone knew of any issues with these particular situations or had experienced something similar and had dug into it any deeper with F5 (NetApp vendor).

  • Trying to access SMB share, can read but not write, I use the domain account to autenticate and domain account has access to the share. its a samba domain and im a Windows Admin by trade.

    I have two  I Mac's Intel i7 models.
    I have some problems getting them to write files to SMB shares.
    The domain user account I use when requested to enter when i first try to connect to the share seems to go though without a problem and it presents me with a list of mounts (shares) I select one and the folder opens, I can read files and copy them but I cant write to any of the folders.
    I have also mounted the network locatiosn to a folder from the terminal while also specifying a user name and password to use but this also doesnt allow the specified user account to write data to the share.
    I have confirmed the user account can write to the share by having the user do so from a windows box.
    any help from any of you mac guys would be great!!!!
    Im a windows fan boy / Windows Server based Network Administrator and am slowly becomming a fan of your macs (mainly due to the Unix terminal access letting me realise there is more control to be had than most haters would lead you to believe).
    Peace Out

    I should add that I originally formatted the problematic drive for FAT32 from the Mac, but then the WinXP computer couldn't see the drive when I plugged it in directly via USB. That's why I went with Seagate's utility to format it.

  • How can I mount an SMB share in the Finder? (Leopard)

    In Tiger, I was able to mount a SMB share in the finder and it would be displayed under the "Devices" section. With Leopard, I cant get this to work. Leopard is much easier to browse network shares on my Windows machine under the "Shared" section, but I would still like to have certain folder mounted all the time, preferably on startup.

    Works perfectly for me, so let me make sure we're on the same page.
    I mount the volume manually, using Connect to Server.
    I drag the volume, now appearing in Computer and on the Desktop, to the Devices section of the Sidebar.
    I eject the volume, and it disappears from the Sidebar.
    I mount the volume again (it could be by browsing for it, through Connect to Server, or through an Automount Maker document)
    It appears, without my having to do anything, in the Sidebar.
    As far as I can tell, this is what you were aiming for. Am I missing something?

  • Unable to mount SMB shares under Mac OS 10.6.5

    Help -
    *I can no longer mount any shares from my Seagate BlackArmor NAS-110*. I bought the device (a 1TB network drive with CIFS (aka SMB), NFS, and FTP capabilities (no AFP connectivity)) in June of 2010, and it was working fine until appx (18 Nov, 2010). My computer - MacPro 2x2.26GHz Quad-Core Intel Xeon (early 2009) with 12GB of 1066MHz DDR3 RAM and Mac OS 10.6.5. My home network is running on Apple's TimeCapsule router (version 7.4.2).
    Note: Problems began after installation of recent updates:
    11/10/2010 - Mac OS 10.6.5
    11/12/2010 - iTunes 10.1
    11/13/2010 - iLife '11
    11/13/2010 - iPhoto 9.1
    11/18/2010 - Safari 5.0.3
    I'm not sure which, if any, of these updates may have intrudced new code which impacted my ability to mount SMB/CIFS shares, or whether this problem is isolated to the NAS-110 (actually, reading numerous posts about connectivity issues (during/over the last month or so) shows similar issues with other external drives, servers, NAS devices). The issues may not have materialized until I rebooted the NAS or the Mac. FYI: The only firewall I'm using is the Mac's built in firewall, and I've got File Sharing (AFP, SMB) set to Allow Incoming.
    What happens? I can't mount the SMB shares. I can see the device in my finder. It shows up as "BA-22B9C2", and I can see the sharepoint folders (in Finder): Download, Public, and wiki. When I attempt to SMB mount the shares (by any of the following methods: Double-Click in Finder, use 'Go->Connect to Server' or using the 'BlackArmor Discovery' application) The share/folder icon does not appear on my desktop. It creates a mount-point in the /Volumes directory, but no folder appears on the desktop. I can 'cd' into the sharepoint, and I can see that Spotlight has attempted to index the sharepoint (a .Spotlight-V100 directory was created), but I cannot see the 'Our Music, Our Pictures, or Our Videos' folders inside the Public share/directory. Successive attempts to mount a share, using Finder results in additional mount points in the /Volumes directory (Public-1, Public-2, Public-3, etc), but no folder icons on my desktop.
    FYI: The 'Connected servers' setting (under 'Shared') is enabled in my Finder's Prefences (along with Bonjour and Back to My Mac), so connected shares should appear on the desktop.
    Attempts to mount shares using the Connect to Server method (smb://10.0.1.2/Public, smb://admin:[email protected]/Public) also fail. No folder appears on desktop. The password/login authenticates (connecting to server), and a mount point is created in the /Volumes directory, but no folder appears on the desktop.
    Attempts to mount shares using the BlackArmor Discovery application generate similar results. Shares are visible in the tool. I click on the 'Public' share (which has permissions set to 'read, write, execute' for all), then click the 'Mount Share' button. I am presented with an authentication/login dialog. I log in as a Registered user (name: admin password: admin) Once again, a mount point is created in the /Volumes directory, but no folder appears on the desktop.
    Notably, whenever I attempt to mount a share, Spotlight indexes the share, but then it dies on my computer. Spotlight stops indexing my primary drive (where the OS is installed for my Mac). I have to stop the mds process using Activity Monitor. mds restarts automatically, and it starts indexing my primary drive again. While this may not be critical to my troubleshooting efforts, it has caused some considerable consternation on my part.
    I initially (back around the 18th of Nov, 2010) attempted troubleshooting with the assistance of Seagate technicians, but they quickly gave up on the email support, insisted I had to continue over the phone, which costs ~$14.00 per 'incident' and isn't convenient for my schedule.
    I've already attempted to update the firmware on the NAS (from 1000.0361 to 1000.1081), but that won't work. The NAS indicates a firmware update (1000.1081) is available, but it reports: "Firmware is not found". I had a friend try this update using his Windows machine (and my NAS), with the same results. He tried with a a Vista box and a Windows-NT running through emulation. I also tried to manually update. I downloaded the firmware image file "sg1000-1000.1081.img" from the Seagate downloads page, and attempted a manual update on the NAS. That failed with error "Failed to upload new firmware image to system." Once again, my friend tried to perform a manual update to the NAS. He downloaded a new copy of the file (from the Seagate downloads page), and he got the same error.
    The Seagate techs recommended that I update the firmware. I explained my problems updating the firmware, and I have asked the Seagate techs (via email) for a known good copy of the firmware update, but they do not answer my requests for such.
    The Seagate techs recommended that I restore the NAS with a factory reset. That caused plenty of problems, as their is no mac software to recover the factory reset 'key' from the device (need device MAC, and I presume some sort of hashing key stored on the device). So, I had to cart the drive over to my friends house, and have him attempt the restore. After some initial confusion regarding the MAC address, we were able to successfully restore the device to it's factory settings.
    Note: Before attempting the factory reset, my friend attempted to mount the SMB shares (on the NAS), using his Mac running 10.6.5. He encountered the same problems I encountered. When he tried using his Windows-NT (through VMFusionWare emulation) *he WAS able to mount the shares*. O.k. This must be a Mac OS issue, and not a Seagate NAS issue. - Now that the drive has been restored to factory defaults, it's pretty much empty (some folders, but no data). Default admin/admin username/password are in place.
    I'm not sure which, if any of my most recent software updates may have introduced changes to smb/samba, so I tried mounting the device using other services. It's capable of FTP and NFS as well as CIFS/SMB.
    I tried to create an NFS mount. I tried using two different methods (an application called NFS Manager and the 'Connect to Server' method built into the Mac. Both methods failed to establish a nfs mount to the server. No login errors were noted, but no mount points were created in /Volumes, and no folders appeared on the desktop.
    I tried to connect via FTP, that didn't work either (using an my Transmit client). I'm certainly striking out with this drive. My Mac will not mount the shares/folders. I tried FTP (to 10.0.1.2 as admin) using Transmit application (on port 21). Transmit reported "Could not retrieve file listing for “/Public”. Server said: OOPS: Child died Error -162: Port failed". Connectivity protocols of CIFS, NFS and FTP (on port 21) are enabled on the NAS and the /Public share.
    *When I attempt to connect using the Connect to Server method (See Apple's 'Go' menu in the Finder), I met with sucess!* ftp://10.0.1.2/Public connect attempt resulted in two pop ups. One of them said 'connecting', the other said something about "'NetAuthAgent' (I didn't write it down) wants permission to access your confidential keychain data" Presumably, this was the authentication request. I said 'Always allow'. A folder appeared on my desktop and a finder window opened showing the contents of that folder. Unfortunately, the share is 'read only'; even when I attempt to authenticate as a specific user.
    Note: I don't think FTP attempts to index the mounted shares.
    Prior to the factory reset, I was able to connect to the shares using the Seagate's 'Global Access' web based ftp service. Now I cannot connect through the Global Access page.
    Below are 'Console' entries and a listing of my /Volumes directory. These may help resolve the issue. I deleted some entries (those I felt were unrelated to the issue). I left in stuff that's been bothering me.
    _*Can anyone help me reestablish SMB connectivity with my NAS-110?*_
    - Robert Vaessen
    'Console: All messages'
    12/16/10 00:11:15 BlackArmor Discovery[65267] Got netServiceBrowserWillSearch: event.
    12/16/10 00:11:15 mDNSResponder[23] Bad service type in .blackarmor4dinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:15 mDNSResponder[23] Bad service type in .blackarmor4dinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:15 BlackArmor Discovery[65267] Got netServiceBrowserWillSearch: event.
    12/16/10 00:11:15 mDNSResponder[23] Bad service type in .blackarmor2dinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:15 mDNSResponder[23] Bad service type in .blackarmor2dinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:15 BlackArmor Discovery[65267] Got netServiceBrowserWillSearch: event.
    12/16/10 00:11:16 mDNSResponder[23] Bad service type in .blackarmor1dinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:16 mDNSResponder[23] Bad service type in .blackarmor1dinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:16 BlackArmor Discovery[65267] Got netServiceBrowserWillSearch: event.
    12/16/10 00:11:16 mDNSResponder[23] Bad service type in .blackarmorNASinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:16 mDNSResponder[23] Bad service type in .blackarmorNASinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:16 BlackArmor Discovery[65267] Got netServiceBrowserWillSearch: event.
    12/16/10 00:11:16 BlackArmor Discovery[65267] got netServiceBrowser:didFindService:moreComing: event for <NSNetService 0x517a80> local. blackarmor1dinfo.udp. BA-22B9C2
    12/16/10 00:11:16 BlackArmor Discovery[65267] inserted new net service object for BA-22B9C2:
    "BA-22B9C2" = 1;
    12/16/10 00:11:16 mDNSResponder[23] Bad service type in BA-22B9C2.blackarmor1dinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:16 BlackArmor Discovery[65267] Added 1 drive table objects to the servicesToInsertArray.
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Domain=[BA-22B9C2] OS=[Unix] Server=[Samba 3.0.34]
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Domain=[BA-22B9C2] OS=[Unix] Server=[Samba 3.0.34]
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] tree connect failed: NTSTATUS_ACCESSDENIED
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Domain=[BA-22B9C2] OS=[Unix] Server=[Samba 3.0.34]
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] tree connect failed: NTSTATUS_ACCESSDENIED
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Domain=[BA-22B9C2] OS=[Unix] Server=[Samba 3.0.34]
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] tree connect failed: NTSTATUS_ACCESSDENIED
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Domain=[BA-22B9C2] OS=[Unix] Server=[Samba 3.0.34]
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] tree connect failed: NTSTATUS_ACCESSDENIED
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] PING 10.0.1.2 (10.0.1.2)
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=0
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=0 ttl=64 time=0.307 ms
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=1
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=1 ttl=64 time=0.216 ms
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=2
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=2 ttl=64 time=0.216 ms
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=3
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=3 ttl=64 time=0.286 ms
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] --- 10.0.1.2 ping statistics ---
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] 4 packets transmitted, 4 packets received, 0% packet loss
    12/16/10 00:11:34 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Download', from '//%20;[email protected]/Download', dead
    12/16/10 00:11:34 mds[22627] (Error) DiskStore: Unable to create/find index location
    12/16/10 00:23:50 sandboxd[65414] awacsd(48) deny file-read-metadata /Library/Preferences/com.apple.security.plist
    12/16/10 00:23:50 sandboxd[65414] awacsd(48) deny file-read-data /Library/Preferences/com.apple.security.plist
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] PING 10.0.1.2 (10.0.1.2)
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=0
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=0 ttl=64 time=0.356 ms
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=1
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=1 ttl=64 time=0.209 ms
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=2
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=2 ttl=64 time=0.237 ms
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=3
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=3 ttl=64 time=0.209 ms
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] --- 10.0.1.2 ping statistics ---
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] 4 packets transmitted, 4 packets received, 0% packet loss
    12/16/10 00:31:39 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public', from '//%20;%[email protected]/Public', dead
    12/16/10 00:31:39 mds[22627] (Error) DiskStore: Unable to create/find index location
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] PING 10.0.1.2 (10.0.1.2)
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=0
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=0 ttl=64 time=0.271 ms
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=1
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=1 ttl=64 time=0.257 ms
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=2
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=2 ttl=64 time=0.197 ms
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=3
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=3 ttl=64 time=0.205 ms
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] --- 10.0.1.2 ping statistics ---
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] 4 packets transmitted, 4 packets received, 0% packet loss
    12/16/10 00:48:41 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public', from '//%20;%[email protected]/Public', dead
    12/16/10 00:48:41 mds[22627] (Error) DiskStore: Unable to create/find index location
    12/16/10 00:51:17 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public', from '//[email protected]/Public', dead
    12/16/10 00:51:18 mds[22627] (Error) DiskStore: Unable to create/find index location
    12/16/10 00:53:51 sandboxd[65922] awacsd(48) deny file-read-metadata /Library/Preferences/com.apple.security.plist
    12/16/10 00:53:51 sandboxd[65922] awacsd(48) deny file-read-data /Library/Preferences/com.apple.security.plist
    12/16/10 00:54:24 cupsd[65930] sandbox cache error: database is locked
    12/16/10 01:00:56 com.apple.launchd.peruser.505[150] (com.apple.pbs) Throttling respawn: Will start in 10 seconds
    12/16/10 01:01:06 com.apple.launchd.peruser.505[150] (com.apple.pbs) Throttling respawn: Will start in 10 seconds
    12/16/10 01:02:02 _lp[66035] audit warning: expired /var/audit/20101215210444.20101215231614
    12/16/10 01:02:02 _lp[66034] audit warning: closefile /var/audit/20101216055051.20101216080202
    12/16/10 01:09:56 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public', from '//[email protected]/Public', dead
    12/16/10 01:09:56 mds[22627] (Error) DiskStore: Unable to create/find index location
    12/16/10 01:10:15 com.apple.Finder[208] NFS Portmap: RPC: Program not registered
    12/16/10 01:11:15 com.apple.Finder[208] NFS Portmap: RPC: Program not registered
    12/16/10 01:11:15 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:12:09 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:12:13 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:12:29 com.apple.Finder[208] mount_nfs: can't access /: Permission denied
    12/16/10 01:12:44 com.apple.Finder[208] mount_nfs: can't access /: Permission denied
    12/16/10 01:15:05 /System/Library/CoreServices/CCacheServer.app/Contents/MacOS/CCacheServer[66174 ] No valid tickets, timing out
    12/16/10 01:15:53 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:15:54 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:15:55 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:15:55 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:15:56 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:17:05 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:19:13 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public-1', from '//[email protected]/Public', dead
    12/16/10 01:22:38 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public-2', from '//[email protected]/Public', dead
    12/16/10 01:23:21 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:23:25 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:23:25 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:23:26 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:23:27 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:23:27 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:23:50 sandboxd[66426] awacsd(48) deny file-read-metadata /Library/Preferences/com.apple.security.plist
    12/16/10 01:23:50 sandboxd[66426] awacsd(48) deny file-read-data /Library/Preferences/com.apple.security.plist
    12/16/10 01:24:03 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:47:13 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public-3', from '//[email protected]/Public', dead
    12/16/10 01:47:13 mds[22627] (Normal) DiskStore: Creating index for /Volumes/Public-3
    12/16/10 01:50:38 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:51:45 com.apple.launchd.peruser.505[150] (com.apple.pbs) Throttling respawn: Will start in 10 seconds
    12/16/10 01:51:56 com.apple.launchd.peruser.505[150] (com.apple.pbs) Throttling respawn: Will start in 10 seconds
    12/16/10 01:52:03 authexec[67020] executing /usr/sbin/automount
    12/16/10 01:52:39 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:52:47 com.apple.launchd.peruser.505[150] (com.apple.AddressBook.abd) The following job tried to hijack the service "com.apple.AddressBook.abd" from this job: [0x0-0x1284283].com.apple.AddressBook.abd
    12/16/10 01:53:10 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:53:50 sandboxd[67042] awacsd(48) deny file-read-metadata /Library/Preferences/com.apple.security.plist
    12/16/10 01:53:50 sandboxd[67042] awacsd(48) deny file-read-data /Library/Preferences/com.apple.security.plist
    12/16/10 02:00:50 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 02:00:55 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 02:01:01 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public-4', from '//[email protected]/Public', dead
    12/16/10 02:11:28 GrowlHelperApp[328] Transmit registered
    12/16/10 02:12:07 Firewall[101] Transmit is listening from 10.0.1.3:59918 proto=6
    12/16/10 02:12:17 Firewall[101] Transmit is listening from 10.0.1.3:59929 proto=6
    12/16/10 02:12:17 Firewall[101] Transmit is listening from 10.0.1.3:59930 proto=6
    12/16/10 02:12:25 Firewall[101] Transmit is listening from 10.0.1.3:59937 proto=6
    12/16/10 02:12:25 Firewall[101] Transmit is listening from 10.0.1.3:59938 proto=6
    12/16/10 02:12:33 servernotifyd[402] token expired
    12/16/10 02:12:35 Firewall[101] Transmit is listening from 10.0.1.3:59947 proto=6
    12/16/10 02:12:35 Firewall[101] Transmit is listening from 10.0.1.3:59948 proto=6
    12/16/10 02:12:45 Firewall[101] Transmit is listening from 10.0.1.3:59961 proto=6
    12/16/10 02:12:48 servernotifyd[402] Fetching new token
    12/16/10 02:12:48 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public-5', from '//[email protected]/Public', dead
    12/16/10 02:12:49 servernotifyd[402] Completed token request
    12/16/10 02:12:49 servernotifyd[402] Subscription request completed
    12/16/10 02:15:20 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public-6', from '//[email protected]/Public', dead
    12/16/10 02:15:20 mds[22627] (Normal) DiskStore: Creating index for /Volumes/Public-6
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] PING 10.0.1.2 (10.0.1.2)
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=0
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=0 ttl=64 time=0.347 ms
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=1
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=1 ttl=64 time=0.264 ms
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=2
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=2 ttl=64 time=0.232 ms
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=3
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=3 ttl=64 time=0.236 ms
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] --- 10.0.1.2 ping statistics ---
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] 4 packets transmitted, 4 packets received, 0% packet loss
    12/16/10 02:20:39 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public-7', from '//%20;%[email protected]/Public', dead
    12/16/10 03:07:28 Firewall[101] Transmit is listening from 10.0.1.3:60607 proto=6
    12/16/10 03:07:37 Firewall[101] Transmit is listening from 10.0.1.3:60611 proto=6
    12/16/10 03:07:37 Firewall[101] Transmit is listening from 10.0.1.3:60612 proto=6
    12/16/10 03:07:46 Firewall[101] Transmit is listening from 10.0.1.3:60614 proto=6
    12/16/10 03:07:46 Firewall[101] Transmit is listening from 10.0.1.3:60615 proto=6
    12/16/10 03:07:55 Firewall[101] Transmit is listening from 10.0.1.3:60619 proto=6
    12/16/10 03:07:55 Firewall[101] Transmit is listening from 10.0.1.3:60620 proto=6
    12/16/10 03:08:04 Firewall[101] Transmit is listening from 10.0.1.3:60622 proto=6
    12/16/10 03:11:26 Firewall[101] Transmit is listening from 10.0.1.3:60649 proto=6
    12/16/10 03:11:35 Firewall[101] Transmit is listening from 10.0.1.3:60651 proto=6
    12/16/10 03:11:35 Firewall[101] Transmit is listening from 10.0.1.3:60652 proto=6
    12/16/10 03:11:45 Firewall[101] Transmit is listening from 10.0.1.3:60654 proto=6
    12/16/10 03:11:45 Firewall[101] Transmit is listening from 10.0.1.3:60655 proto=6
    12/16/10 03:11:53 Firewall[101] Transmit is listening from 10.0.1.3:60661 proto=6
    12/16/10 03:11:53 Firewall[101] Transmit is listening from 10.0.1.3:60662 proto=6
    12/16/10 03:12:02 Firewall[101] Transmit is listening from 10.0.1.3:60667 proto=6
    12/16/10 03:12:02 sysadmin[69677] audit warning: expired /var/audit/20101215231614.20101216012742
    12/16/10 03:12:02 sysadmin[69675] audit warning: closefile /var/audit/20101216080202.20101216101202
    12/16/10 03:18:40 com.apple.launchd.peruser.505[150] (com.apple.pbs) Throttling respawn: Will start in 10 seconds
    12/16/10 03:18:48 Firewall[101] ftpfs_agent is listening from 10.0.1.3:60739 proto=6
    12/16/10 03:18:48 Firewall[101] Allow ftpfs_agent connecting from 10.0.1.2:43968 to port 60739 proto=6
    12/16/10 03:18:48 com.apple.launchd.peruser.505[150] (com.apple.pbs) Throttling respawn: Will start in 2 seconds
    12/16/10 03:18:48 com.apple.launchd.peruser.505[150] (com.apple.pbs) Throttling respawn: Will start in 2 seconds
    12/16/10 03:18:48 Firewall[101] ftpfs_agent is listening from 10.0.1.3:60741 proto=6
    12/16/10 03:18:48 Firewall[101] Allow ftpfs_agent connecting from 10.0.1.2:34565 to port 60741 proto=6
    12/16/10 03:19:05 Firewall[101] ftpfs_agent is listening from 10.0.1.3:60745 proto=6
    12/16/10 03:19:05 Firewall[101] Allow ftpfs_agent connecting from 10.0.1.2:36662 to port 60745 proto=6
    12/16/10 03:21:59 Firewall[101] ftpfs_agent is listening from 10.0.1.3:60785 proto=6
    12/16/10 03:21:59 Firewall[101] Allow ftpfs_agent connecting from 10.0.1.2:49839 to port 60785 proto=6
    12/16/10 03:21:59 Firewall[101] ftpfs_agent is listening from 10.0.1.3:60787 proto=6
    12/16/10 03:21:59 Firewall[101] Allow ftpfs_agent connecting from 10.0.1.2:47180 to port 60787 proto=6
    12/16/10 03:23:51 sandboxd[70960] awacsd(48) deny file-read-metadata /Library/Preferences/com.apple.security.plist
    12/16/10 03:23:51 sandboxd[70960] awacsd(48) deny file-read-data /Library/Preferences/com.apple.security.plist
    'Cosole: samba log.nmbd' (Same entry repeated numerous times)
    [2010/12/16 04:22:10, 1, pid=118] /SourceCache/samba/samba-235.5/samba/source/nmbd/nmbdincomingdgrams.c:process_resetbrowser(735)
    processresetbrowser: received diagnostic browser reset request from BA-22B9C2<00> IP 10.0.1.2 state=0x2
    'Console: samba log.sndb' (note the dates)
    [2010/11/11 18:33:43, 0] /SourceCache/samba/samba-235.4/samba/source/smbd/server.c:main(925)
    smbd version 3.0.28a-apple started.
    Copyright Andrew Tridgell and the Samba Team 1992-2008
    [2010/11/11 18:33:43, 0, pid=90063] /SourceCache/samba/samba-235.4/samba/source/lib/opendirectory.c:opendirectoryfill_domain_sidcache(1985)
    opendirectorysamsearchname[/Config/CIFSServer] gave -14136 [eDSRecordNotFound]
    [2010/11/11 18:33:43, 0, pid=90063] /SourceCache/samba/samba-235.4/samba/source/passdb/secrets.c:secretsfetch_domainsid(150)
    secretsfetch_domain_sid:opendirectory_query_domainsid gave -14136 [eDSRecordNotFound]
    [2010/11/24 04:11:15, 0] /SourceCache/samba/samba-235.5/samba/source/smbd/server.c:main(925)
    smbd version 3.0.28a-apple started.
    Copyright Andrew Tridgell and the Samba Team 1992-2008
    [2010/11/24 04:11:15, 0, pid=1507] /SourceCache/samba/samba-235.5/samba/source/lib/opendirectory.c:opendirectoryfill_domain_sidcache(1985)
    opendirectorysamsearchname[/Config/CIFSServer] gave -14136 [eDSRecordNotFound]
    [2010/11/24 04:11:15, 0, pid=1507] /SourceCache/samba/samba-235.5/samba/source/passdb/secrets.c:secretsfetch_domainsid(150)
    secretsfetch_domain_sid:opendirectory_query_domainsid gave -14136 [eDSRecordNotFound]
    [2010/11/24 10:47:01, 0] /SourceCache/samba/samba-235.5/samba/source/smbd/server.c:main(925)
    smbd version 3.0.28a-apple started.
    Copyright Andrew Tridgell and the Samba Team 1992-2008
    [2010/11/24 10:47:02, 0, pid=1339] /SourceCache/samba/samba-235.5/samba/source/lib/opendirectory.c:opendirectoryfill_domain_sidcache(1985)
    opendirectorysamsearchname[/Config/CIFSServer] gave -14136 [eDSRecordNotFound]
    [2010/11/24 10:47:02, 0, pid=1339] /SourceCache/samba/samba-235.5/samba/source/passdb/secrets.c:secretsfetch_domainsid(150)
    secretsfetch_domain_sid:opendirectory_query_domainsid gave -14136 [eDSRecordNotFound]
    [2010/11/29 10:48:44, 0] /SourceCache/samba/samba-235.5/samba/source/smbd/server.c:main(925)
    smbd version 3.0.28a-apple started.
    Copyright Andrew Tridgell and the Samba Team 1992-2008
    [2010/11/29 10:48:44, 0, pid=43299] /SourceCache/samba/samba-235.5/samba/source/lib/opendirectory.c:opendirectoryfill_domain_sidcache(1985)
    opendirectorysamsearchname[/Config/CIFSServer] gave -14136 [eDSRecordNotFound]
    [2010/11/29 10:48:44, 0, pid=43299] /SourceCache/samba/samba-235.5/samba/source/passdb/secrets.c:secretsfetch_domainsid(150)
    secretsfetch_domain_sid:opendirectory_query_domainsid gave -14136 [eDSRecordNotFound]
    [2010/12/08 12:29:58, 0] /SourceCache/samba/samba-235.5/samba/source/smbd/server.c:main(925)
    smbd version 3.0.28a-apple started.
    Copyright Andrew Tridgell and the Samba Team 1992-2008
    [2010/12/08 12:29:58, 0, pid=7246] /SourceCache/samba/samba-235.5/samba/source/lib/opendirectory.c:opendirectoryfill_domain_sidcache(1985)
    opendirectorysamsearchname[/Config/CIFSServer] gave -14136 [eDSRecordNotFound]
    [2010/12/08 12:29:58, 0, pid=7246] /SourceCache/samba/samba-235.5/samba/source/passdb/secrets.c:secretsfetch_domainsid(150)
    secretsfetch_domain_sid:opendirectory_query_domainsid gave -14136 [eDSRecordNotFound]
    [2010/12/08 12:30:04, 0, pid=7248] /SourceCache/samba/samba-235.5/samba/source/passdb/pdbodsam.c:odssamgetsampwnam(1576)
    opendirectorysamsearchname gave -14136 [eDSRecordNotFound]: no dsRecTypeStandard:Users record for account 'admin'
    [2010/12/08 12:30:04, 0, pid=7248] /SourceCache/samba/samba-235.5/samba/source/passdb/pdbodsam.c:odssamgetsampwnam(1576)
    opendirectorysamsearchname gave -14136 [eDSRecordNotFound]: no dsRecTypeStandard:Users record for account 'admin'
    [2010/12/08 12:30:06, 0, pid=7252] /SourceCache/samba/samba-235.5/samba/source/passdb/pdbodsam.c:odssamgetsampwnam(1576)
    opendirectorysamsearchname gave -14136 [eDSRecordNotFound]: no dsRecTypeStandard:Users record for account 'admin'
    [2010/12/08 12:30:06, 0, pid=7252] /SourceCache/samba/samba-235.5/samba/source/passdb/pdbodsam.c:odssamgetsampwnam(1576)
    opendirectorysamsearchname gave -14136 [eDSRecordNotFound]: no dsRecTypeStandard:Users record for account 'admin'
    [2010/12/09 09:59:02, 0] /SourceCache/samba/samba-235.5/samba/source/smbd/server.c:main(925)
    smbd version 3.0.28a-apple started.
    Copyright Andrew Tridgell and the Samba Team 1992-2008
    [2010/12/09 09:59:03, 0, pid=19816] /SourceCache/samba/samba-235.5/samba/source/lib/opendirectory.c:opendirectoryfill_domain_sidcache(1985)
    opendirectorysamsearchname[/Config/CIFSServer] gave -14136 [eDSRecordNotFound]
    [2010/12/09 09:59:03, 0, pid=19816] /SourceCache/samba/samba-235.5/samba/source/passdb/secrets.c:secretsfetch_domainsid(150)
    secretsfetch_domain_sid:opendirectory_query_domainsid gave -14136 [eDSRecordNotFound]
    'Listing of the /Volumes directory'
    drwxrwxrwt@ 20 root admin 680 Dec 16 03:29 .
    drwxrwxr-x 44 root admin 1564 Nov 27 12:19 ..
    drwxrwxr-x 44 root admin 1564 Nov 27 12:19 Clone
    lrwxr-xr-x 1 root admin 1 Dec 8 04:35 Macintosh HD -> /
    drwx------ 1 rvaessen rvaessen 16384 Jan 1 1980 NO NAME
    dr-xr-xr-x 2 root rvaessen 1 Dec 16 01:15 Public
    drwxr-xr-x+ 3 rvaessen admin 102 Dec 16 01:19 Public-1
    dr-xr-xr-x 1 rvaessen rvaessen 512 Dec 16 03:30 Public-10
    drwxr-xr-x+ 3 rvaessen admin 102 Dec 16 01:22 Public-2
    drwxr-xr-x+ 3 rvaessen admin 102 Dec 16 01:47 Public-3
    drwxr-xr-x+ 3 rvaessen admin 102 Dec 16 02:01 Public-4
    drwxr-xr-x+ 3 rvaessen admin 102 Dec 16 02:12 Public-5
    drwxr-xr-x+ 3 rvaessen admin 102 Dec 16 02:15 Public-6
    drwxr-xr-x+ 3 rvaessen admin 102 Dec 16 02:20 Public-7
    dr-xr-xr-x 1 rvaessen rvaessen 512 Dec 16 03:30 Public-8
    dr-xr-xr-x 1 rvaessen rvaessen 512 Dec 16 03:30 Public-9
    drwxr-xr-x@ 17 rvaessen rvaessen 646 Nov 11 18:12 Robert Vaessen’s iPod
    drwxrwxr-x 15 sysadmin staff 578 Nov 6 2009 Time Machine Prime
    drwxrwxrwx 1 rvaessen rvaessen 4096 Dec 7 17:31 nuvi
    drwx------ 1 rvaessen rvaessen 2048 Aug 16 14:52 rvaessen

    O.k. Thanks for the clarification. I poked around in my TimeCapsule router's settings (TimeCapsule is an Apple Airport Extreme router with attached hard drive for wireless backup/storage). Unfortunately, it doesn't look like I can disable multicasting with the TimeCapsule. I can change the multicasting 'rate'. Settings are Low, Medium, High. It's currently set to Low.
    I did a few web searches, and found an Apple.com article: <http://support.apple.com/kb/HT3789?viewlocale=en_US> which explained how to disable Bonjour Service Advertisements. I believe this is the same thing as 'Multicasting'. The process is a modification of "/System/Library/LaunchDaemons/com.apple.mDNSResponder.plist", and a restart of the Mac is required afterwards.
    I'm a bit concerned that disabling multicasting will interfere with my AppleTVs and iTunes music sharing, but I may try it next time I'm up for a computer workout. This task will require editing of system preference files, could require multiple restarts, might interfere with my AppleTVs, could interfere with my iTunes file sharing, doesn't have a documented relationship to my problem.
    This is way to difficult for something that should just work. Did you say you had read something about a relationship between this bonjour multicasting and smb connectivity? If it was online could you post the link?
    I'm currently able to connect to the drive using NFS, but I have to manually configure that connection each time I reboot (can't get the 'Disk Utility' configured to do it automatically). While it's working with NFS, it's not my preferred connect method (for various reasons).

Maybe you are looking for

  • Field symbols and logical databases

    Hi, How to use field symbols in an abap HR program with logical database? For most of the reports and interfaces in HR, I have used GET PERNR with logical database to fetch data from the tables. I understand that this method of programming using logi

  • Open_form in new session and packages

    I have form A opened. Form A , calls some stored packages X and set some variable Y in the package. Now form A calls form B, with session mode. Will the value of variable X.Y be available in form B. Basically the question is when you open a new form

  • Reg reference cursor

    First time i am using reference cursors. My question is shall i use cursor For loop for reference cursor inorder to fetch the records. I have defined like this? lsql varchar2(1000); TYPE L_CurType IS REF CURSOR; mm_cursor L_CurType; begin open mm_cur

  • Caluclate time for insertion

    hi , Heads up : oracle 10g I have insert SQL script for insertion into table , It takes long time to insert into table. I have tried loading by disable indexes , but some how want to discard that process and want to narrow down on how a batch of 100

  • Renaming Constraints In 8i

    I was wondering if it is possible to rename a constraint once it has been created. Without going through the process of disabling it and then cascade dropping the constraint and then recreating. I have check all my current reference material. Any hel