Page 1 of 1

type of openvpn

Posted: Sun Oct 30, 2022 6:22 pm
by mikibenx
hello
i install open vpn with my server and client
this run
but i can't see a ip address link of my server
this is file of server.ovpn

Server Config
#
port 443
proto udp4
dev tun
ca "C:\\Program Files\\OpenVPN\\config\\ca.crt"
cert "C:\\Program Files\\OpenVPN\\config\\server.crt"
key "C:\\Program Files\\OpenVPN\\config\\server.key" # This file should be kept secret
dh "C:\\Program Files\\OpenVPN\\config\\dh.pem"
server 192.168.1.0 255.255.255.0
ifconfig-pool-persist ipp.txt
route 10.9.0.0 255.255.255.0
keepalive 10 120
cipher AES-256-CBC
persist-key
persist-tun
status openvpn-status.log
verb 3
explicit-exit-notify 1

i need to one server with four access from client
how too?
this file is client.ovpn

client
Client Config
#
dev tun_c_ovpn
proto udp
remote myip 443
resolv-retry infinite
keepalive 5 10
nobind
persist-key
;persist-tun
verb 3


thank you