1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00
juanfont.headscale/tests/acls/acl_policy_basic_wildcards.hujson

20 lines
339 B
Plaintext
Raw Normal View History

2021-07-04 13:01:41 +02:00
// This ACL is used to test wildcards
{
"hosts": {
2021-07-04 13:01:41 +02:00
"host-1": "100.100.100.100",
"subnet-1": "100.100.101.100/24",
},
"acls": [
2021-07-04 13:01:41 +02:00
{
"Action": "accept",
"src": [
2021-07-04 13:01:41 +02:00
"*",
],
"dst": [
2021-07-04 13:01:41 +02:00
"host-1:*",
],
},
],
}