I cannot access many websites including our own office web portals without using VPN. I tried using sudo /etc/init.d/network-manager restart
, and I also attempted to to edit /etc/network/interfaces
to add: source /etc/network/interfaces.d/*
Furthermore, interfaces(5) file used by ifup(8) and ifdown(8):
auto lo
iface lo inet loopback
The primary network interface on the device:
auto enp0s31f6
iface enp0s31f6 inet dhcp
Still I cannot access websites, web portals etc.
The output of ip a
returns to me the following:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: enp0s25: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc fq_codel state DOWN group default qlen 1000
link/ether 68:f7:28:d3:d4:47 brd ff:ff:ff:ff:ff:ff
3: wlp3s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether 5c:e0:c5:3a:7d:0c brd ff:ff:ff:ff:ff:ff
inet 192.168.0.107/24 brd 192.168.0.255 scope global dynamic noprefixroute wlp3s0
valid_lft 85831sec preferred_lft 85831sec
inet6 fe80::f9d:3b03:c8d4:43e3/64 scope link noprefixroute
valid_lft forever preferred_lft forever
4: docker0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default
link/ether 02:42:2e:cd:a6:65 brd ff:ff:ff:ff:ff:ff
inet 172.17.0.1/16 brd 172.17.255.255 scope global docker0
valid_lft forever preferred_lft forever
5: br-818882f39971: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default
link/ether 02:42:da:11:16:13 brd ff:ff:ff:ff:ff:ff
inet 172.19.0.1/16 brd 172.19.255.255 scope global br-818882f39971
valid_lft forever preferred_lft forever
6: br-f69c46d593ea: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default
link/ether 02:42:b9:fa:61:b9 brd ff:ff:ff:ff:ff:ff
inet 172.18.0.1/16 brd 172.18.255.255 scope global br-f69c46d593ea
valid_lft forever preferred_lft forever
nameserver 127.0.0.53
nslookup google.com
:
Server: 127.0.0.53
Address: 127.0.0.53#53
Non-authoritative answer:
Name: google.com
Address: 216.58.203.174
Name: google.com
Address: 2404:6800:4009:803::200e
ip a
andmore /etc/resolv.conf
are a good start. – DankyNanky May 19 '20 at 09:54nslookup google.com
- you might need to installinettools
or some alternate package. – DankyNanky May 19 '20 at 09:56ip a
command - once approved, we can cleanup your comments. Please edit your question to include the nameserver you have in your/etc/resolv.conf
file as well. Out of curiosity, if you performnslookup google.com
what is the returned IP address, and can you successfullyping
the IP address? – DankyNanky May 19 '20 at 10:02