Hello. I wanted to know if it was possible to get a VMWare guest VM that’s acting as my self-hosted streaming server to be accessible by other devices outside my host pc?

I know it would be able to if I just set it to a bridged network connection, but I also want it to strictly only have access to the internet through my host pc that would also be using a VPN, which is why I want to leave it on NAT.

Basically, I want all my local network devices on my router to be able to access a guest VM on my PC that is only able to access the internet through the host PC.

I’m using VMWare workstation Pro, with an Ubuntu guest VM that has Jellyfin, Plex, Jackett, and etc. for streaming media.

  • Brownian Motion@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    4
    ·
    8 months ago

    Thats not how it works.

    You have a LAN and hopefully you have a firewall that shields your LAN from WAN. Your fw is probably handing out DHCP lease IP (like 192.168.x.y)

    When you “bridge” your VM looks like an independant device on you LAN. Nothing at this point has allowed it to the public. Your dhcp can even give it an IP (but its probably better to set a static ip). In bridge mode, a "fake mac is spoofed alongside you nic’s real mac, and only for said VM)

    At that point the VM id accessible likr any other device on the LAN.

    if you then want to use vpn, just connect to your LAN however that works(vpn to computer or vpn to firewall/vpn server) and access.

    if you want to access from WAN without vpn, then you need to understand reverse proxying and youll need a full proper firewall\gateway device at the front of your network (like OPNsense).