"find" not work!

Hi!

I’m running Mikrotik 5.7 and all “find” command respond with no entry!

Example:

[admin@MikroTik] > /interface ethernet export 
/interface ethernet
set 0 arp=enabled auto-negotiation=yes disabled=no full-duplex=yes l2mtu=1526 mac-address=00:0C:42:B6:25:8F mtu=1500 na

[admin@MikroTik] > /interface ethernet find where disabled=no
[admin@MikroTik] > /interface ethernet find where disabled="no"
[admin@MikroTik] > /interface ethernet find disabled="no"      
[admin@MikroTik] > /interface ethernet find              
[admin@MikroTik] >

Can you help me?

Thanks!

The results of find are returned, not displayed. This allows you to easily use the value in scripting.

But if you insist on displaying the value, you can always surround it with a “:put” like this:

:put [/interface ethernet find where disabled=no]

Thanks!