Posted on 12-17-2023 04:26 PM
I'm trying to create an extension attribute to report back ipv6 addresses but not having much luck...
So far I got this...
Anybody had success with doing something similar?
Solved! Go to Solution.
Posted on 12-17-2023 04:34 PM
You need to enclose your results in <result></result> tags, ie
echo "<result>$ipv6_address</result>"
Refer to https://learn.jamf.com/bundle/jamf-pro-documentation-current/page/Computer_Extension_Attributes.html for more info
Posted on 12-17-2023 04:34 PM
You need to enclose your results in <result></result> tags, ie
echo "<result>$ipv6_address</result>"
Refer to https://learn.jamf.com/bundle/jamf-pro-documentation-current/page/Computer_Extension_Attributes.html for more info
Posted on 12-17-2023 04:55 PM
Thanks Shannon, that worked a treat! Appreciate the speedy reply as well!