Есть MikroTik ether1 - ip белый, ether2 - мост (dhcp 192.168.1.10-100), ether3 - мост (dhcp 192.168.10.1-100). Настроен сервер OpenVPN на Ubuntu 18.04 (ip 192.168.1.252). Когда подключаешься к впн из локальной сети, подключение происходит нормально. Когда подключаешься из инета, идет ошибка: read UDP: Unknown error (code=10054).
Конфигурация OpenVPN сервера
Код: Выделить всё
port 1194
proto udp
dev tun
ca ca.crt
cert srvvpn.crt
key srvvpn.key
dh dh2048.pem
tls-auth ta.key 0
cipher AES-256-CBC
auth SHA256
server 10.0.10.0 255.255.255.0
keepalive 10 120
persist-key
persist-tun
client-config-dir ccd
status srvvpn.log
log /var/log/srvvpn.log
comp-lzo
verb 3
sndbuf 0
rcvbuf 0
push "redirect-gateway def1"
push "dhcp-options DNS 82.209.240.241"
Код: Выделить всё
client
dev tun
proto udp
remote xxx.xxx.xxx.xxx 1194
resolv-retry infinite
nobind
persist-key
persist-tun
ca ca.crt
cert adm.crt
key adm.key
tls-auth ta.key 1
cipher AES-256-CBC
auth SHA256
ns-cert-type server
comp-lzo
log adm.log
verb 5
sndbuf 0
rcvbuf 0
Код: Выделить всё
iptables -L -t nat
Chain PREROUTING (policy ACCEPT)
target prot opt source destination
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Chain POSTROUTING (policy ACCEPT)
target prot opt source destination
MASQUERADE all -- 10.0.10.0/24 anywhere
Код: Выделить всё
/ip firewall filter print
Flags: X - disabled, I - invalid, D - dynamic