Skip to content

Commit

Permalink
[#2022] fix User-Password example in ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-pavel committed Feb 19, 2024
1 parent 47cdf70 commit fb95aed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/sphinx/arm/ext-radius.rst
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ And here's how to specify period-separated hexadecimal notation (``dead.beef.caf
"attributes": [
{
"name": "User-Password",
"expr": "concat(concat(concat(substring(hexstring(pkt4.mac, ''), 0, 4), '.'), concat(substring(hexstring(pkt4.mac, ''), 4, 4), '.'), concat(substring(hexstring(pkt4.mac, ''), 8, 4), '.'))"
"expr": "substring(hexstring(pkt4.mac, ''), 0, 4) + '.' + substring(hexstring(pkt4.mac, ''), 4, 4) + '.' + substring(hexstring(pkt4.mac, ''), 8, 4)"
}
]
}
Expand Down

0 comments on commit fb95aed

Please sign in to comment.