オープン VPN パケットはトンネルを通過しません。

オープン VPN パケットはトンネルを通過しません。
port 1194 
proto udp
dev tun
ca ca.crt
cert server.crt
key server.key
dh dh2048.pem
tls-auth ta.key 0
key-direction 0
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
client-to-client
push "redirect-gateway def1 bypass-dhcp"
push "dhcp-option DNS 208.67.222.222"
push "dhcp-option DNS 208.67.220.220"
duplicate-cn
keepalive 10 120
cipher AES-128-CBC
auth SHA256
comp-lzo
user nobody
group nogroup
persist-key
persist-tun
status openvpn-status.log
verb 3

これは私が使用するサーバーconfファイルです。

client
dev tun
proto udp
remote ********* 1194
resolv-retry infinite
nobind
user nobody
group nogroup
persist-key
persist-tun
remote-cert-tls server
tls-auth ta.key 1
key-direction 1
cipher AES-128-CBC
redirect-gateway def1
auth SHA256
comp-lzo
verb 3

これは私が使用したクライアントconfファイルです。

パケットがサーバーに送信されても​​トンネルを通過しません。私はTracerouteを使用してクライアントとサーバー間のパスを確認し、パケットは別のパスを使用しました。パケットがトンネルを通過できるように、confファイルにコマンドを変更または追加する必要がありますか?

ベストアンサー1

おすすめ記事