This tutorial will walk you through the steps needed to get root SSH
access on an Engenius EAP600 dual-band WiFi access point. SSH doesn't
come enabled out of the box on these things, so if you want to SSH into the
device (which is running an old version of OpenWRT), keep reading.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, user-scalable=yes, minimum-scale=1.0"> | |
| <title>And your phone number is...</title> | |
| <style> | |
| body { | |
| font: 17px sans-serif; | |
| color: #444; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| COUNT=0 | |
| LIMIT=5 | |
| INTERFACE=wlan1 | |
| NAME=$(basename $0) | |
| CLEAN_NAME=${NAME%.sh} | |
| PID="/var/run/$CLEAN_NAME.pid" | |
| LOGGER="logger -t $CLEAN_NAME -s" |