Why am I unable to connect to WiFi network? Password is reported to be incorrect

486

Solution 1

Are you sure it is asking you for the password for the wireless network, and not your user password in order to access the keyring that contains the key for the network? The first time you enter the password, it will normally save this paassword to the keyring, then it won't need to keep asking you every time. I believe it uses your login password as the keyring password, but if these are different, then it will prompt you for the keyring password. The default behavior always works well for me, but in the past, I've had problems with this when I didn't understand the behavior, but tried to do something non-standard anyway.

The next thing you should understand as soon as you can is that there is no such thing as "administrator" of the system, per se. There is root authority, but you do not normally use this, ever. Instead, Ubuntu has a way to temporarily give you elevated privileges, using sudo, or gksu. Using your normal login, you should never have privileges to change the system. But there is an easy way to do it, by using the built-in methods I mentioned. This is not something to be worked around, it is there for your protection. Yes, you need it, unless your system is a throwaway system that you don't mind fixing or reinstalling regularly.

Solution 2

I have had this same issue myself. I can not answer why this happens exactly but I do have some ideas. To resolve this issue for me I did the following. Click on the network manager applet in the panel, go to edit connections In the network connections dialog click the wireless tab delete the existing entry for your wireless connection,provide your administrator password if prompted. Now reboot your computer so network manager will not have an existing wireless configuration to attempt to load. After rebooting try to reconnect to your wireless network as though this is the first time this computer has connected to your network.

Some added helpful hints: It seems that sometime after 12.04 LTS. or 12.10 not sure which, network manager installs or upgrades with IPv6 set to Automatic. in my case with a moderate size home network with my router managing my global gateway (Internet connection) IPv6 protocols are not necessary and the automatic setting in the IPv6 settings tab of the Network Connections dialog seems to cause some buggy behavior with dhcp connections and my Ubuntu systems so I have set this to ignore.

A word of WARNING! about setting IPv6 to ignore. In some Countries or areas Internet Service Providers or Corporations may be using the Ipv6 protocol and this setting may not be right for every one but works well for me.

Solution 3

check for authentication protocol also. some time mismatch in authentication protocol can give you feel as the password is wrong and not able to connect. check with device or your service provider for authentication protocol being used and use the same.

Share:
486

Related videos on Youtube

user3610200
Author by

user3610200

Updated on September 18, 2022

Comments

  • user3610200
    user3610200 almost 2 years

    videojs is working fine and autoplay works on IE and FF, but not on Chrome. Google leads to topics from 2012. Can't believe it's not fixed?

    Here's my setup:

    <head>
    <script type="text/javascript"     src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
    <script type="text/javascript" src="/fancybox/fancybox/jquery.fancybox-1.3.4.pack.js?4" >    </script>
    <link rel="stylesheet" href="/fancybox/fancybox/jquery.fancybox-1.3.4.css?4" type="text/css" media="screen" />
    <link href="/video-js/creadoo/video-js.less?2" rel="stylesheet">
    <script src="//vjs.zencdn.net/4.5/video.js"></script>
    <script type="text/javascript">
    $(document).ready(function () {
    $("a.fancyvideo5").click(function () {
       var url = $(this).attr('name');
        $.fancybox({
            'padding': 7,
            'overlayOpacity': 0.9,
            'width': 588,
            'height': 331,
            'transitionOut': 'elastic',
            'transitionIn': 'elastic',
            'scrolling': 'no',
            'content': '<div class="video-js-box">' +
                       '<video autoplay class="video-js" width="588" height="331" controls preload="none" data-setup='{'autoplay': true}'>' +
                       '<source src="' + url + '"' + 'type=video/mp4; codecs="avc1.42E01E, mp4a.40.2"' + '/> ' +
                        '</video>' +
                        '</div>',
        });
    }); 
    
    
    });
    
    </script>
    </head>
    <body>
    <a class="fancyvideo5" name="/data/marabu.mp4"><img src="/news/thumb/marabu.jpg" width="588" height="331" alt="Film" /></a> 
    </body>