Answer the question
In order to leave comments, you need to log in
Openvpn routing in Yandex cloud?
I'm trying to set up routing through a vpn gateway to three Yandex.cloud subnets. So far, only ping goes from the remote machine 10.128.0.26 When trying to curl from the remote machine 10.128.0.26:9000, the hanging command cannot resolve the host.
From vpn server 10.129.0.24 curl to 10.128.0.26:9000 works. Moreover, the curl also works from the vpn server to the remote machine 10.9.0.6
Network diagram
openvpn config
# Ansible managed
port 8500
proto udp
dev tun
ca /etc/openvpn/keys/ca.crt
cert /etc/openvpn/keys/server.crt
key /etc/openvpn/keys/server.key
dh /etc/openvpn/keys/dh.pem
tls-auth /etc/openvpn/keys/ta.key 0
tls-server
auth SHA256
cipher AES-256-CBC
tls-version-min 1.2
tls-cipher TLS-ECDHE-ECDSA-WITH-AES-256-GCM-SHA384:TLS-ECDHE-RSA-WITH-AES-256-GCM-SHA384:TLS-DHE-RSA-WITH-AES-256-GCM-SHA384:TLS-ECDHE-ECDSA-WITH-AES-256-CBC-SHA384:TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA384:TLS-DHE-RSA-WITH-AES-256-CBC-SHA256
server 10.9.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
push "dhcp-option DNS 10.129.0.2"
push "dhcp-option DNS 1.1.1.1"
push "dhcp-option DNS 8.8.8.8"
push "route 10.128.0.0 255.255.255.0"
push "route 10.129.0.0 255.255.255.0"
push "route 10.130.0.0 255.255.255.0"
keepalive 5 30
compress lz4-v2
persist-key
persist-tun
user nobody
group nogroup
status status-openvpn_udp_8500.log
status-version 1
log-append /var/log/openvpn.log
verb 3
10.9.0.1 10.9.0.5 255.255.255.255 UGH 0 0 0 tun0
10.9.0.4 0.0.0.0 255.255.255.252 U 0 0 0 tun0
10.128.0.0 10.9.0.5 255.255.255.0 UG 0 0 0 tun0
10.129.0.0 10.9.0.5 255.255.255.0 UG 0 0 0 tun0
10.130.0.0 10.9.0.5 255.255.255.0 UG 0 0 0 tun0
Answer the question
In order to leave comments, you need to log in
The problem turned out to be broken openvpn compression. And in fact it must be disabled https://community.openvpn.net/openvpn/wiki/VORACLE
It is also not superfluous to set up static routes between the vpn network and the Yandex network https://cloud.yandex.ru/docs/vpc/concepts/ static routes
Routing, masquerading or packet forwarding on a vpn server is a classic set. Take tcpdump and see what goes where or does not go.
push "dhcp-option DNS 10.129.0.2"
push "dhcp-option DNS 1.1.1.1"
push "dhcp-option DNS 8.8.8.8"
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question