find command and special character question!

Hi,

I have a network of some MikroTik’s 333 connected both via wireless and via ethernet. Wireless IP’s are 10.10.x.x like, and ethernet IP’s are 10.11.x.x like. I don’t know if it is possible but i’d like my script to find only all 10.10.x.x like IP’s among all IP’s listed in /ip neighbor and then having the values of these concrete IP’s to perform a ICMP bandwidth evaluation test to monitor the bandwidth of each wireless link. How i can do that? Is there any special character that can make viable the following command /ip neighbor>:put [find address=10.10.?.?] so it can find all ip’s belonging to a net but not specifying the host octets values?? Anyone can help with that script?? Thanks a lot,

Something like:

:local myIp ""

/ip neighbor

:foreach i in=[find] do={ 
	:set myIp [ get $i address ]
	:if ( $myIp >= "10.10.0.0" && $myIp <="10.10.255.255" ) do={

		:log info ( "Do some action with this ip ... " . $myIp )

	}
}