Hi
I am new to this forum and wireguard. This may be an easy fix but I can’t see what I am doing wrong.
Wireguard config:
set interfaces wireguard wg1 address ‘xxx.xxx.255.1/24’
set interfaces wireguard wg1 description ‘’
set interfaces wireguard wg1 peer PAA-5511 allowed-ips ‘xxx.xxx.255.11/32’
set interfaces wireguard wg1 peer PAA-5511 persistent-keepalive ‘15’
set interfaces wireguard wg1 peer PAA-5511 pubkey ‘**********’
set interfaces wireguard wg1 peer Win10_VM allowed-ips ‘xxx.xxx.255.10/32’
set interfaces wireguard wg1 peer Win10_VM persistent-keepalive ‘15’
set interfaces wireguard wg1 peer Win10_VM pubkey '***’
set interfaces wireguard wg1 port ‘22254’
set interfaces wireguard wg1 private-key ‘roadwarrior’
Client config:
[Interface]
PrivateKey = ******
Address = 10.254.255.11/24
[Peer]
PublicKey = ******
AllowedIPs = 10.254.0.0/16, 192.168.0.0/22, 192.168.64.0/19
Endpoint = *****:22254
PersistentKeepalive = 25
It seems like ping is arriving from the client at the wg interface but it isn’t answering back.
run monitor traffic interface any filter ‘host 10.254.255.1’
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on any, link-type LINUX_SLL (Linux cooked), capture size 262144 bytes
14:48:38.554795 IP 10.254.255.11 > 10.254.255.1: ICMP echo request, id 1000, seq 409, length 40
14:48:38.714615 IP 10.254.255.11 > 10.254.255.1: ICMP echo request, id 1, seq 1452, length 40
14:48:43.558419 IP 10.254.255.11 > 10.254.255.1: ICMP echo request, id 1000, seq 410, length 40
14:48:43.725558 IP 10.254.255.11 > 10.254.255.1: ICMP echo request, id 1, seq 1453, length 40
What am I doing wrong?