WiFi connection to router but no Internet connection?
- I installed Ubuntu on my EasyNote-TM86 today.
- I can't access any websites although I am connected to my router.
- Other devices (including my laptop before I installed Ubuntu) are able to establish a connection/load websites.
- Security is WPA/WPA2
networking wireless internet network-manager
add a comment |
- I installed Ubuntu on my EasyNote-TM86 today.
- I can't access any websites although I am connected to my router.
- Other devices (including my laptop before I installed Ubuntu) are able to establish a connection/load websites.
- Security is WPA/WPA2
networking wireless internet network-manager
Comments are not for extended discussion; this conversation has been moved to chat.
– fossfreedom♦
Mar 3 '15 at 8:57
add a comment |
- I installed Ubuntu on my EasyNote-TM86 today.
- I can't access any websites although I am connected to my router.
- Other devices (including my laptop before I installed Ubuntu) are able to establish a connection/load websites.
- Security is WPA/WPA2
networking wireless internet network-manager
- I installed Ubuntu on my EasyNote-TM86 today.
- I can't access any websites although I am connected to my router.
- Other devices (including my laptop before I installed Ubuntu) are able to establish a connection/load websites.
- Security is WPA/WPA2
networking wireless internet network-manager
networking wireless internet network-manager
edited Apr 6 '15 at 20:21
asked Mar 1 '15 at 20:31
user383818
Comments are not for extended discussion; this conversation has been moved to chat.
– fossfreedom♦
Mar 3 '15 at 8:57
add a comment |
Comments are not for extended discussion; this conversation has been moved to chat.
– fossfreedom♦
Mar 3 '15 at 8:57
Comments are not for extended discussion; this conversation has been moved to chat.
– fossfreedom♦
Mar 3 '15 at 8:57
Comments are not for extended discussion; this conversation has been moved to chat.
– fossfreedom♦
Mar 3 '15 at 8:57
add a comment |
3 Answers
3
active
oldest
votes
From a search sudo dpkg-reconfigure resolvconf should make /etc/resolv.conf but mine only contains nameserver 127.0.1.1
I did this, reconfigured something and restartet but Firefox is still unable to connect.
– user383818
Mar 2 '15 at 20:55
Are you using Network Manager or WICD, as Network Manager usually causes the file to be made
– Jeremy31
Mar 2 '15 at 23:19
I didn't changed the default settings/programms until now so NetworkManager I think.
– user383818
Mar 2 '15 at 23:32
I am starting to think your MAC address might be blocked on the router from other comments as you should be able to ping 8.8.8.8
– Jeremy31
Mar 2 '15 at 23:41
Solved the issue with Elementary OS connecting to my router but no to internet - thanks a million
– Inigo EC
Nov 5 '17 at 10:13
add a comment |
Couple of things to do:
Restart network manager
Network manager on my machine is weird. The indicator may show the machine is connected but i cannot ping anything, mostly after startup. What solves it is sudo service network-manager restart
Delete system-connections
Network manager stores config for every connection in /etc/NetworkManager/system-connections/ directory. I've noticed that for many users here on askubuntu it has been sufficient to delete every file in that folder and try reconnecting to their network.
Remove needless stuff from resolv.conf
1 # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
2 # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
3 nameserver 8.8.8.8 | sudo tee -a /etc/resolv/conf.d/head
4 printtf nnameserver
5 nameserver 8.8.8.8 | sudo tee -a /etc/resolvconf/resolv.conf.d/head
This is your resolv.conf file as you posted. Remove lines sudo tee from both /etc/resolv/conf.d/head and /etc/resolv.conf.d/base, as well as the printf line
Your base and head files should only contain nameserver 8.8.8.8 line.
Try deleting /run/resolvconf/resolv.conf
/etc/resolv.conf file is actually symbolic link to /run/resolvconf/resolv.conf file. Delete that actual file, edit head and base files, reboot.
Try adding other DNS in nm-connection-editor
Open nm-connection-editor, either in command line, or under network-indicator drop down menu (Edit Connections). Find your desired network. Select Edit. Under IPv4 settings, select "Automatic (DHCP) Address Only", then add 208.67.220.220 on the "Additional DNS Servers" line
For more info on the subject, refer to my question and answer here. Let me know if this answer was helpful or whether the problem persists
add a comment |
My internet connection got lost after I upgraded from Ubuntu 16.04 to 18.04. After troubleshooting, I found /etc/resolv.conf empty
I also checked the file /etc/resolvconf/resolv.conf.d/tail and found it empty.
I added the line nameserver 8.8.8.8
Everything resolved.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f591572%2fwifi-connection-to-router-but-no-internet-connection%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
From a search sudo dpkg-reconfigure resolvconf should make /etc/resolv.conf but mine only contains nameserver 127.0.1.1
I did this, reconfigured something and restartet but Firefox is still unable to connect.
– user383818
Mar 2 '15 at 20:55
Are you using Network Manager or WICD, as Network Manager usually causes the file to be made
– Jeremy31
Mar 2 '15 at 23:19
I didn't changed the default settings/programms until now so NetworkManager I think.
– user383818
Mar 2 '15 at 23:32
I am starting to think your MAC address might be blocked on the router from other comments as you should be able to ping 8.8.8.8
– Jeremy31
Mar 2 '15 at 23:41
Solved the issue with Elementary OS connecting to my router but no to internet - thanks a million
– Inigo EC
Nov 5 '17 at 10:13
add a comment |
From a search sudo dpkg-reconfigure resolvconf should make /etc/resolv.conf but mine only contains nameserver 127.0.1.1
I did this, reconfigured something and restartet but Firefox is still unable to connect.
– user383818
Mar 2 '15 at 20:55
Are you using Network Manager or WICD, as Network Manager usually causes the file to be made
– Jeremy31
Mar 2 '15 at 23:19
I didn't changed the default settings/programms until now so NetworkManager I think.
– user383818
Mar 2 '15 at 23:32
I am starting to think your MAC address might be blocked on the router from other comments as you should be able to ping 8.8.8.8
– Jeremy31
Mar 2 '15 at 23:41
Solved the issue with Elementary OS connecting to my router but no to internet - thanks a million
– Inigo EC
Nov 5 '17 at 10:13
add a comment |
From a search sudo dpkg-reconfigure resolvconf should make /etc/resolv.conf but mine only contains nameserver 127.0.1.1
From a search sudo dpkg-reconfigure resolvconf should make /etc/resolv.conf but mine only contains nameserver 127.0.1.1
answered Mar 1 '15 at 20:37
Jeremy31Jeremy31
8,39921365
8,39921365
I did this, reconfigured something and restartet but Firefox is still unable to connect.
– user383818
Mar 2 '15 at 20:55
Are you using Network Manager or WICD, as Network Manager usually causes the file to be made
– Jeremy31
Mar 2 '15 at 23:19
I didn't changed the default settings/programms until now so NetworkManager I think.
– user383818
Mar 2 '15 at 23:32
I am starting to think your MAC address might be blocked on the router from other comments as you should be able to ping 8.8.8.8
– Jeremy31
Mar 2 '15 at 23:41
Solved the issue with Elementary OS connecting to my router but no to internet - thanks a million
– Inigo EC
Nov 5 '17 at 10:13
add a comment |
I did this, reconfigured something and restartet but Firefox is still unable to connect.
– user383818
Mar 2 '15 at 20:55
Are you using Network Manager or WICD, as Network Manager usually causes the file to be made
– Jeremy31
Mar 2 '15 at 23:19
I didn't changed the default settings/programms until now so NetworkManager I think.
– user383818
Mar 2 '15 at 23:32
I am starting to think your MAC address might be blocked on the router from other comments as you should be able to ping 8.8.8.8
– Jeremy31
Mar 2 '15 at 23:41
Solved the issue with Elementary OS connecting to my router but no to internet - thanks a million
– Inigo EC
Nov 5 '17 at 10:13
I did this, reconfigured something and restartet but Firefox is still unable to connect.
– user383818
Mar 2 '15 at 20:55
I did this, reconfigured something and restartet but Firefox is still unable to connect.
– user383818
Mar 2 '15 at 20:55
Are you using Network Manager or WICD, as Network Manager usually causes the file to be made
– Jeremy31
Mar 2 '15 at 23:19
Are you using Network Manager or WICD, as Network Manager usually causes the file to be made
– Jeremy31
Mar 2 '15 at 23:19
I didn't changed the default settings/programms until now so NetworkManager I think.
– user383818
Mar 2 '15 at 23:32
I didn't changed the default settings/programms until now so NetworkManager I think.
– user383818
Mar 2 '15 at 23:32
I am starting to think your MAC address might be blocked on the router from other comments as you should be able to ping 8.8.8.8
– Jeremy31
Mar 2 '15 at 23:41
I am starting to think your MAC address might be blocked on the router from other comments as you should be able to ping 8.8.8.8
– Jeremy31
Mar 2 '15 at 23:41
Solved the issue with Elementary OS connecting to my router but no to internet - thanks a million
– Inigo EC
Nov 5 '17 at 10:13
Solved the issue with Elementary OS connecting to my router but no to internet - thanks a million
– Inigo EC
Nov 5 '17 at 10:13
add a comment |
Couple of things to do:
Restart network manager
Network manager on my machine is weird. The indicator may show the machine is connected but i cannot ping anything, mostly after startup. What solves it is sudo service network-manager restart
Delete system-connections
Network manager stores config for every connection in /etc/NetworkManager/system-connections/ directory. I've noticed that for many users here on askubuntu it has been sufficient to delete every file in that folder and try reconnecting to their network.
Remove needless stuff from resolv.conf
1 # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
2 # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
3 nameserver 8.8.8.8 | sudo tee -a /etc/resolv/conf.d/head
4 printtf nnameserver
5 nameserver 8.8.8.8 | sudo tee -a /etc/resolvconf/resolv.conf.d/head
This is your resolv.conf file as you posted. Remove lines sudo tee from both /etc/resolv/conf.d/head and /etc/resolv.conf.d/base, as well as the printf line
Your base and head files should only contain nameserver 8.8.8.8 line.
Try deleting /run/resolvconf/resolv.conf
/etc/resolv.conf file is actually symbolic link to /run/resolvconf/resolv.conf file. Delete that actual file, edit head and base files, reboot.
Try adding other DNS in nm-connection-editor
Open nm-connection-editor, either in command line, or under network-indicator drop down menu (Edit Connections). Find your desired network. Select Edit. Under IPv4 settings, select "Automatic (DHCP) Address Only", then add 208.67.220.220 on the "Additional DNS Servers" line
For more info on the subject, refer to my question and answer here. Let me know if this answer was helpful or whether the problem persists
add a comment |
Couple of things to do:
Restart network manager
Network manager on my machine is weird. The indicator may show the machine is connected but i cannot ping anything, mostly after startup. What solves it is sudo service network-manager restart
Delete system-connections
Network manager stores config for every connection in /etc/NetworkManager/system-connections/ directory. I've noticed that for many users here on askubuntu it has been sufficient to delete every file in that folder and try reconnecting to their network.
Remove needless stuff from resolv.conf
1 # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
2 # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
3 nameserver 8.8.8.8 | sudo tee -a /etc/resolv/conf.d/head
4 printtf nnameserver
5 nameserver 8.8.8.8 | sudo tee -a /etc/resolvconf/resolv.conf.d/head
This is your resolv.conf file as you posted. Remove lines sudo tee from both /etc/resolv/conf.d/head and /etc/resolv.conf.d/base, as well as the printf line
Your base and head files should only contain nameserver 8.8.8.8 line.
Try deleting /run/resolvconf/resolv.conf
/etc/resolv.conf file is actually symbolic link to /run/resolvconf/resolv.conf file. Delete that actual file, edit head and base files, reboot.
Try adding other DNS in nm-connection-editor
Open nm-connection-editor, either in command line, or under network-indicator drop down menu (Edit Connections). Find your desired network. Select Edit. Under IPv4 settings, select "Automatic (DHCP) Address Only", then add 208.67.220.220 on the "Additional DNS Servers" line
For more info on the subject, refer to my question and answer here. Let me know if this answer was helpful or whether the problem persists
add a comment |
Couple of things to do:
Restart network manager
Network manager on my machine is weird. The indicator may show the machine is connected but i cannot ping anything, mostly after startup. What solves it is sudo service network-manager restart
Delete system-connections
Network manager stores config for every connection in /etc/NetworkManager/system-connections/ directory. I've noticed that for many users here on askubuntu it has been sufficient to delete every file in that folder and try reconnecting to their network.
Remove needless stuff from resolv.conf
1 # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
2 # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
3 nameserver 8.8.8.8 | sudo tee -a /etc/resolv/conf.d/head
4 printtf nnameserver
5 nameserver 8.8.8.8 | sudo tee -a /etc/resolvconf/resolv.conf.d/head
This is your resolv.conf file as you posted. Remove lines sudo tee from both /etc/resolv/conf.d/head and /etc/resolv.conf.d/base, as well as the printf line
Your base and head files should only contain nameserver 8.8.8.8 line.
Try deleting /run/resolvconf/resolv.conf
/etc/resolv.conf file is actually symbolic link to /run/resolvconf/resolv.conf file. Delete that actual file, edit head and base files, reboot.
Try adding other DNS in nm-connection-editor
Open nm-connection-editor, either in command line, or under network-indicator drop down menu (Edit Connections). Find your desired network. Select Edit. Under IPv4 settings, select "Automatic (DHCP) Address Only", then add 208.67.220.220 on the "Additional DNS Servers" line
For more info on the subject, refer to my question and answer here. Let me know if this answer was helpful or whether the problem persists
Couple of things to do:
Restart network manager
Network manager on my machine is weird. The indicator may show the machine is connected but i cannot ping anything, mostly after startup. What solves it is sudo service network-manager restart
Delete system-connections
Network manager stores config for every connection in /etc/NetworkManager/system-connections/ directory. I've noticed that for many users here on askubuntu it has been sufficient to delete every file in that folder and try reconnecting to their network.
Remove needless stuff from resolv.conf
1 # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
2 # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
3 nameserver 8.8.8.8 | sudo tee -a /etc/resolv/conf.d/head
4 printtf nnameserver
5 nameserver 8.8.8.8 | sudo tee -a /etc/resolvconf/resolv.conf.d/head
This is your resolv.conf file as you posted. Remove lines sudo tee from both /etc/resolv/conf.d/head and /etc/resolv.conf.d/base, as well as the printf line
Your base and head files should only contain nameserver 8.8.8.8 line.
Try deleting /run/resolvconf/resolv.conf
/etc/resolv.conf file is actually symbolic link to /run/resolvconf/resolv.conf file. Delete that actual file, edit head and base files, reboot.
Try adding other DNS in nm-connection-editor
Open nm-connection-editor, either in command line, or under network-indicator drop down menu (Edit Connections). Find your desired network. Select Edit. Under IPv4 settings, select "Automatic (DHCP) Address Only", then add 208.67.220.220 on the "Additional DNS Servers" line
For more info on the subject, refer to my question and answer here. Let me know if this answer was helpful or whether the problem persists
edited Apr 13 '17 at 12:24
Community♦
1
1
answered Mar 4 '15 at 14:33
Sergiy KolodyazhnyySergiy Kolodyazhnyy
71.3k9147313
71.3k9147313
add a comment |
add a comment |
My internet connection got lost after I upgraded from Ubuntu 16.04 to 18.04. After troubleshooting, I found /etc/resolv.conf empty
I also checked the file /etc/resolvconf/resolv.conf.d/tail and found it empty.
I added the line nameserver 8.8.8.8
Everything resolved.
add a comment |
My internet connection got lost after I upgraded from Ubuntu 16.04 to 18.04. After troubleshooting, I found /etc/resolv.conf empty
I also checked the file /etc/resolvconf/resolv.conf.d/tail and found it empty.
I added the line nameserver 8.8.8.8
Everything resolved.
add a comment |
My internet connection got lost after I upgraded from Ubuntu 16.04 to 18.04. After troubleshooting, I found /etc/resolv.conf empty
I also checked the file /etc/resolvconf/resolv.conf.d/tail and found it empty.
I added the line nameserver 8.8.8.8
Everything resolved.
My internet connection got lost after I upgraded from Ubuntu 16.04 to 18.04. After troubleshooting, I found /etc/resolv.conf empty
I also checked the file /etc/resolvconf/resolv.conf.d/tail and found it empty.
I added the line nameserver 8.8.8.8
Everything resolved.
answered Dec 14 '18 at 10:57
Norrey OkumuNorrey Okumu
675
675
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f591572%2fwifi-connection-to-router-but-no-internet-connection%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Comments are not for extended discussion; this conversation has been moved to chat.
– fossfreedom♦
Mar 3 '15 at 8:57