Problem by accessing or establishing vpn connection to isp

Hy I downloaded RouterOS 3.13 for PC i-386 and installed it properly… but my biggest problem is to get connected from my os to the isp and therefore to the internet.

It´s a normal VPN i have to use, here are some details of what I have to get access to…

With a standard Linux Ubuntu it looks like this and it works great to get connected to the internet:

Internet-Protokoll (IPv4)
Adress: 193.151.62.219
Destination: 80.121.192.19
Subnet: 255.255.255.255

Network interface:

Typ: PTP Point to Point Protocol

My ICP gives me the following details to establish VPN: IP: 10.3.1.3
and then I have to enter my Username and Password…

So this is the first problem to get connected to the internet…although I used the help on mikrotik.com

So pse give me a hint etc… Thank´s in advance… Chris :slight_smile:

Is it a PPTP connection?? If so the interface first needs a IP address to connect to the VPN server so you’ll need to setup a dhcp-client.

/ip dhcp-client add interface=ether1 add-default-route=no use-peer-dns=no disabled=no

Then you’ll need to setup the PPTP interface.

/interface pptp-client add add-default-route=yes allow=pap,chap,mschap1,mschap2 connect-to=10.3.1.3 user=USERNAME password=PASSWORD profile=default name=ISP disabled=no

If you have PCs behind the mikrotik router you have to setup masquerading.

/ip firewall nat add chain=srcnat action=masquerade out-interface=ISP disabled=no