I'm not sure where to go to even start with debugging, so I'm asking for help.
wg1.conf (renamed because otherwise wg-quick complains about naming):
Code: Select all
[Interface]
# Key for temp2
# Bouncing = 2
# NAT-PMP (Port Forwarding) = off
# VPN Accelerator = on
PrivateKey = {key}
Address = 10.2.0.2/32
DNS = 10.2.0.1
[Peer]
# CA-FREE#11
PublicKey = {key}
AllowedIPs = 0.0.0.0/0, ::/0
Endpoint = 149.22.81.28:51820
Code: Select all
~ # ping www.google.com
ping: www.google.com: Temporary failure in name resolution
# ping 151.101.193.140
PING 151.101.193.140 (151.101.193.140) 56(84) bytes of data.
^C
--- 151.101.193.140 ping statistics ---
16 packets transmitted, 0 received, 100% packet loss, time 15207ms
~ # ping 4.4.4.4
PING 4.4.4.4 (4.4.4.4) 56(84) bytes of data.
^C
--- 4.4.4.4 ping statistics ---
4 packets transmitted, 0 received, 100% packet loss, time 3040ms
~ # ping 10.2.0.1
PING 10.2.0.1 (10.2.0.1) 56(84) bytes of data.
64 bytes from 10.2.0.1: icmp_seq=1 ttl=64 time=157 ms
64 bytes from 10.2.0.1: icmp_seq=2 ttl=64 time=157 ms
64 bytes from 10.2.0.1: icmp_seq=3 ttl=64 time=157 ms
^C
--- 10.2.0.1 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2002ms
rtt min/avg/max/mdev = 156.853/157.008/157.286/0.197 ms
~ # ping 1.1.1.1
PING 1.1.1.1 (1.1.1.1) 56(84) bytes of data.
^C
--- 1.1.1.1 ping statistics ---
2 packets transmitted, 0 received, 100% packet loss, time 1006ms
4.4.4.4 is a google dns.
1.1.1.1 is a cloudflare dns.
What should I even be looking at to figure this out?

