How do I enable two wireless clients to communicate with each other?

I have a WRT54GL with the latest firmware.  I have two computers which are both connected to the router, with IP addresses assigned via DHCP.  Neither has a firewall running.  I cannot get them to communicate with each other -- even ping doesn't work.  I can ping the router itself using the IP address assigned to it on the WAN side by my ISP.   Both computers have no problem reaching the internet through the router.
What settings on the router will enable the communication to occur?  I can't find anything in the router's user interface which appears to control this. 
Thanks.
Solved!
Go to Solution.

Hi annie25,
I think it would be best to check on netgear or belkin technical forums how to make these two talk. 
Yesterday is history. Tomorrow is mystery. Today is a gift.

Similar Messages

  • How can I have threads communicate with each other?

    I'm working on a project that requires a group of classes communicating with each other. I decided on using a server and carrying out communication that way. However, my app only has communication between the client and server. I need the clients to be able to communicate with each other. Does anyone know how I can do this or point me to a good tutorial?

    Sorry, here's a bone stock example of my server and client:
    <SERVER>
    package testserver;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class TestServer
    static int portOpen;
    public static void main(String[] args)
    portOpen=4000;
    try
    ServerSocket portListener = new ServerSocket(portOpen);
    TestServer userThreads = new TestServer();
    while (1==1)
    Socket userConnection=portListener.accept();
    userThreads.new PortConnection(userConnection);
    catch (Exception e)
    System.out.println("The server encountered a serious error. Server shut down.");
    e.printStackTrace();
    System.exit(0);
    class PortConnection extends Thread
    //Declare variables to handle connections.
    Socket ourConnection;
    BufferedReader serverInput;
    PrintWriter serverOutput;
    PortConnection(Socket userConnection)
    try
    ourConnection=userConnection;
    serverInput=new BufferedReader(new InputStreamReader(userConnection.getInputStream()));
    serverOutput=new PrintWriter(userConnection.getOutputStream(),true);
    start();
    catch (Exception e)
    System.out.println("An error occurred when a user attempted a connection.");
    public void run()
    serverOutput.println("Welcome to the Server.");
    try
    serverOutput.close();
    serverInput.close();
    ourConnection.close();
    catch (Exception e)
    </SERVER>
    <CLIENT>
    package testclient;
    import java.io.*;
    import java.util.*;
    import java.net.*;
    public class TestClient {
    static BufferedReader userInput;
    static Socket quizServer;
    static BufferedReader serverInput;
    static PrintWriter serverOutput;
    static String serverData;
    public static void main(String[] args) {
    userInput = new BufferedReader(new InputStreamReader(System.in));
    try {
    quizServer=new Socket("localhost",4000);
    catch (Exception e) {}
    try
    serverInput=new BufferedReader(new InputStreamReader(quizServer.getInputStream()));
    serverOutput=new PrintWriter(quizServer.getOutputStream(),true);
    catch (Exception e) {}
    try {
    serverData=serverInput.readLine();
    catch (Exception e) {}
    System.out.println(serverData);
    </CLIENT>

  • Migration between two environments which can't communicate with each other

    My customer is intending to do migration from test environment to production environment using CCM.
    But the two environments are not in the same network.
    The environments' setting is as blew.
    BO TEST Repository can communicate with Web BO Server.
    BO PRODUCTION Repository (Cluster environment) can communicate with Web BO Server.
    BO TEST Repository and BO PRODUCTION Repository (Cluster environment) are in the different network, they can't communicate with each other.
    Setting Target Repository manually in CCM.
    Questions are:
    1. In CCM, as long as both Source Repository and Target Repository can communicate with Web BO Server, the migration will be successful.
       Is that right?
    2. If 1 is not right, is there additional setting should I do?
       For example, If I need to open some firewall port?
    3. Is there other attentions should I notice?
    Thanks

    Questions are:
    1. In CCM, as long as both Source Repository and Target Repository can communicate with Web BO Server, the migration will be successful.
    Is that right?
    Yes that is correct
    2. If 1 is not right, is there additional setting should I do?
    For example, If I need to open some firewall port?
    You have another option which is to use the BIAR files. Export your objects to a BIAR file in source environment, and import them from BIAR into the target environment
    3. Is there other attentions should I notice?
    when using BIAR files as solution, Make sure that you keep them < 1GB size to avoid corruption
    you may have to increase or adjust timeouts on input and output repository servers as well

  • I have the iPhone and my own Apple ID. I would like the iPad to have my husbands Apple ID so we are able to communicate with each other (he is deaf). How can FaceTime and iMessage be set up to do this?

    I have the iPhone and my own Apple ID. I would like the iPad to have my husbands Apple ID so we are able to communicate with each other (he is deaf). How can FaceTime and iMessage be set up to do this?

    Log into each device with your own Apple ID's in Settings > iCloud.
    Then, so you can share preiously purchased apps, log into both devices using the Apple ID used to make those purchases, but ONLY in Settings > iTunes and Apps Stores.
    Verify that each device uses your own Apple IDs in Settings > Facetime and Settings > Messages.

  • Connecting two m-audio box's with each other?

    Hi Everyone. I've got two M-Audio Solo box's. Is there any way i connect those two with each other so i can use both at the same time in GB?
    Many thanks!!!

    Just plug them in and create an aggregate device that consists of them. You can open Audio MIDI Setup utility and search its help for "Aggregate" to find out how, or if you want a step by step, here's a tut:
    http://thegaragedoor.com/tutorials/agg.html

  • TS3367 Can more than two people chat on Facetime with each other at once?

    Want to Facetime with my two friends. One has a mac and the other an iphone. I have an ipad. Can the three of us Facetime together? Thanks!

    Only 1 to 1 communication is allowed on FaceTime.
    I haven't tried, but you can take a look at this app.
    http://www.oovoo.com/mobile.aspx?pname=mobileoverview

  • Two cursor variable can match with each other

    I have 2 cursor in one procedure
    it is possible that cursor 1 variable do some calculation with cursor 2 variable.
    for example cursor 1 is for inStock and cursor 2 for Out stock
    Balance = Cursor1.inQTY - Cursor2.outQTY

    Suppose
    Cursor Cursor1 is
    select Idate,Icode,IFcode,Iqty,IPrice from returnreport;
    Cursor Cursor2 is
    select Rdate,Rcode,Rfcode,Rqty,Rprice from TempRed;Cursor1 result is
    IDATE      Icode Ifcode   Iqty        IPRICE        REDUNITS
    28/06/2010   13    1     148375.7308  101.8004   
    30/08/2010   13    1     100284.0398  101.7111  Cursor2 Result is
    Rdate       RCODE  RFCODE    Rqty     Rprice
    01/07/2010  13          1  2804.7464
    31/08/2010  13          1 39315.8646
    08/09/2010  13          1 24515.9089 
    28/09/2010  13          1      80000 
    30/09/2010  13          1 11693.4219  I want to update Cursor 1 table's Column REDUNIT with Cursor 2.
    go_block('returnreport');
    first_record;
    check here IQTY of RETURNREPORT
    Loop
    Cursor1.Iqty - Cursor2.Rqty
    it is like a first in first out basis
    check balance = Iqty - Rqty
    Update Redunits = Balance
    if balance = 0 then
    go 2nd row
    and update remaining balance in 2ns row.
    regards

  • Two PCs connected via TC can't seem to communicate w/ each other

    I have two PCs running XP pro connected to a TC. The TC is also connected to a cable modem. Each PC has successfully obtained an IP address (10.0.1.2, 10.0.1.3). Each can retrieve web pages from the internet. However, they don't seem to be able to communicate with each other. I have re-run my network setup wizard on both PCs and created a home workgroup. When I try use My Network Places ... Home, I only see the local PC. If I ping the other address, the ping times out. I can ping the TC (10.0.1.1) however.
    Any ideas as to why the two computers would not be able to communicate w/ each other but can communicate w/ the internet?

    I just spoke with Apple Care. The support rep did some research and believes the problem is with settings on my computers. This network was working with a different router (and different private network addresses) before I swapped it out for the Time Capsule.
    Anyone have any ideas what might be blocking network replies (or incoming packets) on the various XP computers?

  • How to make 2 clients on same VLAN communicate to each other when tunnel-loop-prevention is enabled?

    Requirement:
    How to make two clients on same VLAN communicate to each other when tunnel-loop-prevention is enabled on tunneled-node configuration at controller?
    Whenever we enable tunnel-loop-prevention on controller while we configure tunneled-node, the communication between two tunneled-node client on same VLAN is blocked or dropped.
    If the tunneled-node clients are of different VLANs then they can communicate between them even when the tunnel-loop-prevention is enabled on the controller.
    Solution:
    To make two tunneled-node client on same VLAN to communicate between them, we need to enable "local-proxy-arp" for the interface VLAN on the controller.
    Once it is enabled now the tunneled-node clients on same VLAN can communicate between each other. 
    Configuration:
    To enable "local-proxy-arp":
    Get to the interface of the VLAN on the controller
    Example :
    (config)#interface vlan 5
    (config)#ip local-proxy-arp
    To enable tunnel loop prevention on controller
    (config)# tunnel-loop-prevention
    Verification
    Show commands:
    To check if tunnel-loop-prevention is enabled or disabled
    #show tunneled-node config
    Tunnelded node Server: Enabled
    Tunnel Loop Prevention: Enabled
    To check if local-proxy-ap is enabled:
    #show interface vlan 5
    Look for in the output "ProxyARP enable"

    streetfi8er wrote:
    Server ready,waiting for client:
    Exception in thread "New THREAD" java.lang.NullPointerException
         at server4$server4Thread.run(server4.java:88)
    Failed to accept client
    when i run the second client programme on different a console in the same system i get the error that:
    Unknown HostOK, I'm no socket programming expert; but I can see a few potential problems with what you've written.
    1. First off, which line is line 88? Line numbers would be useful. Also, indenting your code properly would make it easier to read.
    2. Your 'while(!str.equalsIgnoreCase("close"))' will always fail with a NullPointerException because 'str' is initially set to null.
    3. Your 'while(true)' loop worries me. How does it exit? Relying on an exception is usually very bad practise.
    4. You are not handling SecurityExceptions. While it's unlikely to happen on your machine; it could easily happen on another.
    5. It might be worth indicating the actual exception thrown in your "Failed to accept client" message. accept() can throw three different types of IOException.
    6. All the threads you create will be called "New THREAD", which doesn't provide much value.
    HIH
    Winston

  • Wireless Clients cannot communicate to eachother.

    I have a 871W router that I am having trouble getting wireless clients to communicate.
    I can ping and use applications from any wired client to any wireless device. However I am unable to ping or use any other protacol from one wireless device to another.
    I have confirmed that there is no firewalls on the endpoints blocking communication.
    I have removed ACLs on the BVI1 interface but that had no affect.
    Any assistance would be greatly appreciated.
    Current configuration : 7670 bytes
    version 12.4
    no service pad
    service tcp-keepalives-in
    service tcp-keepalives-out
    service timestamps debug datetime msec localtime show-timezone
    service timestamps log datetime msec localtime show-timezone
    service password-encryption
    service sequence-numbers
    hostname cc-fw-router
    boot-start-marker
    boot-end-marker
    logging buffered 51200 debugging
    enable secret 5 $1$crkU$2cWtWnMRjMvfo4ADb4pfi0
    aaa new-model
    aaa authentication login default local none
    aaa session-id common
    resource policy
    clock timezone PCTime -5
    clock summer-time PCTime date Apr 6 2003 2:00 Oct 26 2003 2:00
    ip subnet-zero
    no ip source-route
    ip cef
    no ip dhcp use vrf connected
    ip dhcp excluded-address 10.10.10.1
    ip dhcp excluded-address 10.10.20.1
    ip dhcp pool sdm-pool1
       import all
       network 10.10.20.0 255.255.255.0
       default-router 10.10.20.1
       dns-server 192.168.2.244 8.8.8.8
    ip dhcp pool xbox
       host 10.10.20.20 255.255.255.0
       hardware-address 0100.1dd8.5b52.73 ieee802
       dns-server 192.168.2.251 4.2.2.2
    ip inspect name DEFAULT100 cuseeme
    ip inspect name DEFAULT100 ftp
    ip inspect name DEFAULT100 h323
    ip inspect name DEFAULT100 icmp
    ip inspect name DEFAULT100 netshow
    ip inspect name DEFAULT100 rcmd
    ip inspect name DEFAULT100 realaudio
    ip inspect name DEFAULT100 rtsp
    ip inspect name DEFAULT100 esmtp
    ip inspect name DEFAULT100 sqlnet
    ip inspect name DEFAULT100 streamworks
    ip inspect name DEFAULT100 tftp
    ip inspect name DEFAULT100 tcp
    ip inspect name DEFAULT100 udp
    ip inspect name DEFAULT100 vdolive
    ip tcp synwait-time 10
    no ip bootp server
    ip domain name yourdomain.com
    ip name-server 4.2.2.2
    ip ssh time-out 60
    ip ssh authentication-retries 2
    crypto pki trustpoint TP-self-signed-1816499983
    enrollment selfsigned
    subject-name cn=IOS-Self-Signed-Certificate-1816499983
    revocation-check none
    rsakeypair TP-self-signed-1816499983
    crypto pki certificate chain TP-self-signed-1816499983
    certificate self-signed 01
      30820252 308201BB A0030201 02020101 300D0609 2A864886 F70D0101 04050030
      31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274
      69666963 6174652D 31383136 34393939 3833301E 170D3038 30323039 32313436
      31395A17 0D323030 31303130 30303030 305A3031 312F302D 06035504 03132649
      4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 38313634
      39393938 3330819F 300D0609 2A864886 F70D0101 01050003 818D0030 81890281
      8100BD37 F594F5B4 726A60BA 2C99B43C 0DE6814A 17BB53C2 A2202828 D6AA7774
      7E3FF99D 7A6B06D8 C7A52D0E 2989CF78 F5E892C0 9A9DA783 1E6C8B59 6F8B01D7
      1E631226 D372D65B 6E72CA49 D572FEA6 26131F83 32F87678 4B13735F 383D9F65
      287E2CE3 46459CAD 582DB438 6E599885 BAE48719 4AC9EB73 8BC32114 C6C637C9
      80350203 010001A3 7A307830 0F060355 1D130101 FF040530 030101FF 30250603
      551D1104 1E301C82 1A63632D 66772D70 65746572 2E796F75 72646F6D 61696E2E
      636F6D30 1F060355 1D230418 30168014 391859D0 F5A8499D 8EF185B7 DC937161
      7F2B7CBA 301D0603 551D0E04 16041439 1859D0F5 A8499D8E F185B7DC 9371617F
      2B7CBA30 0D06092A 864886F7 0D010104 05000381 8100BC17 189FF9F1 01349085
      70E363E9 47AB7A9A 6F80498B D8F727DF 687CC37E 8FF3024F 30451A97 C4C81676
      C2FCA1A0 2B51D091 AA0B44E7 BA7FCA6A ED98CF5F 3EE60AD4 AB79DB09 BBE94F64
      C83FB22E 8936E561 C84AF542 DB4756E3 6EF31359 4210262A 43D2E1F7 15DD3E32
      15278156 9569D8BE 5EC38773 9A2EFB63 11C55FFD 93B4
      quit
    username user privilege 15 secret 5 $1$wVlg$THSMUBnF3f3A3o2Oh18xS/
    username ccadmin password 7 09774C051612111B180439
    crypto isakmp policy 1
    encr 3des
    authentication pre-share
    group 2
    crypto isakmp key 01234567890123456789 address 96.252.99.66 no-xauth
    crypto ipsec transform-set ESP-3DES-SHA1 esp-3des esp-sha-hmac
    crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto map SDM_CMAP_1 1 ipsec-isakmp
    description Tunnel
    set peer OFFICEVPN IP
    set transform-set ESP-3DES-SHA1
    match address 103
    bridge irb
    interface FastEthernet0
    interface FastEthernet1
    interface FastEthernet2
    interface FastEthernet3
    interface FastEthernet4
    description $FW_OUTSIDE$$ES_WAN$
    no ip address
    no ip redirects
    no ip unreachables
    no ip proxy-arp
    ip virtual-reassembly
    ip route-cache flow
    duplex auto
    speed auto
    pppoe enable group global
    pppoe-client dial-pool-number 1
    interface Dot11Radio0
    no ip address
    encryption mode ciphers tkip
    ssid my_home
        authentication open
        authentication key-management wpa
        guest-mode
        wpa-psk ascii 7 133E1413181F0138273D15
    speed basic-1.0 basic-2.0 basic-5.5 6.0 9.0 basic-11.0 12.0 18.0 24.0 36.0 48.0 54.0
    station-role root
    no dot11 extension aironet
    bridge-group 1
    bridge-group 1 spanning-disabled
    interface Vlan1
    description $ETH-SW-LAUNCH$$INTF-INFO-HWIC 4ESW$$FW_INSIDE$
    no ip address
    ip virtual-reassembly
    bridge-group 1
    interface Dialer0
    description $FW_OUTSIDE$
    ip address negotiated
    no ip redirects
    no ip unreachables
    no ip proxy-arp
    ip mtu 1452
    ip nat outside
    ip virtual-reassembly
    encapsulation ppp
    ip route-cache flow
    dialer pool 1
    dialer-group 1
    no cdp enable
    ppp authentication chap pap callin
    ppp chap hostname verizonfios
    ppp chap password 7 01050316521109012745411A
    ppp pap sent-username verizonfios password 7 120F00051B11030A2C222B3B
    crypto map SDM_CMAP_1
    interface BVI1
    description $ES_LAN$$FW_INSIDE$
    ip address 10.10.20.1 255.255.255.0
    ip access-group 100 in
    ip nat inside
    ip virtual-reassembly
    ip tcp adjust-mss 1200
    ip classless
    ip route 0.0.0.0 0.0.0.0 Dialer0
    ip http server
    ip http authentication local
    ip http secure-server
    ip http timeout-policy idle 60 life 86400 requests 10000
    ip nat inside source route-map SDM_RMAP_1 interface Dialer0 overload
    ip nat inside source static udp 10.10.20.20 88 interface Dialer0 88
    ip nat inside source static tcp 10.10.20.20 3074 interface Dialer0 3074
    ip nat inside source static udp 10.10.20.20 3074 interface Dialer0 3074
    logging 10.10.20.27
    access-list 1 remark INSIDE_IF=BVI1
    access-list 1 remark SDM_ACL Category=2
    access-list 1 permit 10.10.10.0 0.0.0.255
    access-list 1 permit 10.10.20.0 0.0.0.255
    access-list 100 remark auto generated by Cisco SDM Express firewall configuration
    access-list 100 remark SDM_ACL Category=1
    access-list 100 deny   ip host 255.255.255.255 any
    access-list 100 deny   ip 127.0.0.0 0.255.255.255 any
    access-list 100 permit ip any any
    access-list 103 remark SDM_ACL Category=4
    access-list 103 remark IPSec Rule
    access-list 103 permit ip 10.10.20.0 0.0.0.255 192.168.2.0 0.0.0.255
    access-list 103 permit ip 10.10.20.0 0.0.0.255 10.1.1.0 0.0.0.255
    access-list 110 deny   ip 10.10.20.0 0.0.0.255 10.1.1.0 0.0.0.255
    access-list 110 deny   ip 10.10.20.0 0.0.0.255 192.168.2.0 0.0.0.255
    access-list 110 permit ip 10.10.20.0 0.0.0.255 any
    access-list 120 remark Xbox
    access-list 120 permit tcp any eq 88 host 10.10.20.20 eq 88
    access-list 120 permit tcp any eq 3074 host 10.10.20.20 eq 3074
    access-list 120 permit udp any eq 3074 host 10.10.20.20 eq 3074
    dialer-list 1 protocol ip permit
    snmp-server community public RO
    no cdp run
    route-map SDM_RMAP_1 permit 1
    match ip address 110
    control-plane
    bridge 1 protocol ieee
    bridge 1 route ip
    banner login ^CAuthorized access only!
    Disconnect IMMEDIATELY if you are not an authorized user!^C
    line con 0
    no modem enable
    transport output telnet
    line aux 0
    transport output telnet
    line vty 0 4
    privilege level 15
    transport input telnet ssh
    scheduler max-task-time 5000
    scheduler allocate 4000 1000
    scheduler interval 500
    end

    see the option "client Isolation"in the Ap
    Posted by WebUser Anshul Rohilla

  • I have two apple id's because my hotmail account is no longer active. How can I delete the old one and use or update the new one?  Every time I try it won't allow me and now my iPad thinks there are two accounts and they are arguing with each other. Help!

    I have two apple id's because my hotmail account is no longer active. How can I delete the old one and use or update the new one?  Every time I try it won't allow me and now my iPad thinks there are two accounts and they are arguing with each other. Help!

    You can't merge accounts or copy content to a different account, so anything that you bought or downloaded via the old account is tied to that account - so any updates that those apps get you will only be able to download via that account. You can change which account is logged in on the iPad via Settings > Store

  • Two different projects spliced together over each other some how?

    Greetings everyone,
    I thought forum users might be interested in this one. I don't use the forum often so I don't know the history but has anybody ever had two different projects spliced together over each other some how? For example, I was tweaking a project and left it alone for several months. I came back today to work on it and clips from other projects were in it some how. Also the audio from the new clips were in the new project and overriding the existing project. Does anybody know how to restore the two and make them separate them without losing any info. from either one? The thing's a mess. I had 1 video track w/ some subtitles, a voice over, and some music in the background. Now it has two video clips, and two of everything else. It's crazy. I don't think it's a virus or anything. Nothing else on my machine is acting strange. I hope nobody else has experienced this yet can help.
    Peace

    If you have a backup external drive and Time Machine, I would suggest the following:
    Locate this specific clip in your Finder. Highlight it and rename it "old", or something similar.
    Launch Time Machine.
    Go back to a date in time when this clip was as you properly edited it.
    Again, make sure Finder is still open and highlight the clip.
    Click "restore" in Time Machine.
    Open iMovie and you will see your project as you had it all those months ago.
    This works for me when I have an iMovie project behaving badly.
    iMovie is a great application: but just like us, it has good days and bad days.
    Dan

  • How to get iPod 4 to play wifi-nice with my other wireless devices?

    Anyone has this problem? It's either iPod 4 or everything else!
    I just bought a new iPod 4 in additional to my iPod 3. I doesn't feel as good as my current iPod, but that's beside the point. My iPod 3 is still the favorite, even before I found the problem.
    All of my wireless devices at home work just fine:
    . -Motorola Wireless Modem (set to g, wep sec)
    . -iPod 3
    . -Apple Macbook
    . -Gateway laptop
    . -Lenovo laptop
    . -2 Sony laptops
    . -Nokia tablet
    . -HTC winmo phone
    *iPod 4 join my Motorolla wireless
    . +*ONLY IPOD 4 WORKS*
    . +The following wireless STOP working
    . -iPod 3
    . -Apple Macbook
    . -Gateway laptop
    . -Lenovo laptop
    . -2 Sony laptops
    . -Nokia tablet
    . -HTC winmo phone
    *Poweroff iPod 4
    . -All wireless devices work
    *Poweron iPod 4, Airplane on
    . -All wireless devices work
    *Poweron ipod 4, Airplane off
    . -All wireless devices work
    *Poweron iPod 4, but not join Motorola wireless
    . -All wireless devices work
    How to get iPod 4 to play wifi-nice with my other wireless devices?
    Message was edited by: iUser

    Thanks again for you help.  I finally got the music resting on my iPad moved into iTunes and then got the music resting on my iPod backed up in iTunes.  Final step was to get the music on my iPad onto my iPod without loading the iPod music onto the iPad.  I use my iPod strictly for music and don't want to clog my iPad with all those songs.   Anyway, long process but it worked.  Thanks again.

  • How do I Help Apple Care Stop Warring with Each Other and Fix the Problem with My iPhone that They Acknowledge Creating?

    How Do I Help Apple US & Apple Europe Stop Warring With Each Other And Fix The Problem They Created?
    PROBLEM
    Apple will not replace, as promised, the iPhone 5 (A1429 GSM model) that they gave me in London, UK, with an iPhone 5 (A1429 CDMA model).
    BACKGROUND
    My iPhone 5 (A1429 CDMA model) was purchased this year in September on an existing Verizon Wireless (VZW) line using an upgrade. The purchase took place in California and the product was picked up using Apple Personal Pickup through the Cerritos Apple Retail Store. I will refer to this phone at my "original" phone.
    The original phone was taken into the Apple Store Regent Street in London, England, UK on November 15, 2012. The reason for this visit was that my original phone's camera would not focus.
    The Apple Store Regent Street verified there was a hardware problem but was unable to replace the part.
    The Apple Store Regent Street had me call the US AppleCare. At first they denied support, but then a supervisor, name can be provided upon request, approved the replacement of my original phone with an iPhone 5 (A1429 GSM model) as a temporary solution until I got back in the US. And approved that the GSM model would be replaced with a CDMA model when I came back to the US. I will refer to the GSM model as the "replacement". They gave me the case number --------.
    The Apple Store Regent Street gave me the replacement and took the original. The first replacement did not work for reasons I do not understand. They switched out the replacement several times until they got one that worked on the T-Mobile nano SIM card that I had purchased in England, UK. Please refer to the repair IDs below to track the progression of phones given to me at the Apple Store Regent Street:
    Repair ID ----------- (Nov 15)
    Repair ID ----------- (Nov 16)
    Repair ID ----------- (Nov 16)
    The following case number was either created in the UK or France between November 15 to November 24. Case number -----------
    On November 19, 2012, I went to France and purchased an Orange nano SIM card. The phone would not activate like the first two repair IDs above.
    On November 24, 2012, I went to the Apple Store Les Quatre Temps. The Genius told me that my CDMA phone should not have been replaced with a GSM model in the UK and that this was clearly Apple's fault. They had me call the AppleCare UK.
    My issue was escalated to a tier 2 UK AppleCare agent. His contact information can be provided upon request. He gave me the case number -----------.
    The UK tier 2 agent became upset when he heard that I was calling from France and that the France Apple Store or France AppleCare were not helping me. He told me that my CDMA phone should not have been replaced with a GSM model in the UK and that this was clearly Apple's fault.
    The UK tier 2 agent said he was working with engineers to resolve my problem and would call me back the next day on November 25, 2012.
    While at the Apple Store Les Quatre Temps, a Genius switched the phone given to from repair ID ----------- with a new one that worked with the French nano SIM card.
    Also, while at the Apple Store Les Quatre Temps, I initiated a call with AppleCare US to get assistance because it seems that AppleCare UK was more upset that France was not addressing the issue rather than helping me. I have email correspondance with the AppleCare US representative.
    A Genius at the Apple Store Les Quatre Temps switched the replacement with a new GSM model that worked on the French SIM card but would not work if restored, received a software update, or had the SIM card changed. This is the same temporary solution I received from the Apple Store Regent Street in the UK.
    By this point, I had spent between 12-14 hours in Apple Store or on the phone with an AppleCare representative.
    Upon arriving in the US, I went to my local Apple Store Brea Mall to have the replacement switched with a CDMA model. They could not support me. He told me that my CDMA phone should not have been replaced with a GSM model in the UK and that this was clearly Apple's fault. My instructions were to call AppleCare US again.
    My call with AppleCare US was escalated to a Senior Advisor, name can be provided upon request, and they gave me the case number -----------. After being on the phone with him for over an hour, his instructions were to call the Apple Store Regent Street and tell them to review my latest notes. They were to process a refund for a full retail priced iPhone 5 64BG black onto my credit card so that I could use that money to buy a new iPhone 5 64GB black at the Apple Store Brea Mall to reoslve the problem.
    The Apple Store Regent Street did not process my refund. He, name can be provided upon request, told me that the AppleCare US did not do a good job reviewing my case, that they were incapable of getting to the bottom of it like they were, and instructed me to call AppleCare US and tell them to review this case number and this repair id. I asked if he read the notes from the AppleCare US Senior Advisor and he would not confirm nor deny. When I offered to give him the case number he accepted but it seemed like would do no good. Our call was disconnected. When I tried calling back the stores automated system was turned on and I could not get back through.
    Now I have the full retail price of an iPhone 5 64GB black CDMA on my credit card and Apple will not process the refund as they said they would.
    I've, at this point, spent between 14-16 hours at Apple Stores or on the phone with AppleCare representatives, and still do not have the problem resolved.
    SOLUTION
    AppleCare US and AppleCare Europe need to resolve their internal family issues without further impacting their customers.
    Apple is to process a refund to my credit card for the cost of a full retail priced iPhone 5 64GB black.
    DESIRED OUTCOMES
    I have an iPhone 5 (A1429 CDMA model) that works in the US on VZW as it did before I received the replacement phone in the UK.
    Apple covers the cost of the solution because I did not create the problem.
    Apple resolves their internal issue without costing me more time, energy, or money.
    This becomes a case study for AppleCare so that future customers are not impacted like I have been by their support system.
    Does anyone have recommendations for me?
    Thank you!
    <Edited by Host>

    Thanks, but I've been on the phone with AppleCare US (where I am and live) and AppleCare UK. They continue bouncing me back and forth without helping resolve the problem.
    Perhaps someones knows how to further escalate the issue at Apple?

  • For WRT1900AC, how do the 4 antennae work with each other?

    I am curious how the 4 antennae work with each other.  Does a wifi client need to communicate with all 4 antennae?  Or just 1 (or 2)?  I am curious, as I would like to move 1 or 2 of the antennae via proper cable to expand the coverage area.  

    bigdave240 wrote:
    spec on that cable is 10.8dB per 100 feet. I would think that the router would still have a problem with that. Not sure how long the OP was going to make it but with the beaming technology i would think it would throw it off balance.
    My maximum is 60ft when using LMR400 for standard wireless applications. I have done that many many times.
    These days they typically integrate the higher gain antenna right into the bridge housing or mount the outdoor bridge right next to the antenna.
    Please remember to Kudo those that help you.
    Linksys
    Communities Technical Support

Maybe you are looking for

  • Read a csv file, fill a dynamic table and insert into a standard table

    Hi everybody, I have a problem here and I need your help: I have to read a csv file and insert the data of it into a standard table. 1 - On the parameter scrreen I have to indicate the standard table and the csv file. 2 - I need to create a dynamic t

  • Migration of downpayment amount

    Hi Friends, We are currently working in a project which involves change in the functional currency of the company code, wherein we are setting up a new company code similar to the existing one, with the changed currency. Under the same we need to mig

  • MM Certification syllabus and Course Content of MM

    Hi,   Could u pls send me the SAP 4.7 MM Certification syllabus  and Course Content of MM. I need urgently. Can anyone help me. Thanks & Regards, Leena

  • Is it possible to do total integration only with bpel or esb by notuse both

    I am doing simple integration. For these i am using bpel for orchestration and ESB for Routing and Transformation. But i am getting these things done with by using bpel without esb also.then why wat is the need for going to use esb? Can anyone please

  • Renaming in LR 5

    If my original file is a .nef file and I process it and save as a .jpg can both files have the same name?