Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
Heya, @robert429b8ca91
Yes, this should be doable. Add a route to direct traffic for Netbird addresses through the private DO network. For example:
sudo ip route add <Netbird_Address> via <Private_IP_of_Target_Droplet>
Replace <Netbird_Address> with the VPN address of the remote droplet and <Private_IP_of_Target_Droplet> with its private IP.
If your Netbird setup includes a default route (e.g., 0.0.0.0/0 via the VPN), this may override your private network routing. To avoid conflicts:
Exclude the DO private network range (e.g., 10.0.0.0/8) from Netbird’s default route.
Update your Netbird configuration to include specific routes for other network traffic.
Ping the private IPs of your droplets to confirm that inter-droplet communication uses the private network:
ping <Private_IP_of_Remote_Droplet>
traceroute to check the path taken by packets:traceroute <Netbird_Address>
You can then temporarily disable the Netbird VPN or private network on one droplet to ensure the fallback to the appropriate route.
Hope that this helps!