What's new

RT-AC68U Configured as AP br0 interface not seeing WIFI

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

memphis2k

Occasional Visitor
Hello,

I am working on setting up a Proximity script for my RT-AC68U (set to AP mode) to send REST commands to my Home Automation system, an ISY994i. Running the latest Merlin firmware. Ideally want this to run as "services-start"

if I run the command (found in the script)
"arp -i br0"
none of my WIFI devices are listed. Any way I can run a arp command to show my wifi devices so this script can tell when I'm home/away?

http://www.snbforums.com/threads/help-script-on-asus-wrt-merlin-not-working.31159/#post-246273
Above is the script.

Thanks
 
Code:
wl -i eth1 assoclist
wl -i eth2 assoclist

arp isn't really useful because disconnected devices would still show up there.
 
Thanks,

I will try that. If I did the "arping" command proactively in the shell, essentially waked the device and then the "arp" commend ran by the script would see the phones and tell the automation that they are home. Otherwise monitoring the script, it would just say the phones were not home after a certain amount of idle on each device.
 
Merlin,

How can I run multiple scripts from "services-start"? I"m no Linux/BASH expert. Thanks in-advance!

I tried:
#!/bin/bash

sh /jffs/scripts/wifi_check.sh
sh /jffs/scripts/ping.sh

--------------------------------
AND

#!/bin/bash

sh ./wifi_check.sh
sh ./ping.sh
 

Similar threads

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top