RB2011: ether10 in mac server of default config missing

Hi all,

Affected ROS: up to 6.8rc1 (2013-12-17 08:56:16)
Affected HW: so far only seen on RB2011

The default configuration script doesn’t add ether10 to telnet interfaces and winbox interfaces of mac server settings. As the name ether10 is very similar to ether1, the following part of the default configuration script skips ether1 and ether10 from being added to interface list. For ether1 this is okay, but not for ether10, ether10 should be added to the allowed interfaces, too:

	/tool mac-server disable [find];
	/tool mac-server mac-winbox disable [find];
	:foreach k in=[/interface find] do={
		:local tmpName [/interface get $k name];
		:if (!($tmpName~"ether1")) do={
			/tool mac-server add interface=$tmpName disabled=no;
			/tool mac-server mac-winbox add interface=$tmpName disabled=no;
		}
	}

we will fix this in future RouterOS releases.