Hi everyone.
If you don't use AI criteria manifests, you may delete this message...
When you update to the latest SUNWinstalladm-tools package that contains the
fix for:
4325 Better syntactic treatment of IP and MAC address AI criteria
the criteria manifest format changes slightly in the following ways:
1) MAC address and IP address criteria now must have punctuation.
- IP addrs must have three dots separating the four subnet values
- MAC addrs must have five colons separating the six 8-bit hex
values
2) Ranges with an unbounded end are now specified with "unbounded"
instead of "None". For example, for all IPv4 addresses above 100.0.0.0,
you would say:
<ai_criteria name="ipv4">
<range>
100.0.0.0 unbounded
</range>
</ai_criteria>
3) Ranges where min=max may now be specified with a single value.
Instead of doing this:
<ai_criteria name="mac">
<range>
1:2:3:4:5:6 1:2:3:4:5:6
</range>
</ai_criteria>
you can do this now:
<ai_criteria name="mac">
<value>
1:2:3:4:5:6
</value>
</ai_criteria>
Thanks,
Jack