Hello Everyone,
I have a RB-751U in my office and I’m setting up an openvpn connection. I really need openvpn since it has the capability to pass through most firewalls because it’s using common ports.
My certificates are well generated, I already imported them in my Mikrotik. Below is my sample Mikrotik config:
/ip pool add name=ovpn-pool ranges=10.1.0.2-10.1.0.100
/ppp profile
add change-tcp-mss=default comment=“” local-address=10.1.0.1
name=“openvpn-in” only-one=default remote-address=openvpn-pool
use-compression=default use-encryption=required use-vj-compression=default
/interface ovpn-server server set auth=sha1,md5 certificate=server-cert
cipher=blowfish128,aes128,aes192,aes256 default-profile=openvpn-in
enabled=yes keepalive-timeout=disabled max-mtu=1500 mode=ip netmask=24
port=1194 require-client-certificate=no
/ppp secret add disabled=no name=“client1” password=“password1”
My openvpn client utility (For Windows 7) is configured with the key I’ve generated from linux openvpn. When I connect I can already log-in, the problem is that I can only log in for a while. It say’s obtaining IP and my winbox logs are below:
14:33:01 ovpn,info TCP connection established from 222.1.1.1
14:33:01 ovpn,info : dialing…
14:33:04 ovpn,info : using encoding - AES-128-CBC/SHA1
14:33:05 ovpn,info : connected
14:33:05 ovpn,info,account client1 logged in, 10.0.1.51
14:33:17 ovpn,info,account client1 logged out, 13 0 0 0 0
14:33:17 ovpn,info : terminating… - peer disconnected
14:33:17 ovpn,info : disconnected
Has anyone tried using the openvpn client utility from openvpn.net?
Thanks in advanced.