Roaming between two WiFi access points fails

Hi...
I just bought a Hawking WiFi range extender...a device that acts like a second wireless access point for rooms that are far from your wireless router. It's also known as a repeater. It has the same SSID (network name) as the one set up by the router.
You are supposed to be able to move about the house and you will connect to whichever device has the higher signal strength, transparently, with no hiccups, like moving your cell phone from one cell antenna to another.
The setup works fine with my Dell laptop, but not with my MacBook Pro or my iPad. When I change "zones", the Network locks up. This is repeatable and consistent.
I've heard rumors about Apple product difficulties with this "WiFi roaming."
Can anyone help?
Thx
Steve

I've been using a roaming setup in my home for years.  The company I work for has building wide WiFi roaming setup with multiple WiFi access points on each floor.  At home and at work, I frequently move my MacBook between access points without loosing things like my VPN, Screen Sharing, File Sharing, ssh terminal sessions, etc....
But 3rd party networking hardware has not always been well tested against Apple products.  Many times 3rd party networking vendors test against some version of Windows and then ship it.  Sometimes the 3rd party vendor offers a firmware update that corrects issues with Apple products.
At home I have Apple Airport Extreme base stations for my roaming setup.  At work, the company is using Cisco commercial WiFi access points.
A roaming setup needs to have all WiFi devices on the same network "Subnet".  That means a 2nd WiFi base station cannot act as a router, but must be just a bridge on the existing router's subnet (generally that means it cannot be offering DHCP services nor NAT services).
The 2nd WiFi base station must have the same SSID (as you said you setup).
And it must have the same security password using the same encryption algorithm (WPA2 preferred from a security stand point).  You did not mention this, but I'll assume you did this as well.

Similar Messages

  • Wifi access point not allow to stream a video between two machnies in LAN

    Does some one ever encountered problem like this?
    I have a wifi accesspoint runs on my computer . And my computer is in a local area network(10.16.71.26). And I am streaming a video over rtp using JMF from another computer (10.16.71.27). This works fine when the wifi access point in my local machine is disabled. When it is enabled the video streaming not works.
    I have tried with many forums but still didn't manage to find an answer. So please be kind enough to put some light on this problem or at least direct me to a place where I can find the answer. Hope at least some of u have faced a problem like this.
    Thank You
    these are my network configs, do not know whether this helps to make a suggestion
    Machine IP
    IP : 10.16.71.26
    subnet mask : 255.0.0.0
    Default Gateway : 192.168.16.1
    wifi connection
    IP : 192.168.0.1
    subnet mask : 255.255.255.0
    Default Gateway : not set
    Allowed wifi connection to access internet through LAN connection. I am streaming the video from  ip 10.16.71.27Edited by: deshan on Jul 29, 2009 12:54 AM

    You'd probably get better help with this issue on the networking forum...
    Can you ping the other computer via it's 10.x IP when the wifi AP is on?

  • IOS 4.2.1 breaks web-based authentication to wifi access points

    Whenever I tried to access the *wifi access points* I use more often *whose authentication is web-based*, like the one at my public library or at my office, although I input my username and password correctly, I am always bounced back to the login form.
    Before iOS 4.2.1 I know that there was a problem of this sort already, related to *some incompatibility between Safari's auto-fill features and the access points*, that could be solved by simply turning off auto-fill, and I did that. But know *it looks like the problem got to a new level of subtlety*.
    Interestingly, *everything worked nicely while I was using the Gold Master version of iOS 4.2.0* that never made it to release, so the solution has to be found among the differences between 4.2.0 and 4.2.1, if you're an Apple engineer reading this.
    Can you help? Any idea or trick to try that I didn't already? Thanks!
    Giacecco

    Hi Richard,
    You mentioned that 'Apple put the AirPrint spec out there for all printer makers'. I've been looking around but I haven't found any spec. Where did you find it?
    Do printer makers have to buy a license in order to be able to advertise that they've implemented the AirPrint protocol? Is there maybe an Apple review process in place?
    TIA
    Geert

  • Script to fight buggy WiFi access points

    This is a script that implements automatic reconnect to WiFi access points. It's called hold-connect. It uses netcfg as backend, so any other connection types are also supported (like PPP link). It had been tested every day for 2 months with a buggy public wifi router (its DHCP server quite often failed).
    Features:
    - Checking of internet connection via host pinging with 1 packet;
    - Reconnecting if link failure is detected;
    - Informative output;
    - Customizable hostname, check interval and retry count.
    Dependencies:
    - bash;
    - netcfg 2.5.4;
    - optional: configured sudo. To run from root, all "sudo" strings can be safely removed.
    Syntax is simple:  hold-connect netcfg_profile_name . Also some parameters can be customized inside script (follow comments). Therefore it's advised to keep script file somewhere like /home/user and place a symlink to it in /usr/bin.
    Usage: start and enjoy! To stop it, simply kill it with ^C or kill -15.
    hold-connect.sh:
    #!/bin/bash
    # hold-connect - simple script to hold wifi link up in hard conditions.
    # Version: 060710
    # USAGE:
    # hold-connect profile_name
    # Profile name is a valid netcfg profile used to reconnect.
    # Return values:
    # 0 - happens only when script runs more than infinite time :-)
    # 1 - error in arguments
    # 2 - error while connecting
    # Adjustable constants are here:
    TEST_URL="qrz.ru" # URL to check via pinging
    CHECK_INTERVAL=30 # Network status checking interval, in seconds (default: 30)
    RETRY_LIMIT=3 # Maximum number of retries (default: 3)
    connect()
    sudo netcfg down $CURRENT_PROFILE > /dev/null 2>&1
    RETRY_COUNT=0
    CONN_STAT="" # Trigger the cycle at start
    while [ -z "`echo $CONN_STAT | grep DONE`" ]; do
    if [ -n "$CONN_STAT" ]; then
    echo "[`date +%H:%M:%S`] Failed to connect using $CURRENT_PROFILE, trying again"
    fi
    CONN_STAT="`sudo netcfg $CURRENT_PROFILE`"
    if [ -n "`echo $CONN_STAT | grep "Association Failed"`" ]; then
    if [ $RETRY_COUNT != $RETRY_LIMIT ]; then
    echo "Access point unreachable"
    RETRY_COUNT=$((RETRY_COUNT+1))
    else
    echo "More than $RETRY_LIMIT sequental errors, exiting"
    exit 2
    fi
    else RETRY_COUNT=0; # reset if error is not sequental
    fi
    sleep 2
    done
    # Check if there's no parameters
    if [ -z $1 ]; then
    echo "hold-connect: no profile specified"
    echo "Usage:"
    echo " hold-connect profile_name"
    exit 1
    fi
    # Check if profile exists
    if [ -z `sudo netcfg -l | grep -x $1` ]; then
    echo "hold-connect: profile $1 does not exist"
    exit 1
    fi
    CURRENT_PROFILE=$1
    echo "hold-connect 060710, using profile $CURRENT_PROFILE and test URL $TEST_URL"
    while [ "1" ]; do
    while [ -z "`ping -c 1 $TEST_URL 2> /dev/null`" ]; do # to be sure that netcfg isn't wrong
    echo "No connect to $TEST_URL, raising $CURRENT_PROFILE"
    connect
    done
    echo "[`date +%H:%M:%S`] *** Connection to $TEST_URL is up"
    sleep $CHECK_INTERVAL
    done

    Ignore my above post. It is just plane stupid and you cant stop or restart  the daemon.
    Heres howit should look like:
    /usr/bin/hold-connect:
    #!/bin/bash
    # hold-connect - simple script to hold wifi link up in hard conditions.
    # Version: 060710
    # USAGE:
    # hold-connect profile_name
    # Profile name is a valid netcfg profile used to reconnect.
    # Return values:
    # 0 - happens only when script runs more than infinite time :-)
    # 1 - error in arguments
    # 2 - error while connecting
    # Adjustable constants are here:
    TEST_URL="qrz.ru" # URL to check via pinging
    CHECK_INTERVAL=30 # Network status checking interval, in seconds (default: 30)
    RETRY_LIMIT=3 # Maximum number of retries (default: 3)
    connect()
    sudo netcfg down $CURRENT_PROFILE > /dev/null 2>&1
    RETRY_COUNT=0
    CONN_STAT="" # Trigger the cycle at start
    while [ -z "`echo $CONN_STAT | grep DONE`" ]; do
    if [ -n "$CONN_STAT" ]; then
    echo "[`date +%H:%M:%S`] Failed to connect using $CURRENT_PROFILE, trying again" >> /var/log/hold-connect.log
    fi
    CONN_STAT="`sudo netcfg $CURRENT_PROFILE`"
    if [ -n "`echo $CONN_STAT | grep "Association Failed"`" ]; then
    if [ $RETRY_COUNT != $RETRY_LIMIT ]; then
    echo "Access point unreachable" >> /var/log/hold-connect.log
    RETRY_COUNT=$((RETRY_COUNT+1))
    else
    echo "More than $RETRY_LIMIT sequental errors, exiting" >> /var/log/hold-connect.log
    exit 2
    fi
    else RETRY_COUNT=0; # reset if error is not sequental
    fi
    sleep 2
    done
    # Check if there's no parameters
    if [ -z $1 ]; then
    echo "hold-connect: no profile specified"
    echo "Usage:"
    echo " hold-connect profile_name"
    exit 1
    fi
    # Check if profile exists
    if [ -z `sudo netcfg -l | grep -x $1` ]; then
    echo "hold-connect: profile $1 does not exist"
    exit 1
    fi
    CURRENT_PROFILE=$1
    echo "hold-connect 060710, using profile $CURRENT_PROFILE and test URL $TEST_URL" >> /var/log/hold-connect.log
    while [ "1" ]; do
    while [ -z "`ping -c 1 $TEST_URL 2> /dev/null`" ]; do # to be sure that netcfg isn't wrong
    echo "No connect to $TEST_URL, raising $CURRENT_PROFILE" >> /var/log/hold-connect.log
    connect
    done
    echo "[`date +%H:%M:%S`] *** Connection to $TEST_URL is up" >> /var/log/hold-connect.log
    sleep $CHECK_INTERVAL
    done
    /etc/rc.d/hold-connect:
    #!/bin/bash
    . /etc/rc.conf
    . /etc/rc.d/functions
    CURRENT_PROFILE="korvmedmos" # Network profile to use
    DIE=`ps alx | grep hold-connect | grep -v "grep" | awk '{ print $3 }'`
    case "$1" in
    start)
    stat_busy "Starting hold-connect"
    /usr/bin/hold-connect $CURRENT_PROFILE & > /dev/null 2>&1
    if [ $? -gt 0 ]; then
    stat_fail
    else
    add_daemon hold-connect
    stat_done
    fi
    stop)
    stat_busy "Stopping hold-connect"
    rm_daemon ntpdate
    stat_done
    kill $DIE
    restart)
    $0 stop
    sleep 1
    $0 start
    echo "usage: $0 {start|stop|restart}"
    esac
    I need more brainzzz. Please give!
    Last edited by whacath (2010-09-16 18:11:16)

  • Can an Aironet WiFi Access Point bridge multiple internal VLANs?

    I have Cisco Aironet 2700e access points.  Historically they were configured with a single SSID on both radios with WEP 128bit security.
    I now need to add new WiFi devices to the network that have limited flexibility.  They must be associated only with a specific radio (2.4ghz or 5ghz) and WPA2PSK security.
    My thought was to create two additional SSIDs on the 2700 access points, one for 2.4gz WPA2PSK and the other for 5ghz WPA2PSK.  The pre-existing SSID will continue to use 128bit WEP.  To do that  I need to use VLANs on the 2700e.
    I have no other VLANS on my network.  I only need VLANs on the 2700e because I have different physical devices that support different WiFi frequencies and security options.  I don't need to segment the network.
    How do I bridge the VLANs on the 2700e?
    Devices that connect to the non-native VLANs appear to be isolated from the rest of the network (as I would suspect with VLANs).  But that's not what I want .  I'm only using VLANs because I need multiple SSIDs, and I need multiple SSIDs because I have different physical devices that want different WiFI access point configurations.  I can't seem to find any way to configure the 2700e to bridge the VLANs for the multiple SSIDs.
    Any guidance would be appreciated.  I could buy additional access points but that seems to be defeating the purpose of having a device like the 2700e.
    Any help would be appreciated.
    Thank you.

    I made these changes to the example here:
    https://supportforums.cisco.com/document/55561/multiple-ssid-multiple-vlans-configuration-example-cisco-aironet-aps
    and it seems to be working.  (By "working" I mean that I can now ping to/from devices connected on different SSIDs.) I had to make these changes from the CLI.  There does not seem to be a way to make these changes from the GUI.  Is that correct? If there is a way to make these changes from the GUI please let me know.
    The changes I made were to make the sub interface for Dot11 radio 0 on the VLANs part of bridge-group 1.  So assuming the config in the example:
    ap(config)#interface Dot11Radio0.2
    ap(config-subif)#no bridge-group 2
    ap(config-subif)#bridge-group 1
    ap(config-subif)#exit
    ap(config)#interface Dot11Radio0.3
    ap(config-subif)#no bridge-group 3
    ap(config-subif)#bridge-group 1
    ap(config-subif)#exit
    I did not change the bridge group on the Ethernet interface.
    Questions:
    1. Did I create any new problems making this change? It seems to work, but am I going to get myself in trouble somewhere else?  Intuitively it makes sense to me: the VLANs are now part of the same bridge group (1, the native VLAN).  So all traffic should be bridged together.  Correct?
    2. I didn't change the Ethernet sub interfaces.  I don't seem to need to make that change.  I also don't like things sitting out there that I don't understand.  Should I do anything to clean up the Ethernet interfaces?
    3. The original configuration was made entirely from the GUI.  This change needs to be made from the CLI.  Can it be done from the GUI?  I can't seem to find a way to change bridge groups for a sub interface from the GUI. It worried me that it can't be done from the GUI.
    Thank you.
    Larry

  • Software wifi access point: hostapd freezes system

    I have some scripts that set up a wifi access point through the laptop's onboard wifi card. Since a few weeks ago the system now freezes when running the hostapd command and I have to power off by holding down the power button:
    Here is the hostapd configuration file (taken from the wiki):
    ssid=foo
    wpa_passphrase=blahblah
    interface=wlan0
    #bridge=br0
    auth_algs=3
    # setting this appears to be the problem
    channel=7
    driver=nl80211
    hw_mode=g
    logger_stdout=-1
    logger_stdout_level=2
    max_num_sta=5
    rsn_pairwise=CCMP
    wpa=2
    wpa_key_mgmt=WPA-PSK
    wpa_pairwise=TKIP CCMP
    I am running the following command
    hostapd -d -t -K /path/to/aforementioned/hostapd.conf
    The onboard wifi adapter is this well-known POS:
    Realtek RTL8188CE 802.11b/g/n WiFi Adapter
    The adapter works for regular connections. Tweaking the hostapd.conf file has led me to conclude that the channel parameter is the problem. If I omit it, hostapd simply fails to establish an AP but exits. If I include it, it completely freezes all system input.
    Conky seems to keep updating in the background but journalctl -f freezes. The output from hostapd in "-d" and "--dd" mode flies past too quickly to follow and then infinitely prints blank lines.
    Up until a few weeks ago this worked without a hitch. Given that this interrupts user input I wonder if it might be a hardware problem (dying card?)  but I don't know how to check that. Again, connecting to wifi networks works without any issue (that I have noticed). Could this be related to a recent kernel upgrade?
    I'm going to try redirecting the output of hostapd to a file and then using the "magic" sysrq key to sync it before killing the system. If that works I'll post it. Until then, any suggestions of how to debug this would be appreciated.

    I have some scripts that set up a wifi access point through the laptop's onboard wifi card. Since a few weeks ago the system now freezes when running the hostapd command and I have to power off by holding down the power button:
    Here is the hostapd configuration file (taken from the wiki):
    ssid=foo
    wpa_passphrase=blahblah
    interface=wlan0
    #bridge=br0
    auth_algs=3
    # setting this appears to be the problem
    channel=7
    driver=nl80211
    hw_mode=g
    logger_stdout=-1
    logger_stdout_level=2
    max_num_sta=5
    rsn_pairwise=CCMP
    wpa=2
    wpa_key_mgmt=WPA-PSK
    wpa_pairwise=TKIP CCMP
    I am running the following command
    hostapd -d -t -K /path/to/aforementioned/hostapd.conf
    The onboard wifi adapter is this well-known POS:
    Realtek RTL8188CE 802.11b/g/n WiFi Adapter
    The adapter works for regular connections. Tweaking the hostapd.conf file has led me to conclude that the channel parameter is the problem. If I omit it, hostapd simply fails to establish an AP but exits. If I include it, it completely freezes all system input.
    Conky seems to keep updating in the background but journalctl -f freezes. The output from hostapd in "-d" and "--dd" mode flies past too quickly to follow and then infinitely prints blank lines.
    Up until a few weeks ago this worked without a hitch. Given that this interrupts user input I wonder if it might be a hardware problem (dying card?)  but I don't know how to check that. Again, connecting to wifi networks works without any issue (that I have noticed). Could this be related to a recent kernel upgrade?
    I'm going to try redirecting the output of hostapd to a file and then using the "magic" sysrq key to sync it before killing the system. If that works I'll post it. Until then, any suggestions of how to debug this would be appreciated.

  • Can't HP Officejet pro 8100 do wifi access point?

    Yesterday my HP Officejet pro 8100 arrived and I try to connect via wifi. I thinked that It need a infrastructure access point to print via wifi.
    When I powered on the printer I osserved that It create an access point autonomously with SSID: HP-Setup-7A-Officejet Pro, with IPv4 address server, etc...
    I was very happy and I printed a page with my smartphone samsung s4 connected directly with printer access point (not wifi direct but standard wifi).
    Today no changed occurred but I can't use printer with its own access point, but only with an external wifi access point.
    Someone can help me, please? It could be an hardware problem?
    Thanks,
    Luca
    P.S. in web server I checked that "access point connectivity" (Punto di accesso wireless connettività in Italian) is checked.
    This question was solved.
    View Solution.

    Hello lucait
    To print via WiFi you need to have a wireless router setup. Once you have the wireless router setup correctly you will have a SSID and Wepkey that will enable you to add devices to your network. The network will allow all your devices to communicate not just with each other but with the internet. At the moment your printer was not put in a network so instead of broadcasting on a network it is broadcasting on it's own network called HP-Setup-7A-Officejet Pro which is only good for a short period of time to allow you to setup your wireless. I am going to assume you have a wireless network and you are just needing assistance getting the printer setup on that network.
    To set your printer up on a network you will need to reset your network defaults so your printer begins to broadcast that HP-Setup-7A-Officejet Pro network again. You can do this buy following the steps on the HP Support document Resetting the Network Settings. Once you have done this you can begin to install the software that came with your printer on your computer. You want to set the printer up wirelessly when the option arrives. The software should configure your printers wireless for you and put it on the network. Once completed you should be able to access your printer from all your devices as long as they are on the network. 
    I hope this helps resolve your wireless issue. Thank you for posting on the HP Forums. Have a great day! 
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • How can I turn mac mini into wifi access point for iPhone?

    Hi,
    I do not have a wifi router.
    I want my iPhone to be able to use my broadband internet instead of the slow EDGE internet.
    The simple solution would be to buy a wifi router whih would enable my iPhone to access the wifi home network.
    *What if I could turn the mac mini into a wifi access point?* That would save me from the hassle of buying a wifi router.
    Any idea how to do this??
    Message was edited by: d00by666

    I did this.
    I think I am doing something wrong. I am doing something wrong in this setting *from ethernet to airport*.
    see attached screenshot.
    To start Internet sharing on a computer using Mac OS X:
    1. Open System Preferences, click Sharing, and then click Internet.
    2. Select how you would like to share your Internet connection, and then click Start. You
    can choose to share your Internet connection with AirPort-enabled computers,
    computers with built-in Ethernet, or both.
    Note:
    If your Internet connection and your local network use the same port (built-in
    Ethernet, for example), contact your ISP before you turn on Internet sharing. In some
    cases (if you use a cable modem, for example) you might unintentionally affect the
    network settings of other ISP customers, and your ISP might terminate your service to
    prevent you from disrupting its network.
    3. If you want to share your Internet connection with computers using AirPort, click
    AirPort Options to give your network a name and password.
    ----------------------------------------------------

  • A tech company just set up a wifi network in my house and does not use my existing TC; how do I get it in the network to serve as backup for my iMac? (I don't need it as a wifi access point anymore)

    a tech company just set up a wifi network in my house and does not use my existing TC; how do I get it in the network to serve as backup for my iMac? (I don't need it as a wifi access point anymore) thanks

    Just bridge the TC and plug it by ethernet into the main router.
    Bridge in v5 airport utility.
    In v6 it is under network.. change it from DHCP and NAT to Off bridge mode.
    Turn off the wireless.

  • I already have a WiFi access point. Can I still use a time capsule?

    I already have a WiFi access point.  Reading about the Time Capsule, it appears that it is also an access point.  If so, ca I still use it in conjuction with my existing WiFi?

    Welcome to the Apple Support Communities
    Of course. With the Time Capsule, you can still use the network of your old router or you can use the network of the Time Capsule (I recommend you to use the network of the Time Capsule unless your router is much better). Note that the Time Capsule is a router with a hard drive inside, so it's normal that you can use it as a router

  • How to delete wifi access point on E7 - mails won'...

    I have E7 with symbian anna. A while ago I had to restart my home wifi (due to storm) and during that process a new wifi access point (wlan(01) was created on my phone. After that - as far as I have now understood - my phone stopped syncronising gmails altogether. Also in my provider's network (outside wifi, elisa). In order for my phone to sync emails, i need to reboot it (or just turn it off and on, no need to get the three vibrations when turning off).
    Question 1) How do I delete this unncecssary wifi access point on E7? I was able to do it easily on my N900 but not on this E7.
    Question 2) Is it likely that the reason my phone stopped syncin gmails is related to this wifi issue? Pressing send & receive won't help, either, nothing happens. I have had this E7 for 1.5 months now, Symbian Anna I've had for 10 days and this problem started 5 days ago. Before that the mails flew in very nicely.

    To remove access poit, go to settings>connectivity>settings>Destination>Internet>long hold access point and select delete.
    For Gmail, don't use it, but if you remove/delete mailbox and then set it up again it should work fine, also heard that during set up if you reject terms and conditions and set up manually it works better ?
    http://asimag.wordpress.com/2007/06/22/how-to-configure-gmail-account-on-your-n95n73/
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Roaming between two extreme

    with an IPad 1..How to roam between two Apple expreme without loosing connection?
    Thanks

    See the second message of this thread for instructions on creating a "roaming network":
    https://discussions.apple.com/thread/2273124?threadID=2273124

  • Specific WiFi access point HTTP proxy always turning off?

    Hello,
    My corporate - issued iPhone 4S which is currently sporting 6.1.1 has a weird issue - the corporate WiFi access point HTTP proxy setting always defaults to Off after trying to set it up with a Auto setting and entering a URL to our company's PAC file. My colleagues do not have the same issue - they are able to setup HTTP Proxy to Auto and enter the URL to the PAC file. I tried this with other access points (non-corporate) and it works fine. Is this something specific to the WiFi profile pushed to my device? I've tried contacting our company's IT personnel in charge and they weren't able to give me an answer. Hoping someone here can. Thanks in advance!
    Cheers

    To remove access poit, go to settings>connectivity>settings>Destination>Internet>long hold access point and select delete.
    For Gmail, don't use it, but if you remove/delete mailbox and then set it up again it should work fine, also heard that during set up if you reject terms and conditions and set up manually it works better ?
    http://asimag.wordpress.com/2007/06/22/how-to-configure-gmail-account-on-your-n95n73/
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Showing duplicate wifi access point in N82

    Hi,
    i have a weird issue with my N82 wifi, hopefully i can explain it correctly..
    my problem is when i connect to a new wifi, it will always shown 2 access point in the wifi list.. what's weird is that the duplicate wifi access point name is the last wifi point i connected... and if i remove one of the access point from the list, both will be gone..
    so for example in steps:
    1) i first connect to 'ABC'
    2) i remove 'ABC'
    3) i connect to 'CDE'
    result is in access point list, it will show
    'ABC'
    'CDE'
    if i selecet 'ABC', it's actually connects to 'CDE'.. and if i delete either one of them, both will be gone.
    4) i delete 'CDE' (both are now gone)
    5) i connect to 'CDE' again
    the result is it will shown:
    'CDE'
    'CDE (1)'
    again, if i delete either one of them, both will be gone.
    so any idea? WIFI still works, but a bit agnoring..
    thanks in advance

    If I understand the situation, with an Ethernet connection for the Airport the wifi component is free to act as an access point.  But one Airport device cannot act as a wifi receiver and as an an access point.
    That is correct. A single Express in this situation would act as a Wi-Fi "receiver," but will only provide an active Ethernet connection for wired clients. You will need a second one to create the wireless network.
    Again, this is because you typically won't have administrator access to the RV park's wireless router AND, most likely if you did, it wouldn't be another Apple router. The option I provided should get you around both of those facts ... and should work at other locations with the same wireless setup.

  • Canon 70D, Wifi access point with Android

    I bought a Canon 70D this week and I cannot get the Wifi access point option to work with my Nexus 7 2013 or my Samsung Galaxy S3. I was able to connect my 70D to my Wifi network and see the device that way. But when on the road you won't always have access to a local LAN. When I try the access point mode both devices never see the 70D.
    I rebooted both Android devices after installing the EOS app.  I also get the camera in access point mode first and then launch the EOS app.  I let the app sit for several minutes and never finds the 70D. 
    Any tips?

    Hi gquiring!
    Thanks for posting.
    When you go through the setup process on the camera, are you selecting [Easy Connection] ot [Manual Connection]?  If using [Manual Connection], try using the [Easy Connection] instead.
    When prompted by the camera to connect to it with your smartphone, do you see the SSID of the camera show up in the list of networks you can connect to on your smartphone?
    If this is a time sensitive-matter, additional support options are available at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

Maybe you are looking for

  • Moving a parent in a Dimension using a rules file

    I would like too move a parent in one of my dimensions to the bottom of that Dimension using a rule file Please advise

  • Can't compile the HTML-Java Wizard generated file.

    I have created a java file using HTML-Java Wizard. when compiling the java file it gives an error method getDeclaredMethod(java.lang.String,null) not found in class in java.lang.class can anyone tell me how can I remove the error ? waiting for your e

  • Active mode multiple selection in dialog screen

    in my dialog screen i had multiple selection option button by using the below function module. CALL FUNCTION 'K_CMPERS_MULTIPLE_SELECTION'   EXPORTING     P_FIELDTYPE         = 'R'     P_FIELDNAME         = 'MATNR'     P_TABLENAME         = 'MARA'  

  • How do I get a 10-band equalizer going in Quicktime?

    Is there a way to get a true editable equalizer going in Quicktime like there is in iTunes?

  • IOS 5 Bricks First-Gen iPad

    Keyboard-based input on any website or app is useless as it causes the app to freeze and then crash. I thought my father was insane over his frustration; but having now researched the issue myself I see that it exists and is widespread. The iOS 5 upd