It is definitely "Amazon Web Services-Internet Of Things"I have an idea - looking at the listing on Amazon for this router it says "Amazon Certified: Works with Alexa".
Perhaps this is the daemon that makes this possible. Maybe it's "Amazon Web Services-Internet Of Things"
As an aside - can i also chmod -x streamboost ?
chmod -x /usr/sbin/aws-iot
/etc/init.d/aws disable
Code:chmod -x /usr/sbin/aws-iot
Is a lie with recent routers, as the web gui option is hidden and the reporting on by default..This program of reporting router data back to NETGEAR is voluntary
FWIW: It's been 10 days since i turned of streamboost buy making the script non-execute and no ill effects noticed.
If I were to guess - they support a USB printer attached to the router.Any idea what /sbin/KC_BONJOUR and /sbin/KC_PRINT are doing?
I have multiple instances of those running after a reboot. I kill one of each (with the result of other instances of themselves), and router is working fine even after several days or weeks...
I’m thinking of disabling them as well...
It's my experience that only what you call Solution 4 *actually* solves the problem of these 'extra' processes.
That said, I don't know for certain how thorough Kamoj's option is.
Setting NVRAM options only works if the programs which use them respect them or are not upgraded to ignore them.
For me - solving means that the scripts never run, never taking resources from the router.
Granted the chmod -x must be done again with each firmware upgrade, but this is not a deal breaker for me.
The chmod -x itself does not stop any currently running processes, you must kill them or more easily - reboot the router.
Starting with the msg above yours in this thread, I have tested for the last nine days or so the removal of two more processes with great success. If you don't have a printer attached to the router directly then you can also:
chmod -x /sbin/KC_BONJOUR
chmod -x /sbin/KC_PRINT
[ -x /sbin/KC_BONJOUR ] && chmod -x /sbin/KC_BONJOUR
[ -x /sbin/KC_PRINT ] && chmod -x /sbin/KC_PRINT
ps | grep -F '/sbin/KC_' | awk '{print $1}' | xargs kill 2>/dev/null
[ "$(grep -F 'config set new_sold_board=1' /etc/init.d/boot)" ] && { sed -i 's/\/bin\/config set new_sold_board=1/\/bin\/config unset new_sold_board/' /etc/init.d/boot; config unset new_sold_board; }
[ -x /usr/sbin/aws-iot ] && { chmod -x /usr/sbin/aws-iot; /etc/init.d/aws disable; }
[ -x /sbin/traffic-meter ] && { /etc/init.d/traffic-meter stop; chmod -x /sbin/traffic-meter; ps|grep -F '/sbin/traffic-meter'|awk '{print $1}'|xargs kill 2>/dev/null; }
chmod -x /usr/sbin/streamboost_status_monit
root@R7800:~$ /usr/sbin/streamboost_status_monit disable
-ash: /usr/sbin/streamboost_status_monit: Permission denied
To not have to deal with this at each firmware update, I have a script called from /mnt/USB/autorun/scripts/post-mount.sh:
Code:[ -x /sbin/KC_BONJOUR ] && chmod -x /sbin/KC_BONJOUR [ -x /sbin/KC_PRINT ] && chmod -x /sbin/KC_PRINT ps | grep -F '/sbin/KC_' | awk '{print $1}' | xargs kill 2>/dev/null [ "$(grep -F 'config set new_sold_board=1' /etc/init.d/boot)" ] && { sed -i 's/\/bin\/config set new_sold_board=1/\/bin\/config unset new_sold_board/' /etc/init.d/boot; config unset new_sold_board; } [ -x /usr/sbin/aws-iot ] && { chmod -x /usr/sbin/aws-iot; /etc/init.d/aws disable; } [ -x /sbin/traffic-meter ] && { /etc/init.d/traffic-meter stop; chmod -x /sbin/traffic-meter; ps|grep -F '/sbin/traffic-meter'|awk '{print $1}'|xargs kill 2>/dev/null; }
[ -x /sbin/traffic-meter ] && { /etc/init.d/traffic_meter stop; chmod -x /sbin/traffic-meter; ps|grep -F '/sbin/traffic-meter'|awk '{print $1}'|xargs kill 2>/dev/null; }
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!