Page 1 of 1
No POE Power Cycle @ hEX POE
Posted: Wed Mar 14, 2018 10:27 pm
by eichpa91
Hello.
I have the problem, that in the actual stable release (6.41.3) the Power Cycle doesn't do anything.
I also testet it with the RC-Firmware (6.42rc41)
Is it a bug?
Thank You
Re: No POE Power Cycle @ hEX POE
Posted: Sun Apr 01, 2018 7:04 am
by jo2jo
Hi, I am seeing the same issue, see my thread on the same thing ( mt says they might look into it but they seem to be aware of the issue);
viewtopic.php?f=2&t=132238
Re: No POE Power Cycle @ hEX POE
Posted: Thu Apr 12, 2018 11:40 am
by walterav1984
Also having the same problem on "hEX PoE RB960PGS" with 6.41.4 (Current) and 6.42rc56 where powercycle button does nothing, but as a workaround manually going back and forward form "auto/force on" to "power off" and back fixes it.
Tried both 24V/48V via PoE in and DC plug, using both passive PoE and 802.3af equipment all behave the same.
Please fix.
Re: No POE Power Cycle @ hEX POE
Posted: Thu Apr 12, 2018 12:54 pm
by walterav1984
I'm also having this issue were the webinterface per etherport powercycle button is not responding on "hEX POE / RB960PGS" using both 6.41.4 (Current) and 6.42rc56 (Release candidate) tested in router/switch mode with 24/48v PoE in or DC plug with passive and 802.3af PoE equipment. Only workaround is manually switching from "auto on/force on" to "off" and back to "auto on/force on".
Re: No POE Power Cycle @ hEX POE
Posted: Thu Apr 12, 2018 1:09 pm
by walterav1984
Besides the Power Cycle button I'm afraid the "Power Cycle Ping Enabled" is also broken on this model, could @eichpa91 or @jo2jo confirm this?
Re: No POE Power Cycle @ hEX POE
Posted: Fri Apr 13, 2018 4:46 pm
by eichpa91
Besides the Power Cycle button I'm afraid the "Power Cycle Ping Enabled" is also broken on this model, could @eichpa91 or @jo2jo confirm this?
Yes
Re: No POE Power Cycle @ hEX POE
Posted: Wed Apr 25, 2018 3:16 am
by abrodkin
Same here:
/interface ethernet poe> print detail
2 name="ether4-ipcam" poe-out=auto-on poe-priority=10
power-cycle-ping-enabled=yes power-cycle-ping-address=192.168.0.10
power-cycle-ping-timeout=5m power-cycle-interval=none
/ping address=192.168.0.10
SEQ HOST SIZE TTL TIME STATUS
0 192.168.0.10 timeout
1 192.168.0.10 timeout
2 192.168.0.10 timeout
sent=3 received=0 packet-loss=100%
What the heck? The whole point of getting "hex POE" with all ports with POE-out was ability to control attached devices.
And now instead of having more stable system I see an obvious problem - after "hex POE" reset my webcam attached to its Ethernet4 port won't come up and to my surprise "power-cycle-ping" didn't help... good job, Mikrotik!
Re: No POE Power Cycle @ hEX POE
Posted: Tue May 01, 2018 11:58 pm
by lovehz
+1 here
Just bought 3 of these for controlling unruly radio devices, but the danger of cutting myself off means I'll have to wait for the fix.
A workaround I've tried on 6.40.8 (bugfix only) is to use Safe Mode and turn off the POE on the port. If this disconnects your session the config will roll back, bringing the power back. I tested this on the bench, I wouldn't be so keen using it with a 10 hour round trip.
Re: No POE Power Cycle @ hEX POE
Posted: Fri May 11, 2018 10:15 am
by walterav1984
@lovehz
Thanks for the safemode tip, to powercycle a port back to on if set manually to off(workaround) when session disconnects unexpected.
@all
I do have to say that USB-power reset is working for me even the default 1s, just tested on a RPI zero.
System>Routerboard>USB Power Reset
Re: No POE Power Cycle @ hEX POE
Posted: Thu Jun 07, 2018 2:38 pm
by eichpa91
Is there a new information? without this feature i can't use my set of hEX POE, and i have to return them to mikrotik.
Re: No POE Power Cycle @ hEX POE
Posted: Thu Jun 07, 2018 9:53 pm
by jo2jo
hi, I thought I confirm this in my opening post, but yes, ping power cycle does not work also ( seems to be any kind of automatic power cycling outside of manually by the user, switching from POE off to POE auto, does NOT work).
A temporary, rough, work around, that I have been using is a script i wrote that issues the two poe= commands , just as a manual user would, this does of course work.)
I am currently on my phone but will post the script later today when back at PC . ( it’s nothing fancy just a if/then ping check)
EDIT - here is my script (power cycles a poe splitter which powers this location's ISP modem), in first line i set the IP to ping/test (i use my ISPs GW, ie the 1st hop out on a traceroute, i changed this to x.x.x.x , also the email script i call at the end, that line can be removed, its just a 2nd script that emails me a mt LOG file, so i can look back and see history of these power cycles).
also i use netwatch, both UP/DOWN, to call this script (or you could use scheduler if u want). my Idea was if 1 ping happens to drop (as detected by netwatch), i may not necessarily need my biz modem power cycled (so the script checks for several pings lost, before power cycleing, or NOT power cycleing)
:local ipPing ("x.x.x.x")
:local pingip
#
# pingip below RUNS and sets the variable
# to number of successful pings ie 3 means 3 of 45 success
# can also use ($pingip > 1) or ($pingip >= 1) both TESTED
# ($pingip >= 1) means if only 1 or 0 pings do the IF, not the ELSE
#
:log info ("ping CHECK script IS RUNNING NOW")
# first delay 90 b4 ping test incase this is running at POWER UP
:delay 90
:set pingip [/ping $ipPing count=45]
:if ($pingip <= 3) do={
:log warning (">95% lost ping LOSS to isp GW IP x.x.x.x via ether5 so DO POE powerCYCLE")
/interface ethernet poe set ether5 poe-out=off
:delay 12
/interface ethernet poe set ether5 poe-out=auto-on
:delay 10
:log warning ("ether5 POE HAS BEEN TURNED BACK ON")
:delay 90
/system script run emailPOEresult
} else={
:log warning ("PoeCyclePINGcheck ELSE ran so no ping loss detected by script")
}
Re: No POE Power Cycle @ hEX POE
Posted: Sat Jul 21, 2018 11:08 pm
by marekm
I can confirm the same issue still in 6.42.6 on RB960PGS, PowerBox Pro, and OmniTik 5 PoE ac too. PoE Out off/auto-on/forced-on settings work normally, but Power Cycle does nothing as if MT simply forgot to implement it (tested both winbox and command line, doesn't even wait for the specified 5 seconds before returning to command prompt). It works fine on older devices with 100Mb ports (PowerBox non-Pro, OmnitikUPA, RB750UP).
Re: No POE Power Cycle @ hEX POE
Posted: Wed Sep 19, 2018 9:40 pm
by eichpa91
Is there any new information from Mikrotik for this bug?
Re: No POE Power Cycle @ hEX POE
Posted: Fri Apr 05, 2019 8:42 pm
by marekm
PoE power cycle still not working on OmniTik PoE 5 ac running 6.44.2.
Ticket#2019040522005742
Re: No POE Power Cycle @ hEX POE
Posted: Wed Jun 12, 2019 9:38 am
by yreks
Power920PGS, PowerBox Pro and OmniTik 5 PoE ac Power Cycle does not work
at 6.43.16. I have 3 pcs of PowerBox Pro and one OmniTik 5 PoE ac.
Re: No POE Power Cycle @ hEX POE
Posted: Sat Sep 05, 2020 12:43 pm
by walterav1984
Possible fix see changelog v6.47.3[stable] or model typo?
* poe - fixed "power-cycle" functionality on RB960GSP;
Re: No POE Power Cycle @ hEX POE
Posted: Sat Sep 12, 2020 12:05 pm
by walterav1984
SOLVED:
v6.47.3[stable] fixed the POE powercycle issue for me!
Re: No POE Power Cycle @ hEX POE
Posted: Fri Dec 11, 2020 6:46 pm
by trujagroup
Is it possible to keep the device turned off on Ethernet for more than 5 seconds (eg 30 seconds) and how. no options on the web interface?
I try this
/interface ethernet poe> power-cycle duration=30s
numbers: 1
this is reset to 30 seconds, but the device does not remember the 30s, but the next time it is reset again to 5 seconds, which is the default. When done manually in a terminal then it works every time