Any Slingboxers out there who can help me?

I have a new Slingbox Pro and it works with my network plug and play, but I can't get it configured for remote access. I have an Airport Express attached to an iMac, with a second Express acting as WDS. I plugged the SB into the WDS AE and as I said the setup worked fine. But no remote viewing. I have found lots of info on the SB board but none about this particular setup and none that has helped me make this work.
I suspect it has something to do with port forwarding... but not sure.
Anyone out there with experience who could lend a hand? Thanks.

Actually, I also figured it out -- it was pretty easy.
1) Make sure you have an Airport express (in my case, an Airport Extreme Base Station) connected to the internet.
2) A second AX is set up as a wireless bridge (i.e, to join the existing Airport network to extend the range of the AEBS).
3) Slingbox is connected to the ethernet port on the second AX.
4) Run the Slingbox Setup Assistant. An IP address (10.0.1.XXX) will get assigned to the Slingbox.
5) Using Airport Admin Utility, open up the AEBS and configure "Port Mapping" to forward public port 5001 to private port 5001 and in the space for the "private address" fill in the XXX from the IP address previously assigned to the Slingbox.
Go somewhere outside your network to check your connection; you should be good to go. The entire process was complete in under 10 minutes.

Similar Messages

  • HT4061 My iphone 4s remains in recovery mode permamently. Itunes wont restore it, constant messages of error 4013 keeps coming up on screen, is there any1 out there who can help before i crack up?

    My iphone 4s remains in recovery mode permamently. Itunes wont restore it, constant messages of error 4013 keeps coming up on screen, is there any1 out there who can help before i crack up?

    Hello Sean,
    It sounds like you are constantly needing to restore your phone because it keeps going into recovery mode. Usually putting a device into recovery mode and restoring it can help isolate an issue to your iPhone hardware if an issue persists afterwards. I would try manually putting it into recovery mode and restoring it 1 more time:
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808
    If that does not resolve it the symptoms indicate to me that it is a hardware issue causing this to happen and would seek service for it:
    iPhone Repair - Other Repairs
    https://www.apple.com/support/iphone/repair/other/
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • I am trying to install Adobe Premiere Elements 9 without success. I successfully installed Photoshop Elements 9 without a problem. The message I am getting is 'Invalid Unicode file - .\Autoplay\LangData\en_US\lang.dat'. Anyone out there who can help pleas

    I am trying to install Adobe Premiere Elements 9 without success. I successfully installed Photoshop Elements 9 without a problem. The message I am getting is 'Invalid Unicode file - .\Autoplay\LangData\en_US\lang.dat'. Anyone out there who can help please?

    click setup, not autoplay.

  • IS THERE NOONE OUT THERE WHO CAN HELP ME?!?!?

    NAME:Christopher Benson
    DATE:
    import java.awt.*;
    public class Coordinate extends Point// implements Comparable<Coordinate>
         public Coordinate()
              super();
         public Coordinate(int diffX, int diffY)
              super(diffX, diffY);
         public Coordinate(double diffX, double diffY)
              super.setLocation(diffX, diffY);
         public Coordinate(Coordinate temp)
              super(temp);
         public String toString()
              return "(" + this.x + ", " + this.y + ")";
    NAME: Christopher Benson
    DATE:November 3 2006
    PURPOSE:
    import java.util.*;
    public class Polygons extends Coordinate
         private static final double DEG_TO_RAD = Math.PI/180;
         private int numSides, sides, sideLeng;
         private double rad;
         private Coordinate cntrCoor;
         private double radius;
         private double cntrlAngl, angle;
         ArrayList <Coordinate> Cords;
         public Polygons()
              int sides = 0;
              double sideLength = 0;
              double radius = 0;
              int centerAngl = 0;
         public Polygons(int numSides)
              int sides = numSides;
              double radius = 10;
              int centerAngl = 360/sides;
         public Polygons(int numSides, double radius)
              sides = numSides;
              radius = rad;
              cntrlAngl = 360/sides;
              Cords = new ArrayList <Coordinate> (sides);
              setCoordinates(cntrlAngl);
         public Polygons(int numSides, int sideLength)
              sides = numSides;
              sideLength = sideLeng;
              radius = 10;
              cntrlAngl = 360/sides;
              Cords = new ArrayList <Coordinate> (sides);
              setCoordinates(cntrlAngl);
         private void setCoordinates(double angle)
              double tempAng = angle;
              double xCor, yCor;
              for(int I = 1; I == sides; I++)
                   xCor = radius * Math.cos(tempAng * DEG_TO_RAD);
                   yCor = radius * Math.sin(tempAng * DEG_TO_RAD);
                   Cords.add(new Coordinate(xCor, yCor));
                   tempAng += cntrlAngl;
         public ArrayList <Coordinate> getCoordinates()
              ArrayList <Coordinate> temp = new ArrayList <Coordinate> (sides);
              Iterator <Coordinate> iter = temp.iterator();
              while(iter.hasNext())
                   temp.add(new Coordinate(iter.next()));
              return temp;
         public void radius(double rad)
              radius = rad;
              setCoordinates(angle);
         public void setCenter(Coordinate center, int x1, int y1)
              ArrayList <Coordinate> temp = new ArrayList <Coordinate> (sides);
              Iterator <Coordinate> iter = temp.iterator();
              while(iter.hasNext())
                   iter.next().translate(x1,y1);
         public void rotate(double degree)
              setCoordinates(degree);
         public double area(double rad, double cntrlAngl)
              double area;
              double apothem = rad * Math.cos(cntrlAngl/2 * DEG_TO_RAD);
              return apothem;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    public class DrawCurves extends Frame
         CurvCanvas cBoard = new CurvCanvas();          // Create area/Canvas for drawings
        private ArrayList<Coordinate> drawPts;
        private boolean closedCurve;
        private int numSides;
        private String numSidesInput;
        public DrawCurves( )      // Default constructor
                setTitle("Curve Drawing");
                setSize(1600,1200);
                addWindowListener(new MyLocalWindowAdapter());
                cBoard.setSize(400,300);          // Note: size SHOULD fit in window
                cBoard.setBackground(Color.GREEN);
                add("Center",cBoard);
                getInput();
                setVisible(true);
        } // DrawCurves()
         private void getInput()
              numSidesInput = JOptionPane.showInputDialog(null, "Please input the number of sides that you would like to use for your polygon");
              numSides = Integer.parseInt(numSidesInput);
              Polygons poly = new Polygons();
              poly.Polygons(numSides, 20);
         private class MyLocalWindowAdapter extends WindowAdapter
              public void windowClosing(WindowEvent event)
                   dispose();
                 System.exit(0);
         } //inner class MyLocalWindowAdapter
            private class CurvCanvas extends Canvas
         // paint is the inherited method we should override in order to draw our own image in an AWT window
              public void paint(Graphics g)
                   Point startPt, fromPt, toPt;
                   Iterator <Coordinate> iter = drawPts.iterator();
                   while(iter.hasNext())
                        fromPt = iter.next();
                        toPt = iter.next();
                        int fX = (int)fromPt.getX();
                        int fY = (int)fromPt.getY();
                        int tX = (int)toPt.getX();
                        int tY = (int)toPt.getY();
                        g.drawLine(fX, fY, tX, tY);
                        g.setColor(Color.RED);//          sets color of line to be drawn
                        g.drawLine(100, 200, 600, 700);//     draws line between two sets of coordinates.
             }//paint()
         } // class CurvCanvas
        public static void main(String[] args)
            new DrawCurves( );
    }//DrawcurvesI need help getting it to allow me to draw what i have. It doesn't seem to be allowing me to use the polygons method polygons(int, int). As you can see it is already there and i have tried recompileing everything and it still gives me that same error. Maybe one of you out there can help me fix it. Thanks for the help
    ~Chris~

    that was mean but yes a\i am sorry i multiposted b/c i thought this was more competitive for your expert opinions and advice . i realixe now that i was wrong and so i appologize. My ugency was only expressed so that if u had nothing else to do and thought that the person u were helping wasn't that interested and was buizy then it was su[posed to tell u that ur initial thought/assumption was wrong and that i would do anything u asked to get the aid u voluntarily provide so i thought it would be obvious that i was sorry because im not stupid enough to upset volunteers beccause they aren't the most dedicated when angry... well most of the time there not. So I am very sory and will do anything with in my power to help u help me ...Tahnks again for any help given.
    ~chris~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Re: Password Assistant -- "The Missing Manual" references such a beast, but I cannot locate it. I have ver 10.6.8. Anyone out there who can help?

    According to The Missing Manual, Version 10.6.8 of the Mac OSX Snow Leopard system should have a password generating utility, called the "Password Assistant," which actually generates passwords for you. I've been unable to find this miraculous utility on my Mac, and seek enlightenment from the learned readers of this community. Anyone out there have some light to shine on my dark corner?

    I  think the "Password Assistant" they are specifically referring to comes up when creating or changing an Account's password.  For example, go into your System Preferences Accounts.  Select an Account.  Click the Change Password... The sheet that drops down has a little key in a box.  Click that.  And a window with the title "Password Assistant" is displayed.
    Example: Using Apple’s Password Assistant
    Note, the Password Assistant can also be brought up from Keychain Access's New Password Item... menu.  It brings up a sheet with a little key too.
    Lastly, a little google searching flushed out a little app which apparently directly uses the built in OS X Password Assistant used by Change Password and Keychain Access.  It's called, no surprise, Password Assistant and can be found here.

  • Anyone out there who can help me?

    My itune 7.2 doesn't recognize a CD after the first one was copied........In other words it still has the CD it just finished even though it's been ejected..I put in a new CD to copy and it doesn't change from the CD i just copied....What can i do?

    Are you copying CD's or importing them into iTunes to use on iPOD etc?
    iTunes isn't relly designed to make exact copies of existing CD's you'd be better off using the burning software that came with the PC/CD writer

  • Hi anybody there who can help me ha..? My phone 5s was stolen 1 month ago..Find my phone is no a big deal, How can i know whether my phone is in use??

    Hi anybody there who can help me ha..? My phone 5s was stolen 1 month ago..Find my phone is no a big deal bcz it seems to be wiped out all data including settings. it might be in use somewhere turning new fresh Gadget.  How can i know whether my phone is in use??

    You would know for a fact if the device is in use, but if you go back to the find my iPhone app in iCloud.com, you can either select to erase it, or place it in lost mode, in which case, once the device makes a connection to the internet, it will automatically go into that mode.

  • I have a MacBook osx 10.5.8 and i can't open my iTunes, made a recent upgrade and now nothing it keeps telling me error-600. Anybody out there that can help. And also my Mac won't shut off. Thanks

    My iTunes won't open . The only way to view my movies is through front row. Is there anybody that can help? Thank you

    Use the Activity Monitor to force quit the loginwindow process. Save all open documents before doing this; there won't be any further confirmation prompts.
    (58702)

  • I just got a new ipone5c and i can't get the light to go out unless I turn it off. Have tried all the things I read anyone out there that can help me??

    I just got a new iphone 5c this is my first smart phone. I have an Ipad so thought it would be easy.
    I downloaded the new software don't know if this changed anything. I have only had phone for 4 days
    but now the light won't shut off. I have to turn off the phone for it to go out. I did the holding down home
    button and start button till apple shows up. I checked to make sure the LED flash for alerts button was off.
    I don't know what else to do. Anyone out there have the same problem and have found an answer.
    Thank you!

    After powering the iPhone off and on, the light goes out but turns back on randomly or immediately after powering the iPhone on?
    Since nothing else you have tried has resolved it, try restoring the iPhone with iTunes from the iPhone's backup first.
    If no change after that, try restoring as a new iPhone or not from the backup.
    If no change after that, the iPhone has a hardware problem.
    Call AppleCare or make an appointment at an Apple Store if there is one nearby.

  • Any veterans out there? Need help with IPVC-3510-MCU

    Hi,
    We've been trying to get this running in hopes of convincing management that we would benefit from a video solution. I recall this product was quite a performer for basic Multi-conferencing so we purchased it off-market.
    Now the problem is finding software! We have the config tool but are struggling to actually setup a conference. The web page seems only to access existing conferences, leaving us in a Catch-22.
    Is there a URL we are missing? Or is it yet another software piece??
    Any help much, much appreciated!
    Thanks,
    Erik

    The 3510 does not have an interface where you can create conferences from. To create the conference, you need to call in from a video terminal. Once the call is created, then you can use a web browser pointed to the IP address of the 3510 to control the conference and invite more participants.

  • Ibook on tv doesn't work anymore - anybody there who can help please???

    Hi there
    I've problems conncting my ibook to the TV. It used to work so I have the right TV Adapter (I even bought a new one cause Ithought the old one was broken).
    If I connect it to my TV the TV is not recognized.The ibook thinks there is a new VGA Monitor. So I don't have the chance to choose betweenn NTSC or PAL...all I can do is to set different resolutions but this won't help. All I can see on my TV is a splittet "jumping" black and white image of my Ibook screen.
    I found a couple of forums where people describe this kind of prob...but no one ever awnsered.
    I wonder if this is an easy to handle software prob or a hardware prob....
    For help I would be very thankful
    ibook G4 1,2 GHz   Mac OS X (10.3.9)  

    Hello external:
             This link will explain everything to you. Click on Where is Live TV software program?
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02641554&cc=us&dlc=en&lc=en&product=4002841&sub...=
    I provide media centers trouble shooting page as well in case you well need it.
    http://h10025.www1.hp.com/ewfrf/wc/searchResults?tmp_product=HP+TouchSmart+300-1050jp+Desktop+PC&pro...=
    Nothing I saw in updates relates to Live TV not opening up Media Center other then this.
    HP Link is not working correctly. What do I do?
    HP Link may not work correctly and is not supported in TouchSmart 4.
    You might to have create an icon for Media Center to work in Touchsmart software as you have to in Touchsmart  version 3 software. OK.
            You are welcome please click on Kudos if this has answered your question. Thank you for posting. frrw

  • Anyone out there who might help with iPhoto/ slideshow/ music to youtube?

    i'm basically a techno-moron but i've been able to figure out how to make a slideshow, add music, save it and upload to youtube. except that once it's on youtube, the music's no longer there. help?

    Welcome to the Apple Discussions.
    Was the music purchased from the iTunes sStore?
    Regards
    TD

  • Is anyone out there that can help me?  Questions about connecting to new PC

    I had to replace my PC & do not have a backup for my phone.  I have copied photos to flashdrive to put on new one, but not sure what to do about contacts.  I have looked around the discussions & did the transfer purchases from iphone, so hopefully that will take care of things bought on the phone.  Someone discussed how to create a backup, by right clicking under device.  If I do this to my phone before I sync with the new computer, will I be able to create a backup that I can use to salvage all the info on my phone that I can't drag & store on my own?  Or will this delete all of my phone information, just like syncing with the new computer will?  I appreciate all of the anticipated help, this is not my forte!
    I posted last night, but no help............hoping it was just bad timing......

    Okay!  I have been dipping in the pool a toe at a time.  I backed up the phone, never could find it in my files, but whatever.  I synced notes, calendar & contacts, one at a time & everything copied to my PC.  Now, I have to move on to the real world & get things done.  But will attempt later to salvage music & ringtones.  If you have any advice.....
    Thanks for all of your help & support!!

  • I've just came on board from Andriod and need massive help with the Contacts application any one out there willing to help the 'noob'?

    I had the folks at the store port over all of my contacts from my old
    ratty Andriod phone to my new shiny iPhone.
    however all 200+ of my contacts sort of "shook" out,
    meaning say John Smith, on my old phone,
    had in my contacts the following:
    John Smith
    123 Main St. Anytown, Anystate USA
    555-826-4879 home
    555-799-4247 cell
    [email protected]
    johnsmith@facebook
    all nice and neat on my andriod but when it ported over
    all that information was just scattered all over my contacts sort of like:
    john smith, smith john
    john smith 123 main st. etc.
    johhn smith home 555 etc.
    john smith cell 555 etc.
    john smith johnsmith@ etc.
    etc.
    so for all those 200+ contacts in my phone, I've got a zillion of them now...
    so I'd like to get this all back in order before I and Siri explode.
    I know nothing, and I know even less about outlook and the sort.
    But I do know I am in Dire need of help with this... I figured that eveything else
    involving iphones and apple in general was supposed to be cake but it seems
    like this is the only thing that isn't cake at all... unless, I'm just a right idiot. (which is possible, hence spelling and grammatical issues).

    I believe I've tried to sync it with google, but it didn't seem to take
    muchless take my calender. it seems to favor my facebook calender
    more over my google calender, but Siri seems to be helping me re-write
    it...but that's not the game here, it's the contacts. I've tried to export
    the cvp (??) list and import it into my iTunes account. However, It only
    doubled my issue because it didn't over write my existing contacts.

  • Any FRENCH PEOPLE here who can help with: E71 + Fr...

    Can anyone advise me how to set up my phone
    so i can use it to phone via the freebox?
    The free.fr website does not provide much info,
    or maybe it's just that my French is not good enough.
    Appreciate the help...
    A dutch in France.

    Thanks for yr reply.
    I should have posted this i guess,
    but meantime i found some instructions:
    it's for the E61, but works the same for the e71:
    http://www.universnokia.com/?p=3
    cheers
    egon

Maybe you are looking for