-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusers.example.json
37 lines (37 loc) · 935 Bytes
/
users.example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"users": [
{
"description": "test user with plain text password",
"auth": {
"username": "a-username",
"password": "a-password"
},
"reply_attr": {
"Tunnel-Type": "VLAN",
"Tunnel-Medium-Type": "IEEE-802",
"Tunnel-Private-Group-Id": "4094",
"Acct-Interim-Interval": 300
}
},
{
"description": "test user with hashed password",
"auth": {
"username": "test",
"passtype": "sha512",
"password": "ee26b0dd4af7e749aa1a8ee3c10ae9923f618980772e473f8819a5d4940e0db27ac185f8a0e1d5f84f88bc887fd67b143732c304cc5fa9ad8e6f57f50028a8ff"
},
"reply_attr": {
"Tunnel-Type": "VLAN",
"Tunnel-Medium-Type": "IEEE-802",
"Tunnel-Private-Group-Id": "4094",
"Acct-Interim-Interval": 300
}
}
],
"includes": [
{
"path": "users2.json",
"enable": false
}
]
}