2

I have a LAN behind a Linksys RV016 Router. It is connected to the internet with DSL line with asymetric parameters 2Mbit download / 512 kbit upload.

In this LAN I have MS SQL server, and i want to connect to it remotely via VPN. To do this I use my RV016 router's PPTP function. Connection works fine, but ... little to slow.

And here is my question: what may be the bottleneck - is it only my DSL line's speed parameters ? Or may it be caused ALSO by router's hardware parameters (processor, RAM) ? In that case is it reasonalbe to set additional server VPN server inside the LAN, so that router only forwars communication on appropriate port and the rest is up to VPN server ?

mfinni
  • 35,711
  • 3
  • 50
  • 86
malloc4k
  • 831
  • 2
  • 9
  • 16

4 Answers4

4

With 2048/512 kbit/s, you are most likely restricted by bandwidth, not by your routers hardware.

Sven
  • 97,248
  • 13
  • 177
  • 225
1

The speed will be limited to your upload connection, if you are trying to access the VPN DB over the internet. Also, there's a good chance the MySQL will be slightly slower if you have SSL-based VPN since each packet is encrypted, with additional bytes (size of enc) on each packet -- so it's transfering more data than if you are using non-encrypted connection.

Ben Ashton
  • 151
  • 4
1

In addition to what others already have said, if you download a file over the vpn, the file will get in essence first go downstream on your DSL and then upstream.

The download capacity will be a bit below the maximum upstream bandwidth due to the double (assumed) TCP overhead, and GRE encapsulation. The RTT will probably cause all downloads to start slower aswell.

3molo
  • 4,340
  • 5
  • 30
  • 46
0
  1. Yup, the slowdown is almost definitely due to your bandwidth, and (remotely possible) any traffic-shaping that your ISP might be doing on inbound traffic.

  2. It's possible that the router might be doing too much, but unless you're doing a lot of VPN connections, or doing something like BitTorrent, it's probably not the problem.

  3. By "connecting", do you mean using RDP, or something that actually makes SQL connections, like SQL Management Studio or osql or ADO/ODBC/etc? The latter will always be slower over a WAN link than a LAN, period.

  4. This question should have been posted to SuperUser. SF is specifically not for home users, home servers, etc. Please read the FAQ. Your question will move automatically when it's gotten enough close/move votes.

mfinni
  • 35,711
  • 3
  • 50
  • 86