Why does this relevance not work?

Q: (addresses of dns servers of adapters whose (address of it as string contains "10.") of network as string)
A: 10.10.10.10
A: 10.10.10.11
T: 44746

Q: (addresses of dns servers of adapters whose (address of it as string contains "10.10") of network as string)
T: 20526

What am I missing here that’s going to make me look pretty stupid when someone tells me the answer?

The comparison you’re making “10.” or “10.10”, is being made against your client’s own IP addresses, not against the addresses of their DNS servers. What are your IP addresses?

Q: addresses of adapters of network as string

Q: addresses of adapters whose (address of it as string contains "10.") of network as string

Q: addresses of adapters whose (address of it as string contains "10.10") of network as string

If you wanted to compare against the DNS server values you’d have to move the comparison slightly

Q: (addresses whose (it as string contains "10.") of dns servers of adapters of network as string)

Q: (addresses whose (it as string contains "10.10") of dns servers of adapters of network as string)
1 Like

Yup - stupid feeling :smiley:

Q: addresses of dns servers of adapters of network
A: x.x.x.x
A: y.y.y.y
A: 192.168.0.1
T: 160333

Q: addresses of dns servers of network
A: x.x.x.x
A: y.y.y.y
A: 192.168.0.1
T: 34602 

Is there any clear difference in both of these?

1 Like