Can't get Port Mapping to work

Ever since i got the AEBS(wireless n) I can't figure out how to do port mapping. Say i want to forward 41857, how do i set it up?

Try the following ...
AEBSn - Port Mapping Setup
To setup port mapping on an 802.11n AirPort Extreme Base Station (AEBSn), either connect to the AEBSn's wireless network or temporarily connect directly, using an Ethernet cable, to one of the LAN port of the AEBSn, and then use the AirPort Utility, in Manual Setup, to make these settings:
1. Reserve a DHCP-provided IP address for the host device.
Internet > DHCP tab
o On the DHCP tab, click the "+" (Add) button to enter DHCP Reservations.
o Description: <enter the desired description of the host device>
o Reserve address by: MAC Address
o Click Continue.
o MAC Address: <enter the MAC (what Apple calls Ethernet ID if you are using wired or AirPort ID if wireless) hardware address of the host computer>
o IPv4 Address: <enter the desired IP address>
o Click Done.
2. Setup Port Mapping on the AEBSn.
Advanced > Port Mapping tab
o Click the "+" (Add) button
o Service: <choose the appropriate service from the Service pop-up menu>
o Public UDP Port(s): 41857
o Public TCP Port(s): 41857
o Private IP Address: <enter the IP address of the host server>
o Private UDP Port(s): 41857
o Private TCP Port(s): 41857
o Click "Continue"

Similar Messages

  • I can't get Google map to work on Firefox.

    I can't get Google map to work on Firefox. I have a web site with a Google map on it, but potential customers using Firefox will not be able to use this function to locate me. Can someone please help me fix this issue?

    You can backup your bookmarks (in case something goes wrong) and import them again later as is described in the article posted above.

  • SA 540 Can't get port forwarding to work.

    Now that the DMZ port doesn't seem to work, I have placed our Web and CRM server on a VLAN. I have created a firewall forwarding rule -> WAN to LAN HTTP allow always and pointed it to the internal IP address.
    When I type in our domain name in the browser I only get the Cisco remote management page, no forwarding to the web server.
    What am I doing wrong?
    I have tried to disable the remote management, but that still doesn't change anything. (btw, how do I change which port the RMON uses, it's grayed out in the setup page)
    SA 540 firmware 1.0.39

    No it does not work from outside my devise, I just get to the RMON page, no forwarding to my Web server at all. I've taken all FW rules away and just have the WAN to LAN allow HTTP "ip address of server" but still nothing.
    I got confirmation that the DMZ/Optional port does not work, I can't SSL from our Apple computers to our Network, and now it seems like we can't get our Web or e-mail servers working either if there is not port forwarding. On top of this, it now also seems like the SA 540 is blocking EDNS packets, slowing down our DNS server. Please tell me that there is something to be done, it can't be that Cisco have put a "Pro" devise out where only 9 out of 10 ports work and that you can not host Web, email or CRM servers because there is no port forwarding, not to mention it only supports IE browsers for SSL.
    I don't mean to sound cranky, but we have spend so much time trying to get this devise to work, please help. (I wish I could give you some logs, but logging doesn't seem to work either)

  • Can't get port forwarding to work.

    I have the old white UFO airport extreme. v 5.7
    When I have port mapping to a particular LAN IP, let say 80 public and 80 private, and I setup that particular computer to use that LAN IP, that computer cannot connect to the internet. I have to use automatic DHCP, DHCP with manual address doesn't work. Any ideas?
    On the "Network" tab in the airport config, I tried both "Distribute IP addresses" checked and unchecked. Same thing, I cannot get it to connect if I manually assign the IP address of the computer I want it to port to (within the System Preferences -> Network - Built-In-Ethernet).
    I remember having less difficulty getting this done with a cheap netgear router and on windows NT with apache...

    When you manually assign the information to your computer you should use values similar to these:
    IP address: 10.0.1.201
    Subnet mask: 255.255.255.0
    DNS servers: 10.0.1.1
    Router/gateway: 10.0.1.1

  • Can't get graphical mapping to work - subelements

    Hello,
    I'm new to SAP XI, and I'm struggling with a graphical mapping.
    This is what I have in the source message schema:
    <Root>
      <Group>             (occurrance 1..1)
         <A>              (occurrance 1..n)
            <Value>       (occurrance 1..1)
            <B>           (occurrance 0..n)
               <Value>    (occurrance 1..1)
    So element "A" can have possible 0, 1 or more subelements "B".  Element A has always a subelement "Value", and if B occurs, every occurrance of B has also a subelement "Value".
    The purpose of the mapping is: if there are "B" subelements, then map the "Value" subelement of B to the target message element (and this for each "B" subelement). If there are no "B" subelements, then map the "Value" subelement of A to the target message element.
    The example message instance I have is:
    <Root>
      <Group>
        <A>
           <Value>test1</Value>
        </A>
        <A>
           <Value>test2</Value>
           <B>
             <Value>test3</Value>
           </B>
           <B>
             <Value>test4</Value>
           </B>
        </A>
        <A>
           <Value>test5</Value>
        </A>
      </Group>
    </Root>
    This would have to be mapped to a target result which looks like this:
    <Results>
       <Records>
          <Result>test1</Result>
          <Result>test3</Result>
          <Result>test4</Result>
          <Result>test5</Result>
       </Records>
    </Results>
    (as you probably already remarked, the "test2" value should not be mapped to the target, because the A-parent element has B subelements, so the values should be taken from that element.)
    I already tried several things and combinations (exists node function, splitbyvalue,...) that I found on the forum, but I don't succeed in creating the correct structure.
    Can you guys help me ? Thank you very much in advance !
    (I marked this thread as a question so I can reward the answers)
    Kindly,

    This is my exampel to loop over a special node and to find out a special value inside this node or to find a special subnode. In this case i have to search in the node "PARAM1" similar to your "A" that a subnode or special Value is existing
    Maybe this code is helpful to get your solution.
    Create a Queue Function with parameters (string).
    Beware: It´s only an idea !
    //write your code here
    int i = 0;
    i = PARAM1.length;
    boolean WEExist = false;
    //result.clear();
    // loop over PARAM1 and find a special value or //subnode:in_this_case_insert_PARAM2_instead_of_equals_to_constant_WE
    for (int j = 0; j<i; j++)
                        if( PARAM1[j].equals("WE"))
         WEExist = true;
         result.addValue("trueWE");
    if( WEExist == false)
         result.addValue("falseWE");
    You can work with this result to get the "value" from "A" or "B".
    Note: you have to use the removecontext after the UDF in the Graphical mapping.
    I hope you can use this simple UDF to get an idea for your solution.
    Regards,
    Gordon
    Message was edited by:
            Gordon Breuer

  • Can i get memory map to work on my 5800 ?

    the instructions say your phone must have windows sync 3.7 (iirc) and you can plug in mobile and get it working. i have all the software on my comupter but it cant see my phone

    Your hand set runs S60 5th firmware not Windows Mobile.
    You may be able to get a 3rd party app to run on your handset.
    N96-1 + 8G SD~Software Version 30.033~Software Version Date 18-06-09~Type RM-247~P/C 0543713~T Mobile UK

  • WRT110 - still can't get Port forwarding to work

    Here's the deal: Vista PC behind WRT110 in PPPOe mode which is behind a successfully bridged AT&T Westell modem/router (but it's not in DMZ mode). I've setup a static IP on my computer and enabled port forwarding to it in the router. Then I test port forwarding and still fail the test. On my Westell modem, it says I can share my (external) static IP with my router. Would that do anything helpful? Can you suggest anything else helpful? Thanks so much!!

    Mort wrote:
    You can use the Static IP under WRT110 .... using Internet Connection type ....
    If the port forwarding is not working then reset & reconfigure the router ...
    Thanks for your reply! If my modem is bridged, how do I know what my router's static IP address should be? Would it be the same as the modem?

  • Can't get Report Builder to work with Apache Webserver

    I'm running ColdFusion 7.0.1 and have it configured to work
    with Apache. I've got an application named realestate. I created
    the following entry in my host file:
    127.0.0.1 realestate
    In Apache, I've created a virtual server that uses the
    realestate server name. But I can't get the Report Builder to
    connect to it at all. When I run the wizard, I try to install an
    RDS server. I've used 127.0.0.1 for the host name as well as
    realestate and I've set the port to 80. I can't get port 8500 to
    work at all. I set my ColdFusion root location to fall under
    Apache's htdocs. Should I have left it under C:\CFMX7 ? How would I
    change the location?

    Please review the "stickied" threads near the top of this board, about syncing with Windows 7 and Vista.  It's all there. 
    After you've been through and tried everything there is to try, and still have problems, please post back with specific info about exactly what you've tried, what version of Windows 7 you have (32-bit or 64-bit), etc.
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the Component and Audio ports on my TV?

    I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the MacBook Pro and connected to the TVs Component and Audio in ports.

    Will not work.  To my knowledge, dual converting like that isn't supported.  The Mac must detect the connected video output device and that sort of info cannot be done across an analog component uni-directional connection.

  • Why can't I get Google Maps to work?

    Why can't I get Google Maps to work?

    Here are some suggestions for getting the best results from this site.
    Give details of the problem. A remark such as "X doesn't work" conveys no useful information. If X did work, you wouldn't be here. Instead, you should post something like this: "I did A; I expected B; but I got C." Include the complete, verbatim text of any error messages you saw, and specify where you saw them: in an application window, a CrashReporter window, a log, or whatever.
    Also describe the steps you’ve taken yourself, if any, to try to resolve the issue. If the problem is of recent origin, did you make any changes to your setup just before you first noticed it? Is the problem reproducible or intermittent? That is, does it always manifest itself when you take a certain action, or only at unpredictable times?
    Before posting, ask yourself whether it’s likely that you are the the only person ever to have had this problem. If not, search the discussions for answered questions similar to yours. If you found any pertinent information, but it didn't help, give details.
    If asking about third-party software, specify the version.

  • I can not get my map link to work!!!

    I can not get my map link to work!!!
    The image it is on is surrounded by fixed images and is in <div id="display"> (see code below). Map links work just fine on the images that are in the fixed divs, but not the 'display' div.
    Can someone help?
    Code:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Mobile Phone</title>
    <style type="text/css">
    body {
    margin: 0; 
    #wrapper {
      margin: 0 auto;
    top:0px
    #phone {
      width: 400px;
      margin: 0 auto;
      font-size:0;
    #top {
      position:fixed;
    #left {
      float:left;
      padding-top: 268px;
      position:fixed;
    #display {
      float: left;
      padding-top: 268px;
      padding-left: 28px;
      position:
    #right {
      float:left;
      padding-top: 268px;
      padding-left: 348px;
      position:fixed;
    #bottom {
      position:fixed;
      padding-top: 728px;
    </style>
    </head>
    <body style="background-color: #4B4B4B; padding-top: 0px;">
    <body>
    <div id="wrapper">
      <div id="phone">
        <div id="top"><img src="Images/top.fw.png" width="375" height="268" alt=""/></div>
        <div id="left"><img src="Images/left.fw.png" width="28" height="460" alt=""/></div>
        <div id="display"><img src="Images/AlbumPage.png" alt="" width="320" height="2000" usemap="#Map2"/>
          <map name="Map2">
            <area shape="rect" coords="3,437,317,470" href="Phone2.html">
          </map>
        </div><!-- This is the div you will use to place your mockup -->
        <div id="right"><img src="Images/right.fw.png" width="26" height="460" alt=""/></div>
        <div id="bottom"><img src="Images/bottom.fw.png" alt="" width="375" height="1076" usemap="#Map"/>
          <map name="Map">
            <area shape="rect" coords="35,3,74,42" href="goBack()">
          </map>
        </div>
      </div>
    </div>
    </body>
    </html>

    ' surrounded by fixed images'
    corrected to 'surrounded by fixed divs'.
    Sorry

  • Port Mapping Not Working...at all!

    I've been tyring to get port mapping working correctly since I got the AEBS a few months ago. I've scoured all over these forums and the entire internet and found not a single suitable answer. I have my macbook pro setup up wirelessly all works fine except port mapping.
    My macbook is setup up manually with a static IP of 10.0.1.2 and lets say i want to map the port 41952. In the port mapping setup assistant on the base station I leave the service setting on "choose a service", public UDP 41952, public TCP 41952, IP address 10.0.1.2, private UDP and TCP 41952. Then I update and router resets... then I use the network utility to check the ports and they're not showing as open, I've used various internet websites as well and the port comes up closed. What on earth am I not doing? Someone please help! or let me know if you are having the problem as well.
    Thank you for ANY help.

    You are not performing a valid test.
    No, Cable modem plugged into WAN port, the computer i'm trying to open ports on is using a wifi connection with the aebs.
    You can not test the AEBS to see if the ports are open from the LAN side of the AEBS. You must be on the internet (WAN) side of the AEBS to test to see if the port is open on the AEBS.
    ...the computer i'm trying to open ports on is using a wifi connection with the aebs.
    You aren't opening ports on the computer, you are opening ports on the AEBS.

  • Can't get video chat to work outside of LAN...

    Hello,
    I can't get video chat to work.
    All computers, LAN and WAN are running the latest iChat under 10.4 (including latest updates).
    Within our LAN, via Bonjour, everything is fine.
    I'm now trying to set up an offsite Intel iMac (10.4) and I can't connect via video chat with them.
    I've had this problem in the past and eventually gave up (so much for "it just works" - I've spent the last 10+ years dealing with Macs and Mac-based networking, I can't imagine "my dad" figuring this all out). Trying again with fingers crossed...?
    If someone could help, it'd be much appreciated.
    Thanks,
    Kristin.
    The studio router/firewall is a SonicWall TZ 170 Standard.
    This router has a static IP.
    All suggested ports on the SonicWall are set up correctly to allow in/out from our LAN.
    All computers on the LAN have static IP addresses.
    Quicktime streaming settings set as suggested.
    OS X Firewall on all computers = OFF.
    No iChat add-ons on any computers.
    Internet connection speed = 7404 kb/s
    The offside router/firewall is a LinkSys WRT54G
    This router does not have a static IP.
    DMZ is ON and set to the only computer connected to it.
    Computer has a static IP address.
    Quicktime streaming settings set as suggested.
    OS X Firewall on all computers = OFF.
    No iChat add-ons on computer.
    Internet connection speed = 5116 kb/s
    If any more information is required to help you help me, just let me know!

    Does the TZ170 have UPnP or Port Triggering then ?
    I can not see that it does here
    Opening the ports in the manner listed on that link will only allow one computer (IP) to use the open ports.
    The Linksys is router and you have not mentioned what the modem is doing at that end.
    Why not use UPnP here ? The Linksys does it (on the Administration page)
    Most likely this needs the Respond to Anonymous Pings checked on the Security page.
    9:29 PM Thursday; January 17, 2008

  • How can I get my speaker to work again?

    How can I get my speaker to work again? I've tried turning my phone off and on, hard reset, removing SIM, cleaning out dust, using the hair dryer, network reset, cleaning headphone port, made sure the phone was not on vibrate,and made sure "Change with buttons" was on. There was no liquid/moisture damage.  I was watching a video on youtube and all of a sudden my speaker went out. If I tap on the speaker it goes in and out but does not stay on/loud.

    Do you get sound in any apps e.g. in Music and Videos but not notifications or sound in other apps ? If you do get sound in Music and Videos then have you got notifications muted ? Only notifications (including games) get muted, so the Music and Videos apps, and headphones, still get sound.
    Depending on what you've got Settings > General > Use Side Switch To set to (mute or rotation lock), then you can mute notifications by the switch on the right hand side of the iPad above the volume switch, or via the taskbar : double-click the home button; slide from the left; and it's the icon far left; press home again to exit the taskbar. The function that isn't on the side switch is set via the taskbar instead : http://support.apple.com/kb/HT4085
    If you don't get sound in any apps then have you could try a soft-reset to see if you get sound 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.

  • Can't get Lion Server to work

    Hi
    As written above. I can't get Lion server to work.
    I have succesfully installed the program, and turn on some of the services. Then I have bought a domain, to connect to my server. But if I try to connect to my IP, from another computer, it doesn't connect. I have tried to "port forwarding" port 80 on my router, and given my Mac a static IP. I have checked with a "Check port opener" if the port 80 was in reach, it was.
    So my question is, what is the next I can do to make it work. First with the IP and then with my domain?

    Yes, SMTP used to work but stopped after new cert applied. IMAP works fine. Removed SSL and still doesn't work (although should it be restarted or is save for changes okay).
    Log:
    Nov 10 12:30:39 colquhoun postfix/postscreen[29668]: CONNECT from [168.144.32.45]:54598
    Nov 10 12:30:39 colquhoun postfix/postscreen[29668]: PREGREET 29 after 0.07 from [168.144.32.45]:54598: HELO www.unlocktheinbox.com\r\n
    Nov 10 12:30:39 colquhoun postfix/smtpd[29669]: connect from unlocktheinbox.com[168.144.32.45]
    Nov 10 12:30:42 colquhoun postfix/smtpd[29669]: lost connection after HELO from unlocktheinbox.com[168.144.32.45]
    Nov 10 12:30:42 colquhoun postfix/smtpd[29669]: disconnect from unlocktheinbox.com[168.144.32.45]

Maybe you are looking for

  • "My Podcasts" View Seems to be the one Apple is Promoting

    With the demise of functionality of the podcast list view in iTunes I decided to take a look at other ways that I might enjoy the same functionality as before. I just could not believe that a bunch of clowns decided to dumb it down so that 4 year old

  • How do I change the order of blog entries?

    How can I change the order of my blog entries? I want to add some extra items with an earlier date but iWeb won't let me drag the entries around and insists they must stay in the order of the creation date. What do I do? Dual 2 GHz PowerPC G5   Mac O

  • How to make link between xcelsius components with sap data using Web servic

    Hi all, I have a doubt regarding connection between Xcelsius components and SAP data. I created one Web service using Function module and made a connection between xcelsius and that web service using binding URL. It shows imput and output parameters

  • Remote Printing in Solaris 8 across the network

    Hi I am trying to setup a printer on Solaris 8 server. The printer is located on the Client side outside our network and using the Axis Print Server. The way it is setup is... print request goes through our server to a virtual IP which forward the re

  • FLV gone from Media Encoder - which formats work on iOS anymore?

    The withdrawal of the FLV format has thoroughly confused me. FLV is the only video format I've ever succesfully worked with in AIR apps on iOS. MP4, MOV etc. - all these formats never played when I tested them on iOS devices. Only FLV. I know that St