this post was submitted on 17 Jun 2023
11 points (100.0% liked)

Selfhosted

39435 readers
2 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

Hey! I know this is maybe better suited for a VMWare group, but I can't find one with the whole Reddit fiasco. So I'm hoping someone can point me in the right direction or give a bit of advice.

I have VMWare Workstation 16 currently using NAT. This has been working well for a while, as whenever I need to open a port, I just manually do it one by one. But as I've been hosting game servers it's becoming a bit tedious to do one by one and there's not an option to open ports by ranges using NAT.

I read that Bridged is what is recommended for my use case. And I've tried this but can never get it to work. I've tried deselecting all but the main NIC too.

I rent a dedicated server, I only have access to one IP with the option to purchase a secondary IP. I'm guessing it's because of this I can't get Bridge to work, because I don't have access to DHCP.

Is my only option to purchase a secondary IP, create a VM for PfSense and have that manage the DHCP? (That's even if I'm understanding this correctly)

Or would installing something like EXSi achieve what I'm trying to do?

Many thanks in advance!

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 5 points 1 year ago (2 children)

I think you might be misunderstanding what bridging and NAT are.

Network Address Translation (NAT) is a technology that allows one IP to have many IPs behind it, and those IPs will route through a specific (potentially virtual) machine to reach things on the internet (and vice versa). In the case of a VPS hosting VMs or Containers it allows you to have many different VMs and Containers share a single IP and therefore save IPs and money.

Bridging is effectively creating a switch, so every VM would be directly connected to whatever network is a being bridged (sounds like that would be the internet in this case)

On a VPS you would almost definitely want to be using NAT

[–] [email protected] 0 points 1 year ago (1 children)

Hi! Thank for replying!

I certainly won't disagree about misunderstanding, and thank you for explaining. I noticed you saying that for VPS I would certainly want to be using NAT, would that also apply for dedicated server? As that's what I'm using and thought there was a difference. (Sorry if I come across as dense, it's because I am dense haha.)

I would quite happily still use NAT if there was a way that I could open a range of ports for one of the VM's. As I do want to expose that VM to the internet as it'll be used for deploying several steam game servers.

Which is why I thought that my option would be to purchase a secondary IP, create a virtual nic using the details of that secondary ip, and create a pfsense vm and have that acting as a dhcp for the vm that I want to expose with a range of open ports.

I then thought that instead of purchasing a secondary ip, maybe I could still achieve this if I changed my host(currently windows) to proxmox or exsi to achieve what I'm hoping to try and do. But the more that I'm reading, the more I'm thinking I might just need that second ip.

[–] [email protected] 2 points 1 year ago

Purchasing a second IP won't stop you from needing to forward ports. As long as you're exposing services to the internet you'll need to open and forward ports as any kind of firewall requires you to poke holes for the services you want people to access.

What you might be able to do if you just want port ranges is setup a PFsense VM with two virtual NICs, one bridged with the public IP you're renting and one set to a VMware internal network (I think that's the verbage VMware uses) as a LAN, then connect all of your individual virtual machines to that internal network. You would need to somehow access the PFsense webgui from an internal VM though as that shouldn't ever be exposed to the outside internet, and there is the performance hit to consider if your server is at all resource constrained

From a networking standpoint there's no difference between a VPS and a dedicated server. A VPS is just a VM that you're renting sharing hardware with a bunch of other VMs rented by other customers, meanwhile a dedicated server is renting an entire server (I've also seen some services offering the middle ground of a dedicated CPU where you aren't potentially sharing CPU cycles but still get the cost efficiency of sharing hardware. Still exactly the same from a networking standpoint though)

Why do you believe you need a second IP?