Creating multiple subnetwork like networking

Hi, so i realy like tailscale i use it for personal stuff, but i now have a problem i would like to solve, So i am family sysadmin and im wondering is there a way i could create a subnet of sorts in my tailnet(probably through ACL) for those computers that i administer, so that i can connect to them whenever family members have problems whether im home or not but those computers cant connect into other machines.

Your first step is to create and assign tags for each device owner. Mom, Dad, your siblings, whoever.

Then, for each owner-tag, you’re going to want an ACL rule like this so an owner’s devices can interconnect (using the tag mom as an example):

{
    "Action": "accept",
    "Users":  ["tag:mom"],
    "Ports":  ["tag:mom:*"],
},

And finally, so you can access everything (assuming you named your tag personal):

{ 
    "Action": "accept",
    "Users":  ["tag:personal"],
    "Ports":  ["*:*"],
},
1 Like