Hello. I'm looking optimal config Wireguard for maximum speed.
##### RouterOS 7.1b6: create Wireguard server
# create the server
/interface wireguard add listen-port=13231 mtu=1420 name=wireguard1
# get server's public key
/interface wireguard print
# add IP-address to the interface
/ip address add address=10.0.0.1/24 interface=wireguard1 network=10.0.0.0
# allow from firewall
/ip firewall filter add action=accept chain=input comment="Accept WireGuard" dst-port=13231 log=yes log-prefixWireGuard: protocol=udp
# configure client and get the client's public key
[Interface]
PrivateKey = CLIENT-PRIVATEKEY
Address = 10.0.0.2/24
[Peer]
PublicKey = ROUTER-PUBLICKEY
AllowedIPs = 0.0.0.0/0
Endpoint = serverhostname:13231
# add client to the configuration
/interface wireguard peers add allowed-address=10.0.0.2/32 interface=wireguard1 public-key="CLIENT-PUBLICKEY"
##### End of Wireguard
What improvements and comments will there be?
Thank you