Netctl connects to access points I've never seen before

On my laptop using netcl and auto switching profiles as described in https://wiki.archlinux.org/index.php/Netctl.
Recently, and more than once, I'm connected at a public cafe and I'm suddenly no longer able to reach the internet.
When I investigate, I find that I'm no longer connected to the cafe's wifi, but I am connected to some other essid that I've never seen before.  This is disconcerting for possible security reasons but also annoying to get disconnected in the middle of whatever I'm doing.
The essids that my box connects to I've never seen before.  (I'm assuming the come from nearby computers.)  There is no corresponding profile in /etc/netctl.
To work around the problem, I run
sudo systemctl stop [email protected]; sudo wifi-menu
then reconnect to the access point I was originally connected to.
  I really don't want netctl-auto to change a connection that is working.  How can I prevent this from ever happening?

That file has a long list of every wireless router I've connected to!  I didn't know that was there.  It duplicates a lot of information thats in /etc/netctl/...   It has passwords, too.  I'm not going to post it here.
But I don't see the mysterious routers in that file.  The ones I find myself connected to, that I never connected to myself.
... Looking over that file again, I see a strange entry:
network={
key_mgmt=NONE
ssid=""
id_str="wlp3s0-none"
I'm going to delete that.  I believe it comes from a time I connected to an essid without a name.  But I'm not sure if that's the culprit.
Last edited by Dave Cohen (2014-02-14 17:03:32)

Similar Messages

  • Connected to access point but internet cannot be found????

    router was working fine until it wasnt finding internet one nite and then it was unplugged so internet could be used on main computer and now when i try to plug everything back up to get wireless internet, it still says connected to access point but internet not found dont have a clue what is going on!?!

    I think you were connecting to wireless router to access Internet, you need to have proper configuration on wireless router and wireless adapter to make it work, take a look on this wireless network setup tutorial to help you.

  • I cant update my mac twitter app because it says i bought it with an apple id that i have never seen before. How do i update it?

    I cant update my mac twitter app because it says i bought it with an apple id that i have never seen before. How do i update it?

    Hi,
    Your best bet at this point then is to contact iTunes Support and get them to straighten this out for you:
    https://expresslane.apple.com/Issues.action
    Select the options that best apply to your issue. You will have a chance to provide a written description before you submit. iTunes Support will get back to you via email, usually within 24 hours. Be sure to check your Junk/Spam email folder if you don't hear back by then.
    They should be able to sort it out for you...
    Good luck!
    Cheers,
    GB

  • HT201401 My iphone 4s turned off properly but when I went to put it back the apple icon came on and then an image I have never seen before of a ubs pointiing towards the word itunes in a circle.  And the phone no longer goes beyond this message.  meltdown

    My phone started acting up and I noticed my text messages were not being sent.  So I turned my iphone off.  My iphone 4s turned off properly but when I went to put it back the apple icon came on and then an image I have never seen before of a UBS pointiing towards the word itunes in a circle.  And the phone no longer goes beyond this message.  I try to turn it off and on again and same message over and over.  If I hit the any button on the phone nothing happens. Does anyone know what this means or seen this itunes messaging ?  meltdown? Please help.

    Hello Raja,
    Thank you so much for your response.  I had these photos backed up on iCloud but, had I not, its good to have an alternate solution as the one you suggested.  Actually, I went to the Apple store today and yes, you are absolutely correct Restoring in iTunes will result in permanent loss of photos unless backed up somewhere such as iCloud or other solution.  Well, what they did was restore the phone in itunes ( I did not have iTunes downloaded to my computer which is why it did not work when I went to do it myself, I needed to go to the iTunes site and go to the download iTunes button because my windows based HP laptop does not come with itunes already downloaded).  This retoration process took a while and I was forced to upgrade to the latest 7.1 iOS software which I was not too happy about -sometimes you like the way things work now :-)  Anyhow, they said this restoration request happens as a result of a software update (which I was NOT in progress of an update or doing an update) or sometimes when you remove the power cable too quickly from the iphone (which I do not recall doing this either but...). Since I had backed up on iCloud all of the photos were downloaded back on my iphone 4s.  Best of all was that my phone was back up and runnning and there was NO CHARGE at the apple store for this service of restoring my phone.  Well, I just wanted to share the results and I appreciate all the responses and support I received.  Thank you kindly.

  • API design style I've never seen before - would you use it?

    I was Googling for examples of a "Bean Comparator" and came across this strange API design I've never seen before (is it just me?). I'm curious if you have seen it before and what you think about it?
    [http://cojen.sourceforge.net/apidocs/org/cojen/util/BeanComparator.html]
    The basic problem is to create a Comparator that can sort on multiple fields within a given class.
    First, a more traditional(?) API design might be something like:
    Constructor Summary:
         BeanComparator(Class theClass);
    Method Summary:
         addSortField(String fieldName, boolean isAscending, boolean isSortNullHigh);
         addSortField(String fieldName); // convenience method with default ascending and sortNullHigh
    So you could create a BeanComparator that sorts on multiple fields by using:
    BeanComparator bc = new BeanComparator(SomeClass.class);
    bc.addSortField("field1");
    bc.addSortField("field2", false, true);
    bc.addSortField("field3", true, false);Finally, without listing the API, the equivalent code for the "strange API design" would be:
    Comparator c = BeanComparator.forClass(SomeClass.class)
         .orderBy("field1")
         .orderBy("field2")
         .reverse();
         .orderBy("field3")
         .nullLow();So in this case:
    a) there is no explicit "add" method to add a new sort field. The "orderBy" is an implicit add.
    b) the reverse() and nullLow() methods only apply to the current orderBy field.
    c) the creation of the class is "sequential" in nature as each method needs to be invoked in the proper order
    In some ways this seems to simplify the API because you don't need lots of convenience methods or your don't need to use the full method and then restate the default values.
    Also you can add new sort options to the API without affecting any existing methods.
    What do you think of this type of API design?
    Have you ever used it before?
    Would you consider using this design and in what situations would you consider it?

    What part is bothering you exactly? Its not that it bothers me, its just that it is "different" and I was wondering if it is an acceptable design of a class and when you would use it, since I don't think I've seen any examples in the JDK.
    Usually the order of method invocation is not important. You can do:
    component.setFont()
    component.setBackground()or
    component.setBackground()
    component.setFont()However
    orderBy()
    orderBy()
    reverse()is not the same as
    orderBy()
    reverse()
    orderBy()So the API implies a "building" approach where you need to know you are building the components of the class in a certain order.
    Again, its not bad, its just different (to me) so I was wondering if it is common and when you would use it.
    The fact that the methods return the object itself...No, I've seen that pattern before and find it handy.
    Your example (addSortField) also depends on the order in which the methods are called.Yes, but this is normal for most APIs. For example adding items to a Vector, or components to a panel.
    In this case the orderBy() method implies a change of state because the next set of methods may or may not modify the state of the field being ordered.
    Again, I said I thought that this potentialy does simplify the API, but I have not seen it used before.
    I don't see the design as much of a problem. Me either.

  • I have os x 10.5.8 and noticed a menu extra that I have never seen before. Is there a way to identify it? I tried to delete it i.e. comm drag, didn't work.

    I have os x 10.5.8 and noticed a menu extra that I have never seen before. Is there a way to identify it? I tried to delete it i.e. comm + drag, didn't work.

    If you can't CMD+ drag it off, try this...
    You've probably got a couple of corrupt preference files.
    Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions...
    /Users/YourUserName/Library/Preferences/com.apple.systempreferences.plist
    /Users/<yourname>/Library/Preferences/ com.apple.systemuiserver.plist
    /Users/<yourname>/Library/Preferences/ByHost/com.apple.systemuiserver.xxx.plist
    where 'xxx' is a 12 digit (hexadecimal) numeric string.
    This will reset your Menu Bar to the default, you'll need to go through System Preferences to reset the ones you need. (If they are already checked, uncheck them first and then recheck them).
    reboot

  • HT5577 why i have some security question that i never seen before?

    I tried to change my password on apple id and i got some security questions that i never seen before..what can i do in this case?please help me

    Welcome to the Apple Community Helen.
    If you don't know your password, don't know your security questions and don't have a rescue address or don't receive a reset email, you should contact AppleCare who will initially try to assist you with a reset email or if unsuccessful will pass you to the security team to reset your security questions for you.
    If you are in a region that doesn't have international telephone support try contacting Apple through iTunes Store Support.

  • Never seen before interface while cleaning screen in lock mode

    Never seen before interface while cleaning screen in lock mode came up looking like player with some weird buttons.

    Go into iPod and play a song. While it's playing, click the standby button to lock/standby your phone and again to wake it (locked), then press the menu button twice. (This should also work if you play a song, press menu once to return to the main menu, then click menu twice. If not, there's a setting to turn it on.)

  • WRT610N - Both laptops lose connection to access point intermittently

    I've tried searching the forums a little but don't see my exact issue.
    I have a WRT610N and two laptops (one Windows7 connected over N 5ghz and the other XP connecting over A 5ghz). From time to time, but at least twice a day, especially when doing a heavy download or streaming media, the laptop connection to the access point will be dropped.  I have to disconnect from the wireless network and reconnect.
    I verified that I was running the latest firmware.  I never had to upgrade, was shipped with 2.00.00.05. THe 5ghz network uses WPA2 security and I tried switching from AES only to TKIP and AES.  I also tried changing the key renewal interval.  One laptop has a DHCP reservation and the other is allowed to get whatever IP.  20 or 40 Mhtz channel width is set to auto.
    If anyone has any ideas of things to try before I go return the thing I would appreciate it.
    Message Edited by jonredraider on 12-03-2009 11:42 PM

    Open the setup page and Under Wireless tab..Click on Advanced Wireless Settings...Change the Beacon Interval to 75,Change the Fragmentation Threshold to 2304,Change the RTS Threshold to 2307 >>Click on "Save Settings"... 

  • No AirPlay when connected through access point

    I have my wireless setup with a main router in one room and another router (a DIR615) in another room setup as an access point.
    I have an Apple TV 2. gen which is hooked up by ethernet.
    Everytime Im connected wirelessly through the main router, AirPlay works fine, by when Im connected through the DIR615 (the access point), theres no AirPlay.
    When Im on the access point everything else seem to work fine - only thing thats missing is AirPlay. Oh and Remote has the same issue.
    The DIR615 has an option called "Use as access point" which I turned on. Then I set it to broadcast the same SSID as the main router with the same password. Is that wrong set up?
    I can access my other device like my NAS with no problems through both the main router and the access point.

    I have noticed a similar issue.
    Years ago, I extended my original wired network with an Airport Express (AE) acting as a bridged access point. When I got my iPod Touch, I noticed that the AE would go out to lunch occasionally if the WiFi on the Touch was on. But when the AE was functioning correctly, I could do AirPlay from the Touch to the AE.
    With the addition of an iPhone and another Touch in the house, the AE was becoming more flaky, so I bought an access point product from Trendnet. This device bridges another wireless network to the same IP subnet (192.168.1.0/24) as the wired and AE wireless network, but it is a different wireless network (SSID) from the AE wireless.  This allows me to configure the handheld devices to only connect to the Trendnet. Now the AE no longer crashes. (Pretty ironic that I need to buy a non-Apple device to get it to work...).
    However, I do not get the AirPlay icon when a handheld is connected to the Trendnet network.  I just tried connecting one of the Touches to the AE wireless and when I do, voila, I do get the AirPlay icon.
    Theoretically, the path taken to the AE from the handheld shouldn't matter, but it looks like Apple engineered it so that it does. Maybe AirPlay doesn't run over IP??  It is disappointing and I hope it gets fixed.

  • LinkSys Wireless Card connects to "Access Point" but no internet connection

    I have 2 LinkSys wireless cards. one is 802.11g, the other b. The signal for the Airport Extreme 802.11n Wi-Fi Wireless Base Station is very strong, but when I try to connect, it says "You are connected to the access point, but the Internet cannot be found". No internet access, and I can't ping anything (Ping request could not find host...). And of course the printer hooked to the AirPort is also not recognized. My iMac and Macbook both have no problems connecting to the network. There is no problem with ethernet connection to the Airport. Is it possible to have a compatibility problem between the Linksys and Airport hardware? I thought as long as they were were compatible 802.11, they would work together. The cards had no problem with my old DLink router or other hotspots in the city. Is there a set-up I missed for setting up the PC-based cards with the AirPort?

    Is your wireless network secured?
    The box said windows xp or better... So I installed Linux!

  • T60 - WLAN regularly loses connection to access point

    Hi,
    my T60, Windows Vista with
    ThinkPad 802.11a/b/g/n, 802.11b/g/n Wireless LAN Mini PCI Express Adapter
    WLAN driver version 05 Nov 2007, v7.3.1.127
    WPA authentification
    regularly (i.e. once every 15 min) loses the connection to the access point for some seconds.
    I already tried different access points, different encryption, different WLAN channels, but nothing helped.
    So the cause seems to be the WLAN adapter of my T60 or the driver.
    I am using the latest driver. As far as I remember, I did not experience this issue on Windows XP.
    Does anyone have an idea how to solve this problem? It's quite annoying.
    Thanks! Best regards,
    Daniel

    Hi lwoxen,We apologize about the inconveniences, but I would be glad to assist. One thing worth trying is changing the wireless channel on the Cisco WAP.To do this, just login to your U-verse gateway by going to http://192.168.1.254. From there you should see a list of all the devices connected, and you just want to choose the details on the Cisco AP. It should give you an IP Address. From there, type that IP address into your browser. It should ask you for a user name and password:User: ATTadminPass: 401!VENFrom there go to the wireless options and change the Control Channel option to one of the 4 channels. I would suggest trying 36.Let us know if that works. Also, I will be sending you a private message, so if you do have any further problems, you have a direct point of contact.

  • Connect Netgear access point to Home Hub?

    Before I switched to using a Home Hub 2, I was using a Netgear router/modem (DG834G). 
    And I also had a Netgear WPN802 access point connected to the DG834G router/modem (via ethernet cable), and this enabled me to connect to internet using wifi from another location in my house.  Just seemed to work.
    But I can't seem to get this to work with the Home Hub.  When the access point is plugged in to the Home Hub, it doesn't seem to show up in the Devices part of the Home Hub, and I can't connect to the access point via its default IP address (192.168.0.231).  I can't see anything in the Home Hub to configure to make this work.  On the access point, the ethernet light is lit, which suggests that it can "see" something on the other end of the cable (and the light goes out when I unplug the other end from the Home Hub).
    Any hints?
    Thanks.

    You will need to change the default IP address of the Netgear WPN802 so that it is in the same subnet as the home hub.
    The full details on how to do this are here http://kbserver.netgear.com/pdf/wpn_802_ref_manual.pdf
    Look at page 23 and change the IP address in the Basic settings.
    You could change it to 192.168.1.231 if you wish. It would still not show on the home hub because it is manually assigned. But it should work fine.
    I have an additional Belkin wireless access point on my hub, which uses the address 192.168.1.200, and that works fine.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Can't connect to Access Point that is connected to the Internet (Snow Leopard 10.6.8)

    Hi all,
    I am normally not someone who posts on support forums since most of the problems can be solved be searching through piles of other questions, but this things has really got me pulling out my hair and I hope that maybe someone can help me with this super weird problem.
    So, a few weeks back, my Mac Mini (kind of old, guessing 2007) stopped connecting to Wireless networks. Since all other devices in home (iPhone, MacBook Pro and a PC) are connecting just fine I thought it had to do with my settings. All it says is: "connection timeout".
    The Mac Mini connects just fine when I plug in an ethernet cable, but that's a no go since I don't want cables laying around our living room that much.
    I tried a lot of things suggested my other people like removing settings, PRAM reset, moving the AP closer, router settings etc etc. Of no avail. Even tried to fix it by reinstalling Snow Leopard, but that didn't do it either.
    Though when I turned my MBP into an Access Point it could connect to that network just fine. That made me wonder if it's my router, but once I plug in an ethernet cable into my MBP to share Internet access it won't connect! Tried the same with my router and indeed, it connects just fine once it has no Internet connection.
    Tried searching for people that had the same problem, but I couldn't find them. Can anybody here help?
    TLDR; Mac won't connect to Wireless network that has an internet connection, but does when it hasn't.
    Thanks!

    Try disconnecting the router from the internet (WAN port) and plugging a PC directly into one of the LAN ports. After resetting, ignore the smartwifi login, click the two checkboxes, and login manually/directly with the "admin" password and reconfigure.
    If you don't want to do all that just yet, try accessing the router from the public IP address assigned by your ISP. That might work

  • Connection via access point to my pc via Bluetooth

    Pls, kindly guide me on how to connect my laptop to the network access point on the new c2-00 nokia via bluetooth. I have been trying, but couldnt get through. My pc did not see any network device, with the bluetooth on. Is that not because it is dual sim? Pls, guide me. Anticipating positive response.

    Hub_apprentice wrote:
    Thank you John46.  You have clarified the settings that I need to plug in to the access point.  Just to confirm re the channel I need to set the channel on the access point to be different from the BT Hub.
    Your assistance is much appreciated
    I think you meant me.
    Make sure that the home hub is set to a fixed wireless channel, not smart wireless. Try 1,6 or 11.
    See http://bt.custhelp.com/app/answers/detail/a_id/14094/kw/change%20wireless%20channel/c/346,407,410
    Set the additional access point to one of the other two frequencies. So if the hub is on 6, put the access point on 1 or 11.
    This gives plenty of separation without any overlap.
    If you read my document, you will see that I recommend setting the IP of the access point to 192.168.1.15, to avoid the DHCP range of the home hub.
    Keith
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

Maybe you are looking for

  • Has the "You shut down your computer because of a problem" message changed?

    When I restart the computer after a Kernal Panic I get the message "You shut down your computer because of a problem. Click Report to see detailed information and send a report to Apple"; 2 buttons are shown: "Ignore" and "Report...". For some time n

  • Pop up information on creation of inspection lot.

    Dear Friends, We are using R/3 version 4.7, our users have one requirement which is to pop up information message whenever an inspection lot is created. The same has to be triggered as mail to the identified users. I checked in this forum and wasn't

  • Data passed from Java to a PL/SQL function

    OK, I am at the beginner-to-intermediate level when it comes to PL/SQL...and a virtual novice when it comes to Java, so please forgive me if my question seems strange or naive. We are developing a Java-based web app. Some of the screens are reminisce

  • How is Processing time calculated in Simulation

    Hi, How is processing time calculated for every simulation-relevant object? say for example, i have 2 objects of person type (p1 and p1) 4 human tasks (T1, T2, T3, T4) T1 assigned to p1, processing time 2hrs T2 assigned to p1, processing time 2hrs T3

  • How to debug Stored Procedures on Runtime?

    Is there any way or any tool available using which I could debug stored procedures on runtime ? Please also pass the links if you know any.