Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Futhark

macrumors 65816
Original poster
Jun 12, 2011
1,237
175
Northern Ireland
Can someone help me setup file sharing remotely, I have managed to setup a VPN connection and it's working because i can login into my server at home from work and it allows me to make changes to my setup etc but for the life of me i don't know where or how to access my share files? When i'm on my home network the server shows up under finder but that is not the case when i'm in work, What am i doing wrong? :confused:
 

Futhark

macrumors 65816
Original poster
Jun 12, 2011
1,237
175
Northern Ireland
Just an update to say I've figured out to get a Remote Desktop of my server but I'm having to zip the files I need and email them to myself which isn't really convenient :) any help would be appreciated.
 

Raima

macrumors 6502
Jan 21, 2010
400
11
I'm having the same problem. Any help appreciated.

Using IPsec to connect to a Fritz!box 7390 router at home
 

Umac-de

macrumors newbie
Jan 9, 2013
17
1
When i'm on my home network the server shows up under finder...
This (a bonjour feature) isn't working over VPN connection.
You have to google for "wide area bonjour" set up and configuration.
But, connected, you can use finders "go to" with the IP of the server...
 

Futhark

macrumors 65816
Original poster
Jun 12, 2011
1,237
175
Northern Ireland
This (a bonjour feature) isn't working over VPN connection.
You have to google for "wide area bonjour" set up and configuration.
But, connected, you can use finders "go to" with the IP of the server...

Thanks for this info. I'll look into it
 

Umac-de

macrumors newbie
Jan 9, 2013
17
1
Tip: Instead of trying to get "wide area bonjour" to work, try to get programms -> automator to work for you :)
code:
tell application "System Events"
tell current location of network preferences
set VPNservice to service "VPN (L2TP)" -- name of the VPN service
if exists VPNservice then connect VPNservice
end tell
end tell

delay (2)

tell application "Finder"
activate
mount volume "afp://yourServer IP/share" as user name "User" with password "Password"
end tell

...and save it as app and place it in the dock...
 

AtomicGrog

macrumors regular
Jul 25, 2011
189
56
Maybe I missed it (sorry if I have) but I'm not seeing what you are using as your work machine.

Assuming you have a windows PC you should be able to access your server via an IP based UNC: \\your.server.ip.here\sharename

A working example for me at work is this: \\10.31.89.188\Logs

That would allow you to browse and even create a windows drive letter.

Alternatively as you are running osx server. Startup the FTP server component and then you should be able to use the ftp client in windows to access the server and push/pull files.
 

meme1255

macrumors 6502a
Jul 15, 2012
742
594
Czechia
I use this to display remote server in Finder (AFP in this case):
Code:
#!/bin/bash
ssh  -L 54800:127.0.0.1:548 -N user@server -g &
trap "kill $!" SIGINT SIGHUP SIGTERM
dns-sd -P "Name_In_Finder" _afpovertcp._tcp local 54800 localhost.local. local_IP_Adress
// -g causes that this shared source is available for whole client's network - I use modified version to share iTunes over VPN ;)
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.