Interface Rate script

Hi,

is there a script or someone could write it for incoming rate change, checks by scheduler and sends an email if there are changes.

Have some ISP problems, my rate falls from 1GB to 100MB, so need to know when it happens again.

This should help you out some.
F.eks your default speed on ethernet 1 is 1Gbps speed.
Add this to a script, and schedule it to run every minute.
Change this part ":put “ether1 is NOT 1Gbps” to some that sends email (do a search here on the forum on how to send email)

/interface ethernet monitor ether1 once do={
	:if ($"rate" != "1Gbps") do={ 
		:put "ether1 is NOT 1Gbps"
	}
}

Thanks. Found this post
http://forum.mikrotik.com/t/disable-enable-ethernet-interface-script/92296/1