Im unable to access few sites on a fresh installation of manjaro

I’ve installed manjaro on my machine a couple of days back. Since then I could not access some of the websites especially https://raw.github.com.

Note: I can access those sites from another machine and mobile. All the devices were connected to the same Wifi.

timedatectl

இந்த கமாண்டை இயக்கி வரும் தகவலை பகிரவும்.

➜  ~ timedatectl
               Local time: ހުކުރު 2023-12-15 11:01:46 IST
           Universal time: ހުކުރު 2023-12-15 05:31:46 UTC
                 RTC time: ހުކުރު 2023-12-15 05:31:46
                Time zone: Asia/Kolkata (IST, +0530)
System clock synchronized: yes
              NTP service: active
          RTC in local TZ: no
curl -L -v https://raw.github.com 2>&1 | curl --data-binary @- https://paste.rs

இந்த கமாண்டை இயக்கவும், ஒரு இணைய இணைப்பு வரும் அதை இங்கே பகிரவும்.

https://paste.rs/LySGh

curl -4 -L -v https://raw.github.com 2>&1 | curl --data-binary @- https://paste.rs

இந்த கமாண்டை இயக்கவும். மீண்டும் ஒரு இணைய இணைப்பு வரும். அதை இங்கே பகிரவும்.

https://paste.rs/YQpOb

sed '/^#/d;/^ *$/d' /etc/nsswitch.conf
sed '/^#/d;/^ *$/d' /etc/resolv.conf
resolvectl status
resolvectl query raw.githubusercontent.com

இந்த கமாண்டுகளை இயக்கி வரும் தகவலை பகிரவும்.

group: files [SUCCESS=merge] systemd
shadow: files systemd
gshadow: files systemd
publickey: files
hosts: mymachines mdns_minimal [NOTFOUND=return] resolve [!UNAVAIL=return] files myhostname dns
networks: files
protocols: files
services: files
ethers: files
rpc: files
netgroup: files
nameserver 192.168.29.1
nameserver 2405:201:e003:1b7::c0a8:1d01
Failed to get global data: Unit dbus-org.freedesktop.resolve1.service not found.
raw.githubusercontent.com: resolve call failed: Unit dbus-org.freedesktop.resolve1.service not found
python3 -c 'import socket; print(socket.gethostbyname("raw.githubusercontent.com"))'

இந்த கமாண்டை இயக்கி வரும் தகவலை பகிரவும்.

49.44.79.236

nmcli

இந்த கமாண்டை இயக்கி வரும் தகவலை பகிரவும்.

wlp2s0: connected to Praem90_5G
        "Intel 8265 / 8275"
        wifi (iwlwifi), 20:79:18:A1:F9:F5, hw, mtu 1500
        ip4 default, ip6 default
        inet4 192.168.29.192/24
        route4 192.168.29.0/24 metric 600
        route4 default via 192.168.29.1 metric 600
        inet6 2405:201:e003:1b7:8f75:4ae4:dd30:8e1c/64
        inet6 fe80::eb62:b0f3:4f75:d995/64
        route6 fe80::/64 metric 1024
        route6 2405:201:e003:1b7::/64 metric 600
        route6 default via fe80::f2ed:b8ff:fe53:3bed metric 600
lo: connected (externally) to lo
        "lo"
        loopback (unknown), 00:00:00:00:00:00, sw, mtu 65536
        inet4 127.0.0.1/8
        inet6 ::1/128

docker0: connected (externally) to docker0
        "docker0"
        bridge, 02:42:D7:3D:0C:1C, sw, mtu 1500
        inet4 172.17.0.1/16
        route4 172.17.0.0/16 metric 0

p2p-dev-wlp2s0: disconnected
        "p2p-dev-wlp2s0"
        wifi-p2p, hw
enp0s31f6: unavailable
        "Intel I219-LM"
        ethernet (e1000e), C8:F7:50:2A:00:C6, hw, mtu 1500

DNS configuration:
        servers: 192.168.29.1
        interface: wlp2s0
nmcli -f uuid connection show | sed 1d | xargs -n 1 nmcli connection show uuid | grep -E 'connection.interface-name:|ipv4.method:'

இந்த கமாண்டை இயக்கி வரும் தகவலை பகிரவும்.

connection.interface-name:              wlp2s0
ipv4.method:                            auto
connection.interface-name:              lo
ipv4.method:                            manual
connection.interface-name:              docker0
ipv4.method:                            manual
connection.interface-name:              wlp2s0
ipv4.method:                            auto
connection.interface-name:              enp0s31f6
ipv4.method:                            auto```
cat /etc/resolv.conf

இந்த கமாண்டை இயக்கி வரும் தகவலை பகிரவும்.

இந்த சிக்கல் தொடர்கின்றதா என்று கூறவும்.

Yes, its still there…

nameserver 192.168.29.1
nameserver 2405:201:e003:1b7::c0a8:1d01
```
nmcli -f uuid connection show | sed 1d | while read uuid; do nmcli connection modify uuid "${uuid}" ipv6.method ignore ipv4.dns-priority -1 ipv4.dns 1.1.1.1; done
sudo systemctl restart NetworkManager
cat /etc/resolv.conf

இந்த கமாண்டுகளை இயக்கி வரும் தகவலை பகிரவும்.

1 Like

It was resolved now and I’m able to access the site now .
https://raw.githubusercontent.com/junegunn/vim-plug/master/.travis.yml

Thanks @mohan43u

Could you please help me to understand the issue?
Is it only because of the dns nameserver misconfiguration?

I have tried to add 8.8.8.8 too but it did not work that time.