1

I'm trying to install a vpn ( PPTPD) server using digital ocean tutorial. Everything looks straightforward except that I don't know what the remoteip ip/range is. Is it something that I should look /scan from my server ? In the tutorial it says

localip 10.0.0.1
remoteip 10.0.0.100-200
Where localip is IP address of your server and remoteip are IPs 
that will be assigned to clients that connect to it.

I assume the localip is the Ip address that I'm using to connect to the server. However I don't know what the remoteip is because digital ocean does not support multiple Ip addresses. It is so frustrating !!!!

Anthony Hunt
  • 115
  • 5

1 Answers1

2

You are creating a VPN. This VPN is tunneled in normal IP connections. The localip and the remoteip address are taken from RFC1918 private address spaces as per the example.

In the example the Server will have aVPN address of 10.0.0.1 and it will provide VPN addresses ranging from 10.0.0.100 to 10.0.0.200 to connecting clients.

user9517
  • 115,471
  • 20
  • 215
  • 297