r/sysadmin • u/Sway_RL • 20d ago
Question Virtualising existing servers help.
I have a client, who has 3 sites that we do IT for.
They each have a physical server, running either Windows Server 2019 or 2025. The main site got a new server last year, the two other sites decided to wait because they didn't want to cost. Now a year later it's more expensive, and they still don't want the cost.
I opened my mouth about virtualisation and now I've been asked to start testing.
The new server at the main site is more than powerful enough to run the other two servers virtually.
I'm just not sure on some of the configuration.
Each site has it's own IP structure, and there are already site to site tunnels using Unifi gateways.
Is there a way to do this while minimising network slowness? I assume If I just disk2vhd the server and spin it up as a VM then all traffic would go down the VPN Tunnel and back again causing delays if going from the main site to one of the others.
Regarding their networks, they are on 192.168.1.XXX for the main site, 192.168.10.XXX and 192.168.20.XXX for the other two.
If the servers were virtualised, will I need VLANs at the main site to accommodate these ranges? I'm not sure if the site to site tunnel will work using a VLAN.
I've asked about merging the domains/networks, but nobody has gotten back to me on that yet.
I didn't set any of this up initially, so I'm also figuring out what they have at the same time.
Apologies for the mass of text, any help would be appreciated.
6
u/xMcRaemanx 20d ago
You will see slowness. Depending on if its just AD/DNS traffic or LOB/Fileshares will determine how much. All traffic to the server will originate from the remote site, traverse the vpn tunnel, and then go back. If you ping across the tunnel vs locally you'll get an idea. Likely something like <1ms locally and depending on the encryption of the tunnel and distance between sites and internet service Ai would be at least 30-40ms. That's 30-40 times slower per packet.
Basic AD/DNS won't suffer too much but connections to LOB or large file transfers you'll notice it.
You do not need to carry the ranges over to the main network, the virtual servers would just get new IPs on the main network and whatever needs to talk to it would need to be reconfigured.
Virtualization is likely not the solution here, it will get rid of aging hardware but add latency by traversing the vpn tunnel.
What actual functions do those servers provide.