Hi guys
just wondering if anyone has a basic ACL file for hiding devices on tailnet from eachother?
I tried using this below but i get error:
Error: ports="autogroup:self:": invalid port list: ""
{
"acls": [
// all employees can access their own devices
{
"action": "accept",
"src": ["autogroup:members"],
"dst": ["autogroup:self:"],
},
// all employees can access devices tagged tag:client
{
"action": "accept",
"src": ["autogroup:members"],
"dst": ["tag:client:"],
},
{
"action": "accept",
"src": [""],
"dst": ["autogroup:internet:"],
},
],
"tagOwners": {
// all employees can manage which devices are tagged tag:client
"tag:client": ["autogroup:members"],
},
}
If anyone has an example that works that would be greatly appreciated