stalker780
Occasional Visitor
Automatic IP@stalker780 Can you confirm what setting you have for WAN > Internet Connection > WAN Connection Type
https://i.imgur.com/jOYlUVF.png
Automatic IP@stalker780 Can you confirm what setting you have for WAN > Internet Connection > WAN Connection Type
Well I've run out of ideas. Maybe @john9527 can suggest something.Automatic IP
https://i.imgur.com/jOYlUVF.png
Thanks. Will try this. However I fight with problem for more than a year. And used almost every John's firmware during this time, hoping it will be fixedWell I've run out of ideas. Maybe @john9527 can suggest something.
Perhaps you could load a very old version of Johns firmware to see if it's always had this problem. If that works OK then try stepping through intermediate versions to identify when the problem first occurs. That would narrow down the search for a potential bug considerably.
Do you have IPv6 enabled? If so, try disabling it.Automatic IP
https://i.imgur.com/jOYlUVF.png
Do you have IPv6 enabled? If so, try disabling it.
Do you have IPv6 enabled? If so, try disabling it.
Other than that, no other ideas. It's possible that your ISP is doing something that is incompatible with the version of CTF used in the fork, that was changed in later code. (The prebuilt CTF module for MIPS in the fork is 372K in size, in the latest Merlin it's 31K. Not sure what changed, or if they just disabled debug/symbols that accounts for the size change.)
Asus did release a fix for KRACK.
Did not check other devices .. just RT-AC-68U.
2017/11/10 40.6 MBytes
ASUS RT-AC68U Firmware version 3.0.0.4.382.18547
Security fixed
- Fixed KRACK vulnerability
- Fixed CVE-2017-14491: DNS - 2 byte heap based overflow
- Fixed CVE-2017-14492: DHCP - heap based overflow
https://www.asus.com/Networking/RTAC68U/HelpDesk_BIOS/
Hopefully it can be merged into 28E2 ?
I doubt that John needs to be reminded every time Asus releases a new patch. I'm sure he's well aware of it, especially as there are always multiple reports of it all over these forums.Asus did release a fix for KRACK.
Did not check other devices .. just RT-AC-68U.
No source yet....then I'm hoping Merlin does a merge for an update to his 380release (it's a lot easier for me to try and track down that way)Asus did release a fix for KRACK.
Did not check other devices .. just RT-AC-68U.
2017/11/10 40.6 MBytes
It doesn't include all the necessary HID modules, same as Merlin, as described in this thread@john9527 Does your firmware include usb HID support? Trying to run apcupsd. APC ups's show up as usb1.x HID devices.
Neither.....just added the support. The ARM routers will have it enabled by default in the next release.Are the modules embedded in the current downloads for your build or available separately?
#!/bin/sh
ENABLED=yes
PROCS=apcupsd
ARGS="-p"
PREARGS=""
DESC=$PROCS
PATH=/opt/sbin:/opt/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
. /opt/etc/init.d/rc.func
#!/bin/sh
mac=$1
idx=$2
device_present=Off
domoticz_status=`curl -s "http://192.168.1.50:8084/json.htm?type=devices&rid=$idx" | grep Status | awk '{print $3}' | sed 's/[",]//g'`
# look in 2.4GHz (eth1) network for device
for x in `wl -i eth1 assoclist | awk '{print $2}'`; do
if [ $x = $mac ]; then
device_present=On
fi
done
# look in 5GHz (eth2) network for device
for x in `wl -i eth2 assoclist | awk '{print $2}'`; do
if [ $x = $mac ]; then
device_present=On
fi
done
# tell domoticz the new device status switch
if [ $domoticz_status != $device_present ]; then
if [ $device_present = "On" ]; then
curl -s "http://192.168.1.50:8084/json.htm?type=command¶m=switchlight&idx=$idx&switchcmd=On" > /dev/null
else
curl -s "http://192.168.1.50:8084/json.htm?type=command¶m=switchlight&idx=$idx&switchcmd=Off" > /dev/null
fi
fi
Would have to be a setting on the iPhone....the status shows that it has indeed disconnected completely.my questions
1: how can i fix this iphone4s so it will stay connected when it goes to sleepmode(probably not possible with a setting)
What you are seeing in the wireless log is a remnant where the phone has disconnected, but the arp table entry hasn't yet aged out. It will eventually be removed from the log.2: how can i change the script i use so the script will still recognise the iphone4s as being connected
Would have to be a setting on the iPhone....the status shows that it has indeed disconnected completely.
What you are seeing in the wireless log is a remnant where the phone has disconnected, but the arp table entry hasn't yet aged out. It will eventually be removed from the log.
If you want to replicate the logic used to create the wireless log, then try changing the script to do the following:
- Is the mac in the arp table (cat /proc/net/arp)
- If in the arp table, check
- is it authenticated (wl -i ethx authe_sta_list)
- is it associated (wl -i ethx assoclist)
- is it authorized (wl -i ethx autho_sta_list) - this is the one I think that generates the wireless log entry with no flags
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!