Campuses:
This is an old revision of the document!
You can only access our Windows file server directly (using normal Microsoft file sharing) from a University of Minnesota network address. If connecting from outside, you can either first connect to the University VPN service, or you can connect using ssh.
If you're outside the University network, first connect to the VPN service - here are their downloads and guides.
You should be able to connect to
\\spa-home.spa.umn.edu\users$\yourinternetid
\\spa-home.spa.umn.edu\sharename
(replace sharename with the name of the drive)\\spa-data.spa.umn.edu\sharename
For your username, enter AD\yourinternetid
Windows XP users may need to perform some additional configuration, see “Troubleshooting” towards the bottom of this page.
Use winscp to connect to spa-home.spa.umn.edu
. Login with username of AD\internetid
and your x500/internet password.
Alternatively you could try mapping a drive letter using either Dokan (free but untested) or ExpanDrive (tested but needs to be purchased]]
mv ~/Downloads/sshfs-static-leopard ~/sshfs #(or replace 'leopard' with whatever your version is) chmod a+x ~/sshfs
Then, to make a folder “physics” on your desktop which is connected to AD use the following syntax:
mkdir -p ~/Desktop/physics ~/sshfs -o uid=$UID youx500internetID@spa-home.spa.umn.edu:/home ~/Desktop/physics
The key is -o uid=$UID to map the username from your AD account to your local mac user, without this the files will not be accessible.
There's also a nicer graphical client for accessing files over ssh called MacFusion (from http://macfusionapp.org). To make it work with our server, you'll need to use the “Extra options (Advanced) field to specify your local UID (which is usually 501, but you'll need to check this). Thus, the options field would read something like -o uid=501
.
From most linux distributions (including departmental linux systems) you can simply run:
mkdir targetdir sshfs -o uid=$UID youx500internetID@spa-home.spa.umn.edu:/home targetdir
Non-UMN Windows XP installs *may* need NTLMv2 auth policy set in gpedit.msc.
Local Computer Policy/Computer Configuration/Windows Settings/Security Settings/Local Policies/Security Options
.Network security: LAN Manager authentication level
.Send NTLMv2 response only. Refuse LM & NTLM
.OK
button.