unable to connect to internet using terminal debian 8
EDIT / UPDATE:
firstly i was trying debian without desktop so that i can learn and spent my time on installing and playing with debian but as I was not able to connect to internet using command line so i plan to switch to desktop installation, because my 6 hours already gone just for connecting to the internet and both the solutions by dr01 sir and kais3n sir thought me a lot about networking in linux :)
==============================================================
I just completed installing plain debian 8 (after 4 try) wihtout any desktop environment and is booting properly and I can able to login from terminal and also can do sudo.
so to install desktop and other stuffs I first tried sudo apt-get update
but it says could not resolve 'security.debian.org'
, then tried below:
sudo ifconfig wlan0 up
sudo iwlist wlan0 scan #getting all wifi name here..workss
sudo iwlist wlan0 essid "YFy" enc "password123"
sudo dhclient wlan0
all the above commands are executing without any error but again I am not able to update using sudo apt-get update
command , its again saying could not resolve security.debian.org
also tried ping google.com
but its says unknow host google.com
my /etc/hosts
:
127.0.0.1 localhost.localdomain localhost
127.0.1.1 noobdev
#the following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
and /etc/hostname
:
noobdev
debian internet wlan
add a comment |
EDIT / UPDATE:
firstly i was trying debian without desktop so that i can learn and spent my time on installing and playing with debian but as I was not able to connect to internet using command line so i plan to switch to desktop installation, because my 6 hours already gone just for connecting to the internet and both the solutions by dr01 sir and kais3n sir thought me a lot about networking in linux :)
==============================================================
I just completed installing plain debian 8 (after 4 try) wihtout any desktop environment and is booting properly and I can able to login from terminal and also can do sudo.
so to install desktop and other stuffs I first tried sudo apt-get update
but it says could not resolve 'security.debian.org'
, then tried below:
sudo ifconfig wlan0 up
sudo iwlist wlan0 scan #getting all wifi name here..workss
sudo iwlist wlan0 essid "YFy" enc "password123"
sudo dhclient wlan0
all the above commands are executing without any error but again I am not able to update using sudo apt-get update
command , its again saying could not resolve security.debian.org
also tried ping google.com
but its says unknow host google.com
my /etc/hosts
:
127.0.0.1 localhost.localdomain localhost
127.0.1.1 noobdev
#the following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
and /etc/hostname
:
noobdev
debian internet wlan
Do you actually get an IP address with DHCP? Check by runningifconfig
androute -n
a few seconds afterdhclient
. Check the system logs for messages regarding DHCP. If you do get an IP address, check if you have internet connectivity withtraceroute -n 8.8.8.8
. You're using wifi with authentication, what type of security (e.g. WEP, WPA2-PSK, …) does it use? Do you havewpa_supplicant
running?
– Gilles
Sep 28 '15 at 22:05
If those answers actually helped, it would be nice if you would at least "upvote" them, even better if you accept one as a solution.
– Helio
Mar 13 '18 at 20:34
add a comment |
EDIT / UPDATE:
firstly i was trying debian without desktop so that i can learn and spent my time on installing and playing with debian but as I was not able to connect to internet using command line so i plan to switch to desktop installation, because my 6 hours already gone just for connecting to the internet and both the solutions by dr01 sir and kais3n sir thought me a lot about networking in linux :)
==============================================================
I just completed installing plain debian 8 (after 4 try) wihtout any desktop environment and is booting properly and I can able to login from terminal and also can do sudo.
so to install desktop and other stuffs I first tried sudo apt-get update
but it says could not resolve 'security.debian.org'
, then tried below:
sudo ifconfig wlan0 up
sudo iwlist wlan0 scan #getting all wifi name here..workss
sudo iwlist wlan0 essid "YFy" enc "password123"
sudo dhclient wlan0
all the above commands are executing without any error but again I am not able to update using sudo apt-get update
command , its again saying could not resolve security.debian.org
also tried ping google.com
but its says unknow host google.com
my /etc/hosts
:
127.0.0.1 localhost.localdomain localhost
127.0.1.1 noobdev
#the following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
and /etc/hostname
:
noobdev
debian internet wlan
EDIT / UPDATE:
firstly i was trying debian without desktop so that i can learn and spent my time on installing and playing with debian but as I was not able to connect to internet using command line so i plan to switch to desktop installation, because my 6 hours already gone just for connecting to the internet and both the solutions by dr01 sir and kais3n sir thought me a lot about networking in linux :)
==============================================================
I just completed installing plain debian 8 (after 4 try) wihtout any desktop environment and is booting properly and I can able to login from terminal and also can do sudo.
so to install desktop and other stuffs I first tried sudo apt-get update
but it says could not resolve 'security.debian.org'
, then tried below:
sudo ifconfig wlan0 up
sudo iwlist wlan0 scan #getting all wifi name here..workss
sudo iwlist wlan0 essid "YFy" enc "password123"
sudo dhclient wlan0
all the above commands are executing without any error but again I am not able to update using sudo apt-get update
command , its again saying could not resolve security.debian.org
also tried ping google.com
but its says unknow host google.com
my /etc/hosts
:
127.0.0.1 localhost.localdomain localhost
127.0.1.1 noobdev
#the following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
and /etc/hostname
:
noobdev
debian internet wlan
debian internet wlan
edited Sep 28 '15 at 13:11
asked Sep 28 '15 at 11:16
noobdeveloper99
13
13
Do you actually get an IP address with DHCP? Check by runningifconfig
androute -n
a few seconds afterdhclient
. Check the system logs for messages regarding DHCP. If you do get an IP address, check if you have internet connectivity withtraceroute -n 8.8.8.8
. You're using wifi with authentication, what type of security (e.g. WEP, WPA2-PSK, …) does it use? Do you havewpa_supplicant
running?
– Gilles
Sep 28 '15 at 22:05
If those answers actually helped, it would be nice if you would at least "upvote" them, even better if you accept one as a solution.
– Helio
Mar 13 '18 at 20:34
add a comment |
Do you actually get an IP address with DHCP? Check by runningifconfig
androute -n
a few seconds afterdhclient
. Check the system logs for messages regarding DHCP. If you do get an IP address, check if you have internet connectivity withtraceroute -n 8.8.8.8
. You're using wifi with authentication, what type of security (e.g. WEP, WPA2-PSK, …) does it use? Do you havewpa_supplicant
running?
– Gilles
Sep 28 '15 at 22:05
If those answers actually helped, it would be nice if you would at least "upvote" them, even better if you accept one as a solution.
– Helio
Mar 13 '18 at 20:34
Do you actually get an IP address with DHCP? Check by running
ifconfig
and route -n
a few seconds after dhclient
. Check the system logs for messages regarding DHCP. If you do get an IP address, check if you have internet connectivity with traceroute -n 8.8.8.8
. You're using wifi with authentication, what type of security (e.g. WEP, WPA2-PSK, …) does it use? Do you have wpa_supplicant
running?– Gilles
Sep 28 '15 at 22:05
Do you actually get an IP address with DHCP? Check by running
ifconfig
and route -n
a few seconds after dhclient
. Check the system logs for messages regarding DHCP. If you do get an IP address, check if you have internet connectivity with traceroute -n 8.8.8.8
. You're using wifi with authentication, what type of security (e.g. WEP, WPA2-PSK, …) does it use? Do you have wpa_supplicant
running?– Gilles
Sep 28 '15 at 22:05
If those answers actually helped, it would be nice if you would at least "upvote" them, even better if you accept one as a solution.
– Helio
Mar 13 '18 at 20:34
If those answers actually helped, it would be nice if you would at least "upvote" them, even better if you accept one as a solution.
– Helio
Mar 13 '18 at 20:34
add a comment |
4 Answers
4
active
oldest
votes
It's a DNS problem; your machine is unable to resolve hostnames.
Specify the nameserver in the file /etc/resolv.conf
by entering the following line on it:
nameserver 8.8.8.8
which is the IP of Google's public DNS server.
i already have theses to linesnameserver 103.7.148.2
andnameserver 103.7.148.6
so should i remove these two and add the one you answered or i just need to add your suggested line at the end.. please
– noobdeveloper99
Sep 28 '15 at 11:33
Addnameserver 8.8.8.8
at the beginning. It looks like these nameservers aren't working.
– dr01
Sep 28 '15 at 11:35
sir, not working... :( , do i need to provide any gateway..??
– noobdeveloper99
Sep 28 '15 at 11:42
Does aping 8.8.8.8
work?
– dr01
Sep 28 '15 at 13:07
no sir, may be i am missing something during installation time... but now i am on lxde desktop, but thanks a lot I got lots of idea how networking works in debian and in linux :) thanks a lot sir for your important time
– noobdeveloper99
Sep 28 '15 at 13:09
|
show 1 more comment
And you are sure that you get a IP Address after you run sudo dhclient wlan0.
You can check that with ifconfig.
If not you can try to set it manually if you know the IP Range of your WLAN.
Open the interface config with
sudo nano /etc/network/interfaces
And change the following parameters matching to your config
iface wlan0 inet static
address 192.168.0.1 #the IP Address debian should get
netmask 255.255.255.240 # your networkmask
gateway 172.19.49.14 # Your gateway I guess your WIFI Router IP Address will work
After that you can set again your DNS manually in the /etc/resolv.conf like dr01 suggested
tired but didn't work, now i am installing debian-lxde-cd1.iso which comes with desktop... but thanks a lot @kais3n Sir for your important time :)
– noobdeveloper99
Sep 28 '15 at 12:49
add a comment |
Please check if you have added the interface, with IP address provided by DHCP/router in /etc/network/interface
. If not please add iface ethXXX inet dhcp
.
You can also check here, looks like similar problem: https://ubuntuforums.org/showthread.php?t=1582015
add a comment |
Try to ping Debian ip from another device especially from AP or hotspot device. this work for me.
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f232512%2funable-to-connect-to-internet-using-terminal-debian-8%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
It's a DNS problem; your machine is unable to resolve hostnames.
Specify the nameserver in the file /etc/resolv.conf
by entering the following line on it:
nameserver 8.8.8.8
which is the IP of Google's public DNS server.
i already have theses to linesnameserver 103.7.148.2
andnameserver 103.7.148.6
so should i remove these two and add the one you answered or i just need to add your suggested line at the end.. please
– noobdeveloper99
Sep 28 '15 at 11:33
Addnameserver 8.8.8.8
at the beginning. It looks like these nameservers aren't working.
– dr01
Sep 28 '15 at 11:35
sir, not working... :( , do i need to provide any gateway..??
– noobdeveloper99
Sep 28 '15 at 11:42
Does aping 8.8.8.8
work?
– dr01
Sep 28 '15 at 13:07
no sir, may be i am missing something during installation time... but now i am on lxde desktop, but thanks a lot I got lots of idea how networking works in debian and in linux :) thanks a lot sir for your important time
– noobdeveloper99
Sep 28 '15 at 13:09
|
show 1 more comment
It's a DNS problem; your machine is unable to resolve hostnames.
Specify the nameserver in the file /etc/resolv.conf
by entering the following line on it:
nameserver 8.8.8.8
which is the IP of Google's public DNS server.
i already have theses to linesnameserver 103.7.148.2
andnameserver 103.7.148.6
so should i remove these two and add the one you answered or i just need to add your suggested line at the end.. please
– noobdeveloper99
Sep 28 '15 at 11:33
Addnameserver 8.8.8.8
at the beginning. It looks like these nameservers aren't working.
– dr01
Sep 28 '15 at 11:35
sir, not working... :( , do i need to provide any gateway..??
– noobdeveloper99
Sep 28 '15 at 11:42
Does aping 8.8.8.8
work?
– dr01
Sep 28 '15 at 13:07
no sir, may be i am missing something during installation time... but now i am on lxde desktop, but thanks a lot I got lots of idea how networking works in debian and in linux :) thanks a lot sir for your important time
– noobdeveloper99
Sep 28 '15 at 13:09
|
show 1 more comment
It's a DNS problem; your machine is unable to resolve hostnames.
Specify the nameserver in the file /etc/resolv.conf
by entering the following line on it:
nameserver 8.8.8.8
which is the IP of Google's public DNS server.
It's a DNS problem; your machine is unable to resolve hostnames.
Specify the nameserver in the file /etc/resolv.conf
by entering the following line on it:
nameserver 8.8.8.8
which is the IP of Google's public DNS server.
edited Sep 28 '15 at 11:36
answered Sep 28 '15 at 11:30
dr01
15.9k114970
15.9k114970
i already have theses to linesnameserver 103.7.148.2
andnameserver 103.7.148.6
so should i remove these two and add the one you answered or i just need to add your suggested line at the end.. please
– noobdeveloper99
Sep 28 '15 at 11:33
Addnameserver 8.8.8.8
at the beginning. It looks like these nameservers aren't working.
– dr01
Sep 28 '15 at 11:35
sir, not working... :( , do i need to provide any gateway..??
– noobdeveloper99
Sep 28 '15 at 11:42
Does aping 8.8.8.8
work?
– dr01
Sep 28 '15 at 13:07
no sir, may be i am missing something during installation time... but now i am on lxde desktop, but thanks a lot I got lots of idea how networking works in debian and in linux :) thanks a lot sir for your important time
– noobdeveloper99
Sep 28 '15 at 13:09
|
show 1 more comment
i already have theses to linesnameserver 103.7.148.2
andnameserver 103.7.148.6
so should i remove these two and add the one you answered or i just need to add your suggested line at the end.. please
– noobdeveloper99
Sep 28 '15 at 11:33
Addnameserver 8.8.8.8
at the beginning. It looks like these nameservers aren't working.
– dr01
Sep 28 '15 at 11:35
sir, not working... :( , do i need to provide any gateway..??
– noobdeveloper99
Sep 28 '15 at 11:42
Does aping 8.8.8.8
work?
– dr01
Sep 28 '15 at 13:07
no sir, may be i am missing something during installation time... but now i am on lxde desktop, but thanks a lot I got lots of idea how networking works in debian and in linux :) thanks a lot sir for your important time
– noobdeveloper99
Sep 28 '15 at 13:09
i already have theses to lines
nameserver 103.7.148.2
and nameserver 103.7.148.6
so should i remove these two and add the one you answered or i just need to add your suggested line at the end.. please– noobdeveloper99
Sep 28 '15 at 11:33
i already have theses to lines
nameserver 103.7.148.2
and nameserver 103.7.148.6
so should i remove these two and add the one you answered or i just need to add your suggested line at the end.. please– noobdeveloper99
Sep 28 '15 at 11:33
Add
nameserver 8.8.8.8
at the beginning. It looks like these nameservers aren't working.– dr01
Sep 28 '15 at 11:35
Add
nameserver 8.8.8.8
at the beginning. It looks like these nameservers aren't working.– dr01
Sep 28 '15 at 11:35
sir, not working... :( , do i need to provide any gateway..??
– noobdeveloper99
Sep 28 '15 at 11:42
sir, not working... :( , do i need to provide any gateway..??
– noobdeveloper99
Sep 28 '15 at 11:42
Does a
ping 8.8.8.8
work?– dr01
Sep 28 '15 at 13:07
Does a
ping 8.8.8.8
work?– dr01
Sep 28 '15 at 13:07
no sir, may be i am missing something during installation time... but now i am on lxde desktop, but thanks a lot I got lots of idea how networking works in debian and in linux :) thanks a lot sir for your important time
– noobdeveloper99
Sep 28 '15 at 13:09
no sir, may be i am missing something during installation time... but now i am on lxde desktop, but thanks a lot I got lots of idea how networking works in debian and in linux :) thanks a lot sir for your important time
– noobdeveloper99
Sep 28 '15 at 13:09
|
show 1 more comment
And you are sure that you get a IP Address after you run sudo dhclient wlan0.
You can check that with ifconfig.
If not you can try to set it manually if you know the IP Range of your WLAN.
Open the interface config with
sudo nano /etc/network/interfaces
And change the following parameters matching to your config
iface wlan0 inet static
address 192.168.0.1 #the IP Address debian should get
netmask 255.255.255.240 # your networkmask
gateway 172.19.49.14 # Your gateway I guess your WIFI Router IP Address will work
After that you can set again your DNS manually in the /etc/resolv.conf like dr01 suggested
tired but didn't work, now i am installing debian-lxde-cd1.iso which comes with desktop... but thanks a lot @kais3n Sir for your important time :)
– noobdeveloper99
Sep 28 '15 at 12:49
add a comment |
And you are sure that you get a IP Address after you run sudo dhclient wlan0.
You can check that with ifconfig.
If not you can try to set it manually if you know the IP Range of your WLAN.
Open the interface config with
sudo nano /etc/network/interfaces
And change the following parameters matching to your config
iface wlan0 inet static
address 192.168.0.1 #the IP Address debian should get
netmask 255.255.255.240 # your networkmask
gateway 172.19.49.14 # Your gateway I guess your WIFI Router IP Address will work
After that you can set again your DNS manually in the /etc/resolv.conf like dr01 suggested
tired but didn't work, now i am installing debian-lxde-cd1.iso which comes with desktop... but thanks a lot @kais3n Sir for your important time :)
– noobdeveloper99
Sep 28 '15 at 12:49
add a comment |
And you are sure that you get a IP Address after you run sudo dhclient wlan0.
You can check that with ifconfig.
If not you can try to set it manually if you know the IP Range of your WLAN.
Open the interface config with
sudo nano /etc/network/interfaces
And change the following parameters matching to your config
iface wlan0 inet static
address 192.168.0.1 #the IP Address debian should get
netmask 255.255.255.240 # your networkmask
gateway 172.19.49.14 # Your gateway I guess your WIFI Router IP Address will work
After that you can set again your DNS manually in the /etc/resolv.conf like dr01 suggested
And you are sure that you get a IP Address after you run sudo dhclient wlan0.
You can check that with ifconfig.
If not you can try to set it manually if you know the IP Range of your WLAN.
Open the interface config with
sudo nano /etc/network/interfaces
And change the following parameters matching to your config
iface wlan0 inet static
address 192.168.0.1 #the IP Address debian should get
netmask 255.255.255.240 # your networkmask
gateway 172.19.49.14 # Your gateway I guess your WIFI Router IP Address will work
After that you can set again your DNS manually in the /etc/resolv.conf like dr01 suggested
answered Sep 28 '15 at 12:19
Kais3n
1
1
tired but didn't work, now i am installing debian-lxde-cd1.iso which comes with desktop... but thanks a lot @kais3n Sir for your important time :)
– noobdeveloper99
Sep 28 '15 at 12:49
add a comment |
tired but didn't work, now i am installing debian-lxde-cd1.iso which comes with desktop... but thanks a lot @kais3n Sir for your important time :)
– noobdeveloper99
Sep 28 '15 at 12:49
tired but didn't work, now i am installing debian-lxde-cd1.iso which comes with desktop... but thanks a lot @kais3n Sir for your important time :)
– noobdeveloper99
Sep 28 '15 at 12:49
tired but didn't work, now i am installing debian-lxde-cd1.iso which comes with desktop... but thanks a lot @kais3n Sir for your important time :)
– noobdeveloper99
Sep 28 '15 at 12:49
add a comment |
Please check if you have added the interface, with IP address provided by DHCP/router in /etc/network/interface
. If not please add iface ethXXX inet dhcp
.
You can also check here, looks like similar problem: https://ubuntuforums.org/showthread.php?t=1582015
add a comment |
Please check if you have added the interface, with IP address provided by DHCP/router in /etc/network/interface
. If not please add iface ethXXX inet dhcp
.
You can also check here, looks like similar problem: https://ubuntuforums.org/showthread.php?t=1582015
add a comment |
Please check if you have added the interface, with IP address provided by DHCP/router in /etc/network/interface
. If not please add iface ethXXX inet dhcp
.
You can also check here, looks like similar problem: https://ubuntuforums.org/showthread.php?t=1582015
Please check if you have added the interface, with IP address provided by DHCP/router in /etc/network/interface
. If not please add iface ethXXX inet dhcp
.
You can also check here, looks like similar problem: https://ubuntuforums.org/showthread.php?t=1582015
edited Mar 13 '18 at 19:00
answered Mar 13 '18 at 5:16
novice
12
12
add a comment |
add a comment |
Try to ping Debian ip from another device especially from AP or hotspot device. this work for me.
New contributor
add a comment |
Try to ping Debian ip from another device especially from AP or hotspot device. this work for me.
New contributor
add a comment |
Try to ping Debian ip from another device especially from AP or hotspot device. this work for me.
New contributor
Try to ping Debian ip from another device especially from AP or hotspot device. this work for me.
New contributor
New contributor
answered 17 mins ago
Ivan Yudinata Purwanto
11
11
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2funix.stackexchange.com%2fquestions%2f232512%2funable-to-connect-to-internet-using-terminal-debian-8%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
Do you actually get an IP address with DHCP? Check by running
ifconfig
androute -n
a few seconds afterdhclient
. Check the system logs for messages regarding DHCP. If you do get an IP address, check if you have internet connectivity withtraceroute -n 8.8.8.8
. You're using wifi with authentication, what type of security (e.g. WEP, WPA2-PSK, …) does it use? Do you havewpa_supplicant
running?– Gilles
Sep 28 '15 at 22:05
If those answers actually helped, it would be nice if you would at least "upvote" them, even better if you accept one as a solution.
– Helio
Mar 13 '18 at 20:34