Top Banner
AUTO POWER CYCLING A MODEM WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT
18

AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

Apr 15, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

AUTO

POWER CYCLING A MODEMWITH MIKROTIK

UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT

Page 2: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

DISCLAIMER

● This presentation is for educational purpose only.

● The presenter do not assume any responsibility for the content and result of this

presentation. Use this material at your own discretion.

● Some images are not mine and are credited to its respective owners. No copyright

infringement intended.

Page 3: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

https://gabbybo.files.wordpress.com/2014/09/myfacewhilewaitingforittoload_97763284cc024193ded2f45d572c0e98.jpg

https://media.gcflearnfree.org/content/560554ec637fba0824fbb3e8_09_25_2015/powercycledevice_turnoff.png

PROBLEM

FAULTY DSL MODEM

MIKO

Page 4: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

EDANN BAULETECO-FOUNDER & PRESIDENT OF KOMSPEC TECHNOLOGIES

USING MIKROTIK SINCE 2013

facebook.com/komspec

Page 5: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

SERVICES

WIRELESS DATA NETWORK

DATA & TRAFFIC MANAGEMENT

WEBDEV & HOSTING

CCTV & VOIP

TRAINING & SEMINARS

DATA CENTER SERVICES

THE TEAM

Page 6: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The
Page 7: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

https://gabbybo.files.wordpress.com/2014/09/myfacewhilewaitingforittoload_97763284cc024193ded2f45d572c0e98.jpg

https://media.gcflearnfree.org/content/560554ec637fba0824fbb3e8_09_25_2015/powercycledevice_turnoff.png

PROBLEM

FAULTY DSL MODEM

MIKO

Page 8: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

https://gabbybo.files.wordpress.com/2014/09/myfacewhilewaitingforittoload_97763284cc024193ded2f45d572c0e98.jpg

https://media.gcflearnfree.org/content/560554ec637fba0824fbb3e8_09_25_2015/powercycledevice_turnoff.png

SOLUTION

AUTO REBOOT MODEM

Page 9: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

DEVICES & MATERIALS

hAP AC LiteDSL Modem Patch Cables

Relay 12v RJ45 IO Port AC Male Plug AC Female Outlet Surface Box

Page 10: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

DIAGRAM

When power is introduced to the POE Out on Eth5, the Relay Switch disconnects the

positive line from the power source.

5

Page 11: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

ACTUAL PHOTO

Page 12: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

ACTUAL PHOTO

Page 13: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

NETWATCH

Page 14: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

NETWATCH

Page 15: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

SCRIPT

Page 16: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

SCRIPT/log warning "Turning PoE to 'Forced On'";

:local PoeOut [/interface ethernet poe get value-name=poe-out number=ether5];

:if ($PoeOut != "forced-on") do={

/interface ethernet poe set poe-out=forced-on numbers=ether5;

/log warning "Successfully Turned on... waiting 5 seconds till turning it 'Off'";

} else={

/log warning "PoE is already on Forced-On... continuing to 5 seconds delay...";

}

/log warning "check delay";

:delay 5s;

/log warning "check delay - end";

/log warning "Turning PoE to 'Off'";

/interface ethernet poe set poe-out=off numbers=ether5;

/log warning "Success!... Script Exit'";

Page 17: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

VIDEO DEMO

Page 18: AUTO POWER CYCLING A MODEM WITH MIKROTIK · WITH MIKROTIK UN-ATTENDED MODEM REBOOT USING A MIKROTIK POE-OUT PORT. DISCLAIMER This presentation is for educational purpose only. The

THANK YOUENJOY THE REST OF MUM PH 2018

USING MIKROTIK SINCE 2013

facebook.com/komspec