Accessing a server via the Server app from outside a router firewall

So I'm trying to access my server using the Server app on a MacBook Pro outside my server network.  I can access it just fine when my client is inside the server network, but I cannot connect when outside the server network.
I've done the following troubleshooting:
- I've turned off the server Firewall option available in the server's Server Admin tool
- I've set up port forwarding on my router
- I've opened up port 311 on the router
- I've placed the server outside the router DMZ zone and the Server app connects just fine
- I've checked the box "Allow remote administration using Server" in the server's Server app Settings tab
- With the router configured correctly, the Server app cannot access the server
There's something in the router that is blocking access by the Server app.  Apple Enterprise support says they are sure there is no other port to open up.  Is there something else I should be doing to access the server from outside the router using a client Server app?
TIA
ps - this worked fine when I just had the server hanging directly off a cable modem.

I and I suspect a lot of other admins would argue you should not be making your server accessible via Server.app remotely due to security concerns. Saying that, I and again I suspect a lot of other admins also want/need to be able to remotely administer servers. There is a better way however to achieve this.
You should be running a VPN server, perhaps using your same Mac server. You should leave the firewall blocking access directly for Server.app but if your remote Mac first connects via the VPN it will then be connected securely to your internal network and then be able to use Server.app

Similar Messages

  • Connect to Server App from other system

    I have a clean install of OSX 10.8.2 with Server from Appstore. So far all is fine when running the server.app thru Remote Desktop Software. However, when trying to connect to the server.app from another System ( i use OSX 10.8.2 on both machines, updated the software also) then the system refuses to login. The Admin name and password are fine, they also work if just connecting via finder or when using thru Remote Desktop.
    I am turning cracy because I have tried just about everything. I was reading about this problem existing under OSX Lion, but the fix recommended does not help at all.
    Can anyone help - please? I hope the guys at Apple start looking into this as well.
    Regards,
    Reinhard

    This did not solve my problem. I had tried this before, it seems so that the (remote) Server app has no right to connect at all.
    Just to let you know: I enabled Remote Apple Events, Remote Login and Remote Management on Server. And I run and addminister the server via Apple Remote Desktop.
    Also the "Allow remote administration using Server" on the server App is set.
    Still, nothing solves this problem.

  • Access SQL-Server Data from Oracle 10gXE

    Hello,
    I want to access sql-server data from oracle 10g XE. I need the same functionality provided by Sql-server by Linked Servers, by which we can query on any data source(oracle, Excel, Access).
    do, Oracle 10gXE provide us with same functionality ???
    any pointers ???

    Yes, it does work with Express Edition.
    Here is a thread from the XE forum with examples.
    Re: Database Link to MS Access
    They refer to a MS Access database, but the procedure is the same.
    Doug

  • I am attempting to transfer my contacts from my Android phone to a new Lenovo Yoga 2 computer via the intouch app and I can't seem to get it to work.

    I am attempting to transfer my contacts from my Android phone to a new Lenovo Yoga 2 computer via the intouch app and I can't seem to get it to work.

    Maybe I'm not understanding but it appears that your question refers to a transfer from a non-Apple phone to a non-Apple computer. If that is correct, this forum is likely not the best place to get an informed answer.

  • How do I set up a static IP on Airport Express so I can activate the Connet my Mac App from outside my network?

    How do I set up a static IP on Airport Express so I can activate and use the Connect My Mac app from outside my home network?

    You will need to enable file sharing in System Preferences
    as well as setting up sharing and permissions for the
    directories that you want shared.  You may also want to
    setup a non-administrative user or allow limited guest
    access.  The user would require entering a user name and
    password to make the connection, but would allow remotes
    to change files, if set up tat way.
    As for serving iTunes media, better to post in the iTunes forum.

  • I have a problem with my 4s camera which has come up recently. Everytime I take a picture and look it up via the 'Photos' app, it shows as blank. But when I click on edit on the blank picture, it comes up and I am able to save it back on my photo album.

    I have a problem with my 4s camera which has come up recently. Everytime I take a picture and look it up via the 'Photos' app, it shows as blank. But when I click on edit on the blank picture, it comes up and I am able to save it back on my photo album as a proper image. Besides, I have also experiences the camera working a bit wiered (slow and often blanks out the moment I am ready to take a photo). Any help on this pls?

    Hi Noob Søren
    There are a few things that are confusing in your question.
    As far as I know, you dont have to install Time Machine on this OS as it is already installed for you. You only need to connect a hard drive to your computer via firewire or usb, click on the Time Machine icon, Open Time Machine Preference in the drop down menu and select a disk: your connected hard drive.
    You can of course reformat this connected device, partition it into a few volumes to organise data if you so wish.
    I find it strange that your mac's hard drive is divided into two volumes... perhaps this was created through bootcamp?
    You can access the configuration of your hd through Applications/Utilities/Disk Utilities.
    Clicking on one of the icons on the right hand panel will bring the details of the contents of your hardDrive and volumes. From there you can decide to erase a partition, reformat etc....
    If your hd contains more than one volume, and one of them is empty, you could decide to remove it. Back up all your important data before doing so.
    Hope this helps
    WN

  • Window Server communications from outside of session allowed for root

    Hi ,
    When I am running the following program, i got the exception as
    49:wasp.corp.apple.com_kevinli:/ngs/app/giat/src/java/chart> java MyFrame
    kCGErrorRangeCheck : Window Server communications from outside of session allowed for root and console user only
    Exception in thread "main" java.lang.InternalError: Can't connect to window server - not enough permissions.
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1586)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1503)
    at java.lang.Runtime.loadLibrary0(Runtime.java:788)
    at java.lang.System.loadLibrary(System.java:834)
    at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:38)
    at sun.awt.DebugHelper.<clinit>(DebugHelper.java:29)
    at java.awt.Component.<clinit>(Component.java:506)
    at MyFrame.<clinit>(MyFrame.java:6)
    import java.awt.*;
    import javax.swing.*;
    public class MyFrame
    public static JFrame f = new JFrame();
    public static void main(String[] args)
    JFrame.setDefaultLookAndFeelDecorated(true);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Add the ubiquitous "Hello World" label.
    JLabel label = new JLabel("Hello World");
    f.getContentPane().add(label);
    //Display the window.
    f.pack();
    f.setVisible(true);
    Please send a reply on this.
    with regards,
    Mohan

    Seth,
    you may also install the latest update (10.4.6) using the combo file from apple.com.
    Mihalis.
    Dual G5 @ 2GHz   Mac OS X (10.4.6)  

  • Problems sending via the Mail app [Lion OS X]

    I'm using the standard Mail app on my Macbook Pro with Lion OS X.  I have 3 Hotmail accounts and at one point had all of them hooked up to the Mail app and receiving e-mails fine.
    The problem I've had is when trying to send an e-mail or reply to one via the Mail app. Even though I have 3 accounts and have got the 'Send messages from account of selected mailbox' selected in Preferences > Composing, it always used to send from only one of the 3. If I recall correctly it was the second account I had added that it always sent from.
    Recently I'd decided to try and sort this. I like to use one account for business e-mails and the other 2 for personal so when I recieve a business e-mail I really don't want it replied to from one of my personal e-mails. The simplest idea I had was to remove the 2 personal accounts (under Preferences > Accounts) and use the app purely for my business e-mails.
    However after removing them I now don't receive any e-mails for those accounts, but after testing a bit with a friend all e-mails are still being sent from an account no longer registered on the app.
    How can I sort this so I only have 1 account that I can send and recieve from??

    Seem to have sorted it now (I think).
    Made sure all trace of the accounts was removed from the Preferences of the Mail app, removed any trace of stored passwords it could be using in the Keychain Access, and finally unlinked my accounts from each other on the options page of Hotmail.
    Then tried resetting up just the one account and it seems to have done the trick.

  • HT5295 How do I play video podcasts on my TV via the Podcasts app? After iOS 6 upgrade, I'm unable to do this.

    I used to be able to play video podcasts on my TV by connecting my iPod touch to the TV via an Apple AV cable.  Now that I've upgraded to ios 6 and the podcasts app got installed along with the upgrade, video podcasts will no longer play on my TV.  It should be noted that other video content (movies, TV shows, etc) will play properly.  Is there a setting I need to make that will fix this, or is this yet another bug with the podcasts app? Also, I have to say that I'm not happy at all with the Podcasts app, so if there's a way to uninstall it without harming the functionality of ios 6, that would be great. 

    I found a workaround that puts podcasts back in the video app as well as the music app so you can watch them on TV via an AV cable again.
    The instructions can be found at this video:
    http://www.youtube.com/watch?v=uaI9GwPKXkE
    In short:
    1. Make sure both the music and podcast app aren't running on your iPhone.
    2. Plug your iPhone into your computer and disable Podcast syncing for your iPhone in iTunes.
    3. Remove the podcast app from your iPhone
    4. Plug your iPhone into your computer again and turn on podcast syncing, then sync.
    5. Turn off and then back on your iPhone.
    After I did this, I found podcasts had returned to being listed in my music and video apps.
    Hope this helps you too!

  • How come although iPads are getting more powerful, the iOS apps from apple are so mediocre and just not that great? We spend all this money for the latest ipad and all we get is these $5 video and music apps from apple. Why create the iOS platform and onl

    How come although iPads are getting more powerful, the iOS apps from apple are so mediocre and just not that great? We spend all this money for the latest ipad and all we get is these $5 video and music apps from apple. Why create the iOS platform and only offer so so apps like IMovie and GarageBand ? While other developers are offering much better apps like pinnacle studio for video, Cubasis and Auria for music production, apple has not showed much growth in terms of innovation. While there's nothing wrong with making an app like GarageBand where "anyone " can make a song, how about something for real musicians or an app not so basic as it get for video editing? After spending 0ver $700 on an ipad I'd be willing to spend more than $5 for a better video or audio app.

    First, try a system reset although I can't give you any confidence.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.

  • How to add a photo to a pdf form via the iOS app

    How do I add a photo to a pdf form via the iOS app?  I need to fill out a form for work using field observations and photos.  I can easily fill out the text portions of the form but I'm unable to add the photos from my phone.  Is this possible?

    Does the form have a provision to insert images (e.g. a Browse button)?
    [topic moved to iOS subforum]

  • Hello guys i face a problem when i upgrade from iOS 4.2.1 to iOS 5.1.1  .when i upgrade i don' t found the camera app from the built in apps.when i try to install from the app store i don't  found the correct camera app .please help me .

    hello guys i face a problem when i upgrade from iOS 4.2.1 to iOS 5.1.1 on ipad 3 .when i upgrade i don' t found the camera app from the built in apps.when i try to install from the app store i don't  found the correct camera app .please help me .please give any suitable link where i find the correct camera app

    It's a built-in app, so it can't be deleted nor downloaded from the store. If you can't find it on any of your homescreens or app folders, and you can't find it via the spotlight search screen (swipe your first home screen to the right), then is it hidden by Settings > General > Restrictions > Camera being set 'off' ?
    If not then have you tried a reset to see if you can find it after the iPad has restarted ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Airplay does not recognise my Pioneer vsx-1122-k on my iPad, I can control my receiver via the pioneer app on my iPad so it is just airplay not a connetivity issue.  My Panasonic Stereo is recognised on Airplay.

    Since upgrading to the latest IOS, Airplay does not recognise my Pioneer vsx-1122-k on my iPad, I can control my receiver via the pioneer app on my iPad so it is just airplay not a connectivity issue.  My Panasonic Stereo is recognised on Airplay.

    Hi
    I don't know if you're still having this issue but there is a way round it as I'm having the same troubles.
    I've just spoken to Apple about it and found out:
    – If you have a Mac made before Mid-2011, it doesn't have a piece of hardware needed to take advantage of the 'Airplay mirroring'
    – So you can update to a later version 10.6.8+ but this won't help at all
    The way round it:
    – Download 'Airfoil' and install this
    – You can then play music from any defined source (Spotify, Quicktime etc) through your Airplay connected speakers
    So sadly, for those have a Mac from before Mid-2011 there's isn't an option that's as easy as Option-click on the sound icon to switch to Airplay speakers.
    Hope that helps, I can now get on with the rest of my day now after sorting this out.
    Adam

  • [IOS6]How do i delete the history of the purchased app from appstore?

    After you swipe from left to right a red box will come up that says hide where it previously said installed or has the cloud downloaded sign. 
    Touch hide. The apps that you have chosed to hide will temorarily dim until you close our of the i store program.
    anyway it dont seem that the history can be hide if you upgrade to IOS 6...
    It is very annoying to have a long list of purchased history in the appstore from my iphone.
    is there any app or ways to remove those list?

    It seems you can't do this anymore from the iphone/ipad appstore which is a real problem.
    It seems though that you can do this via the iTunes app.
    Go to the app store > purchased history
    From there all your apps bought will appear.
    Mouse over on the app icon you want to hide, an x icon will appear on the top left. Click the icon and the app will disappear.
    Close your app store on your iphone/ipad, launch it again and the app should have disappeared.
    Although, I don't know if it "hides" or "erases" the app from your history, there's no explanation...
    This should be a solution while they FIX THIS in the next update!!

  • When one or more family members who have been sharing one iTunes account wants to create their own iTunes account can they each upload the music/apps from the shared iTunes on their devices to the new iTunes account?

    When one or more family members who have been sharing one iTunes account wants to create their own iTunes account can they each upload the music/apps from the shared iTunes on their devices to the new iTunes account? 

    Yes. I would clarify your statement about the "shared" iTunes Library though. If you want each iOS device to have its own music library, you should create separate user accounts for them. Read:
    iTunes: How to share music between different accounts on a single computer
    How to use multiple iPods, iPads, or iPhones with one computer

Maybe you are looking for

  • Dynamic actions - how to create an infotype with a date - 1 day.

    Hi everyone, I need a requirement to change an infotype through dynamic action with ENDDA = BEGDA of maintaned infotype(0000) - 1 day. In other words when a  personel action is performed, another infotype (2001) should appear for change, and in the v

  • Batch Rename - allow 6 digits (or more)

    Batch rename of files allows a sequence number that is limited to 5 digits. Even though the selector control allows you to specify six digits, the sequence number box does not allow the entry of the 6th digit. For example, I have the following: New f

  • Macbook Pro, charger plugged in but NOT lit up and NOT charging

    I have my MacBook Pro plugged in to the charger but the green light on the charger is NOT lit up and the battery indicator states "Not Charging."  Any ideas/suggestions?

  • Using AP Div's and Editing them

    Hi I am trying to use the AP Div tool so that I can play Div tags where I want them to be.  In one example I created a div tag to fit a logo but in my CSS style it as #apdiv1   When I try to organize the CSS style and raname the apdiv1 to #logo it ma

  • How to turn radio on

    Lately about 1/2 of the time I turn my phone on I have a message stating that the radio "is turned off".  How do I turn it on and have it stay on?