Can two different local ips use the same port at the same time?

Can two PS3s use the same ports at the same time. So let's say you have two PS3s and they need to open the exact same set of ports at the same time to be able to play the same game online. Is that possible on a regular consumer router such as the wrt310n? If so, then how would someone go about that. I am just asking out of curiosity.
I don't work for Cisco. I'm just here to help.

Use port range Triggering instead of Port forwarding. When you use port triggering then those ports will be opened for the entire local network.

Similar Messages

  • Can two different people who have Dreamweaver CS6 installed edit the same website?

    AS the title suggests, I'm trying to figure out if it is possible for two different people to make edits to the same website if CS6 is installed on BOTH computers.

    Hi,
    You can activate the check-out option in the configuration for your site.
    Sites/Manage Sites. Then klick the name of your site and click the edit-pen.
    Choose Servers, Click the name of the site and then the edit-pen again.
    Finally choose the Advanced button and check the "Activate file check-out" box
    and fill in name and email.
    Now every time you or your partner works on a file on the remote-server
    you get a little icon saying that so and so have checked in or out this file.
    Also try the Design Notes under Advanced settings that can be handy when
    working in a team.
    Hope this helps.
    Arne
    www.mainland.se

  • CAn two different skype account use the same skype...

    If I buy a skype number thru my account , when someone calls, can it ring in my husband´s and my device or do I need a different skype number for each skype account?

    Use port range Triggering instead of Port forwarding. When you use port triggering then those ports will be opened for the entire local network.

  • HT204053 Can two different icloud accounts used for the same mac computer and same Itunes account still transfer photos and downloaded apps to all devices associated with that mac?

    I purchased my wife an Iphone and we currently use the same icloud account, but we just ran out of storage. I'm not sure if we need so much more space that I'm ready to upgrade to 15 total GB of storage. If my wife sets up her own icloud account for her iphone will she and I still be able to share our photos, downloaded apps and music with different icloud accounts?

    Apps and music aren't anything to do with your iCloud account, indeed you can use different ID's for each.
    If you create and use another ID for iCloud, you will not be able to share both photostreams to the same user account on the computer.
    This could be worked around with a second user account on the computer for the second user to do all their computing in. However you may find that photostreams shared albums will work around the problem for you. For example if you create a shared album and share it with your partner, any photos you add to that album will be available in your partners photostream on the computer.

  • HT204053 can two different apple ids be used for the same imatch

    can two different apple ids be used for the same imatch homesharing for music

    Welcome to the Apple Community.
    No.

  • CIsco ISE use two different local certificates for EAP

    Hi Experts,
    ISE 1.2.1.198
    It is possible to use two different local certificates on cisco ISE, generated by two different root CA, for EAP?
    Example:
    1 - Microsoft CA for notebooks
    2 - Different CA (public, openssl, other) for mobiles
    And, in case it is possible, which will be the first one presented from the server to the client for EAP-TLS authentication?
    Thanks
    Andrea

    Thanks for your reply,
    i think i'll go for another pair of PSN for the mobiles
    Andrea

  • I want to transfer data through the serial port in the same coding that hyperterminal uses. How can i do it?

    The serial port seems to be working, and labview seems to be sending the data, but the problem is in which format does it send the data, because in hyperterminal i just input the string "JDX" and it sends it to my device, with labview it sends something but my device does not recognize it.

    nobuto wrote:
    > I want to transfer data through the serial port in the same coding
    > that hyperterminal uses. How can i do it?
    >
    > The serial port seems to be working, and labview seems to be sending
    > the data, but the problem is in which format does it send the data,
    > because in hyperterminal i just input the string "JDX" and it sends it
    > to my device, with labview it sends something but my device does not
    > recognize it.
    Hyperterminal adds the carriage return/line feed to the string which is
    generated by the return key to send out the current line. LabVIEW simply
    sends out what you tell it, so try to set the string to "Show \ Display"
    format and add a \r or \n or \r\n to the command you want to send out.
    Assumes of course that you set the right baudr
    ate/bits/parity etc in
    LabVIEW with the VISA property node, when opening the serial port.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Is it possible to use both an ILB and an ELB (listening on the same port) in the same Azure cloud service?

    I'm building a test Lync deployment on Azure; yes, I know this is not supported, hence "test".
    Lync Front-End servers expose two set of web services, one for internal users and one for external ones; they listen on different ports (443 and 4443) on the same servers; when external services are published, you need a reverse proxy or a port forwarding
    in order to map port 443 of a public IP address to port 4443 of the Front-End server(s). When you have multiple Front-End servers in a pool, you also need to load-balance them.
    So, a typical Lync deployment looks like this:
           Internal users
                     |
                   443
                      |
              Internal LB
            192.168.0.20
            443         443
              |               |
       Lync FE 1     Lync FE 2
    192.168.0.21 192.168.0.22
              |               |
          4443        4443
              External LB
           Public IP Address
                     |
                  443
                     |
           External Users
    This should be easily replicated in Azure, as it supports both external load balancing and internal load balancing. They are even supported together in the same cloud service, so this configuration should be easy. However, it looks like "should"
    is the keyword here.
    After creating the external load balanced endpoint (which listens on external port 443 and forwards to port 4443 on the servers), I'm trying to create an internal load balancer and add internal endpoints to is; however, while the ILB can be created successfully,
    adding an internal endpoint listening on port 443 and forwarding to port 443 on the servers fails miserably, with an error stating that port 443 is already in use by another endpoint:
    Update-AzureVM : BadRequest : Port 443 is already in use by one of the endpoints in this deployment. Ensure that the port numbers are unique across endpoints within a deployment.
    For reference, my commands are:
    Add-AzureInternalLoadBalancer -InternalLoadBalancerName "LyncILB" -ServiceName "LyncFrontEnd" -SubnetName "LabSubnet" -StaticVNetIPAddress 192.168.0.20
    (This completes successfully)
    Get-AzureVM LYNCFE1 | Add-AzureEndpoint -Name "Https-Int" -Protocol "tcp" -LocalPort 443 -PublicPort 443 -LBSetName "HttpsIntLB" -DefaultProbe -InternalLoadBalancerName "LyncILB"
    (This fails)
    The existing external endpoint is configured as such:
    Get-AzureVM LYNCFE1 | get-azureendpoint
    LBSetName : HttpsExtLB
    LocalPort : 4443
    Name : HTTPS-Ext
    Port : 443
    Protocol : tcp
    Vip :
    ProbePath :
    ProbePort : 4443
    ProbeProtocol : tcp
    ProbeIntervalInSeconds : 15
    ProbeTimeoutInSeconds : 31
    EnableDirectServerReturn : False
    Acl : {}
    InternalLoadBalancerName :
    IdleTimeoutInMinutes :
    LoadBalancerDistribution :
    The error doesn't even make a lot of sense; the external load balancer listens on a public IP address, while the internal load balancer listens on a private IP address in the internal network; there
    shouldn't be any conflict here... however it looks like there is one instead.
    Why doesn't this work? Am I doing something wrong, or is Azure networking just being silly as usual again?

    Hello Massimo Pascucci,
    The issue that you are facing when creating an endpoint with internal loadbalancer is the limitation of not allowing same ports to be listening under a single cloud service. This reason for this is that there is a limitation of only one private IP (Also
    known as the Internal load balanced IP) per cloud service.
    There is also a limitation on the Internal load balancer more than one port to be published per load balancer:
    You can leave your feedback by following the link below:
    https://social.msdn.microsoft.com/Forums/en-US/1805c5a0-3906-4cd6-8561-9802d77e0ae5/is-it-possible-to-use-both-an-ilb-and-an-elb-listening-on-the-same-port-in-the-same-azure-cloud?forum=WAVirtualMachinesVirtualNetwork
    Refer to this article for more information on Internal load balancer:
    http://azure.microsoft.com/blog/2014/05/20/internal-load-balancing/
    Thanks,
    Syed Irfan Hussain

  • Can two different Apple ID's share itunes content? if so , how do i set this up?

    Can two different Apple ID's share itunes content? If so , how do i set this up?

    Hello mqg13,
    Thanks for using Apple Support Communities.
    How do you mean "share iTunes content?" You are able to purchase and download from one Apple ID on multiple devices, simply follow the steps in the article below:
    iTunes Store: Associating a device or computer to your Apple ID
    http://support.apple.com/kb/HT4627
    Take care,
    Alex H.

  • Can a USB Keyboard/Barcode reader be used with the USB port on the CRio

    Is it possible to use a USB Keyboard or Barcode reader with the USB port on the CRio, I know you can use this port with a USB memory device, but what about other devices?
    I have a project that requires that all hardware elements be connected to the controller and use the HMI purely for display,
    anybody any ideas?? 

    Hi kmoyna,
    The standard CompactRIO range's USB host ports are not suitable for standard USB devices like keyboards or barcode readers - they are intended only for use of mass storage devices. From your description, it seems your project's requirements would be best met by the newer models, cRIO-9081 or cRIO-9082. These two units have Windows Embedded Standard 7 (WES7) and allow the direct connection of a monitor and standard USB devices. We now also have similar stand-alone CompactDAQ models running WES7 - cDAQ 9139.
    I would recommend calling into your local branch to discuss your project further with one of our engineers. If you're in the UK, it's 01635 523 545 - or view contact details for other branches.
    Regards,
    Imtiaz Chowdhury
    Head of Digital Technologies
    Brand786

  • Can I use the Airport Express to connect to a Linksys Wireless Network and then use the Ethernet port on the Airport for a wired connection to a device for internet access?  Would I be able to then also use that Ethernet pt to a Ntwk Hub for more wired c

    Thanks for the help.  Looked but not clear on what I am trying to do as being possible.  Can I use an Airport Express to connect wireless to a Linksys Wireless Router, such that I can then use the Ethernet ports on the Airport to either connected to a PC wired, or even use a hub off the Airport Express to allow multiple wired connections to it? 
    I am not looking to have the Airport Express extend my wireless network, just connect to it and provide me wired connections in a different location from where my Linksys Route is located.  Would prefer to replace Linksys with all Apple, but just not possible financially yet.  Thanks for the help.

    If the AirPort Express Base Station (AX) is an 802.11n model, then yes, you can reconfigure it as a wireless Ethernet bridge. In this configuration, the AX would join the wireless network provided by the Linksys router and its Ethernet port would be enabled for either a single wired device or for an Ethernet hub or switch for multiple devices.

  • Downloading two different text files using gui_download

    Hi Folks,
    I have two internal tables.itab1 and itab2.Generally in  most cases I have to download only the data in itab1 as a text file using Gui_download.In some cases if a particular condition is satisfied I need to download both itab1 and itab2 data as two different text files using gui_download.To achieve this I had called the gui_download twice as I have to pass two different internal tables.
    But I am getting only itab1 textfile and not itab2 textfile.
    In the selection screen I am giving the path as c:\..
    Kindly let me know where I am going wrong.
    K.Kiran.

    Hi
    You keep the both files in a ITAB and in the loop of that Itab use GUI_DOWNLOAD to download the two files
    data: begin of itab,
              file like rlgrap-filename,
            end of itab.
    In initialization event
    put the two files into this ITAB.
    loop at itab
    call function gui_download.
    endloop.
    check like this
    Regards
    Anji

  • MBA will not allow me to use both usb ports at the same time.

    My MBA will not allow me to use both usb ports at the same time. as soon as i plug the second in the first is disabled. trying to use a modem and printer.

    What kind of peripherals are you connecting? Sometimes if an external device is drawing too much power, then it will shut down one of the USB ports. Make a test connecting two usb flash drives, it should work ok.

  • Can't use my HP Deskjet F4580 Wireless Printer with the AirPort Extreme Base. The printer is NOT connected at the USB port of the AirPort Extreme, and is placed in another room. It worked just fine with my previous router (Linksys WRT54G). Help me!

    Hey Guys!
    I just got my AirPort Extreme Base, but I can't use my HP Deskjet F4580 wireless printer with it.
    The printer is not connected to the AirPort Extreme's USB port. It is placed in another room, and I'd like to use it (the printer) wirelessly (not connected to the USB port os the AirPort Extreme), as I used to. There is no place for the printer close the AirPort Extreme. It worked just fine with my previous wireless router (Linksys WRT54G). I'm very disappointed with the AirPort Extreme Base Station because of that!...
    Can you help me? Please?!
    Thanks Folks!

    This must be a tough one, no suggestions at all.

  • Why would iPad 1st Gen show up in two different locations when useing find my iPad App. ?

    Why would iPad 1st Gen show up in two different locations when useing find my iPad App. ?

    Why would iPad 1st Gen show up in two different locations when useing find my iPad App. ?

Maybe you are looking for

  • Connecting to a Smart board.

    I would like to buy an ipad2 and use it for my job. I need to connect it to a Smart board to use it interactive and to show some PowerPoint presentations. So far I have only used  Windows7. Do you know if it is possible to use iPad2  for this. Does t

  • Disable AirPrint on iPad mini

    Can someone please tell me how to disable AirPrint on an iPad mini?  Students in one of our developmentally handicapped classes are "accidentally" printing to our school district superintendent's color printer.  He is not happy and wants it stopped. 

  • Odd change in exchange 2010.

    so i was moving dns providers and as a result my mail stopped flowing.. nothing out of the ordinary  how ever once things started getting set up again i got IP Resolution Error when running tests on the domain.. i started poking round the logs and i

  • Character encoding across Web application contexts

              If I submit an HTTP request encoded in SHIFT-JIS across Web application contexts,           the characters seem to get mangled. Do I need to do anything special to pass request           objects that are encoded in SHIFT-JIS to another cont

  • JDOM copy element without content

    Hi! I like to copy an element X from an (input) JDOM document to become the root element of a new (output) JDOM document. I can do that. so far so good. Only the input JDOM I'm touching is quite lange and from the element to copy, the complete conten