# ROLLBACK — obnova Unraid WireGuard objektů na routeru MikrotikFirewall # Odstraněno 2026-06-18 na žádost uživatele. Spusť tyto příkazy pro obnovu. /ip firewall nat add chain=dstnat action=dst-nat to-addresses=192.168.1.76 to-ports=51820 protocol=udp in-interface=pppoe-out1 dst-port=51820 comment="WireGuard to Unraid" /ip firewall filter add chain=input action=accept protocol=udp in-interface=pppoe-out1 dst-port=51820 comment="Allow WireGuard" /ip firewall filter add chain=forward action=accept src-address=10.253.0.0/24 comment="Allow VPN to LAN" /ip firewall filter add chain=forward action=accept dst-address=10.253.0.0/24 comment="Allow LAN to VPN" /ip route add dst-address=10.253.0.0/24 gateway=192.168.1.76 comment="Route to WireGuard VPN via Unraid" # Pozn.: po obnově zkontroluj pořadí filter pravidel (accept musí být PŘED drop).