mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-10 09:02:30 +08:00
3e353004b8
Implements #617. Tailscale has changed the format of their ACLs to use a more firewall-y terms ("users" & "ports" -> "src" & "dst"). They have also started using all-lowercase tags. This PR applies these changes.
24 lines
No EOL
446 B
Text
24 lines
No EOL
446 B
Text
// This ACL is a very basic example to validate the
|
|
// expansion of hosts
|
|
|
|
|
|
{
|
|
"hosts": {
|
|
"host-1": "100.100.100.100",
|
|
"subnet-1": "100.100.101.100/24",
|
|
},
|
|
|
|
"acls": [
|
|
{
|
|
"action": "accept",
|
|
"src": [
|
|
"subnet-1",
|
|
"192.168.1.0/24"
|
|
],
|
|
"dst": [
|
|
"*:22,3389",
|
|
"host-1:*",
|
|
],
|
|
},
|
|
],
|
|
} |