2

I need my raspberry pi to connect to the network so I can be able to install certain packages into it. I went through this tutorial. I made the following changes to the network settings of the Pi.

enter image description here

But the problem is that the network I'm using is very secured in a way that for you to start browsing or use the internet you must firstly login as a user so I'm not familiar how I can add my credentials to the network settings.

Even if I try to use the ethernet cable I can't access the Pi doesn't connect to the internet. With the ethernet cable if I run the ifconfig command I can see that it is connected to the LAN but the problem is that when I install packages it fail meaning it's not really connected.

route command enter image description here

ifconfig command

enter image description here

ping -c3 8.8.8.8 command

enter image description here

hot google.com command

enter image description here

cat /etc/resolv.conf command

enter image description here

I have run nslookup google.com , wget --spider -v http://www.google.com/ncr and wget -v http://www.google.com/ncr commands and this proved that my Pi is not connecting to the internet.

enter image description here

1 Answers1

4

Usually these types of WAP's use something called Captive Portal, which intercepts http traffic on port 80, then redirects it to their login page until the user is logged in.

Try getting the terminal web browser package links and browsing to a website using a http (not https) and it should redirect you and allow you to log in.

pappad
  • 61
  • 1