What's new

Need some help to set up OpenVPN server on Windows PC

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

rescapind

Occasional Visitor
Hi,

My setup is as following:
- Router N66U: 192.168.11.1
- My OpenVPN server PC: 192.168.11.101
- My OpenVPN client PC: 192.168.13.5

From my server PC, I can access "\\192.168.13.5" for WFS.
However, from my client PC, I cannot access "\\192.168.11.101" for WFS.

Please kindly help.
Thank you very much.

Server profile:
port 60103
proto tcp
dev tun
dev-node DNOVN

ca ca.crt
cert DNOVN_Server.crt
key DNOVN_Server.key
dh dh1024.pem

server 192.168.13.0 255.255.255.0
push "route 192.168.11.0 255.255.255.0"
push "dhcp-option DNS 192.168.11.1"
push "dhcp-option WINS 192.168.11.1"

client-config-dir ccd
client-to-client
keepalive 10 120
cipher AES-128-CBC
comp-lzo
persist-key
persist-tun
status openvpn-status.log
verb 3

Client profile:
client
dev tun
dev-node DNOVN
proto tcp
remote xxx.xxx.xxx 60103
resolv-retry infinite
nobind
persist-key
persist-tun

ns-cert-type server
cipher AES-128-CBC
comp-lzo
verb 3

<ca>
-----BEGIN CERTIFICATE-----
xxx
-----END CERTIFICATE-----
</ca>

<cert>
-----BEGIN CERTIFICATE-----
xxx
-----END CERTIFICATE-----
</cert>

<key>
-----BEGIN ENCRYPTED PRIVATE KEY-----
xxx
-----END ENCRYPTED PRIVATE KEY-----
</key>
 

Similar threads

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top