Search results

  • 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!

  1. H

    disable/enable httpd via cli cmd ?

    @firewall rule : I dont use ai protection/nor Im a parent :) How would such a firewall rule look like (the iptable rules are still a bit of a undiscovered country for me :) ) @access list : if I i..e add 192.168.1.33 and tick WebUI,than this Ip and ONLY THIS IP has access to the webUI right ...
  2. H

    disable/enable httpd via cli cmd ?

    :( ok then for the workaround question => how to basically disable access to the gui another way ? (enable/disable via ssh)
  3. H

    disable/enable httpd via cli cmd ?

    is there a way to disable httpd (is always restarted by watchdog) ? I rarely use the gui,and the idea is to enable it via ssh command when needed and disabling it again when done. Im on RT_AC86U@merlin
  4. H

    Client list never updates

    here a slightly modified cl () function. Now you can search for an ip or mac address,just use : cl <ip or mac> and get a filtered output. Without any input ,cl will work just like the above/original function cl() { in=$@;GREEN='\033[0;32m';RED='\033[0;31m';NC='\033[0m';printf '%b%-23s %-15s...
  5. H

    no clientnames in arp list

    im feeling huggy ehm happy :) BIG THANKS,that did the trick. Im not sure if I would have found this hidden gem anytime soon :)
  6. H

    no clientnames in arp list

    I checked out the options on wan/lan/wireless... no success so far :( tried to add the routers ip to /etc/resolv.conf ,but thats a generated file,after restart_wan,only 2 ips are in there. so I tried to change the nvram settings from wan0_dns & wan_dns ,but the 192.168.1.1 is removed from wan0...
  7. H

    no clientnames in arp list

    hi! got my new AC86U router today. most problems,moving from my old AC56U there,are solvable with research,but one problem persists :( no matter what I tried so far,I dont get clientnames (in commandwindow via ssh) the arp command only shows "?" where before the devices name was listed.(on my...
  8. H

    Whats the most accurate way to get current in/outgoing speed (eth0) ?

    another example,on how wrong the values calculated from statistics are : streaming youtube (1080p): using the script below I get : (@Eth0) TX eth0: 2280 kB/s RX eth0: 2207 kB/s TX eth0: 4052 kB/s RX eth0: 4009 kB/s TX eth0: 3836 kB/s RX eth0: 3791 kB/s TX eth0: 3060 kB/s RX eth0: 3017 kB/s TX...
  9. H

    Whats the most accurate way to get current in/outgoing speed (eth0) ?

    br0 doesnt show any activity when browsing the web/speedtest/... vlan1 does show the accurate speed (in nload & script with cat /sys/class/net/vlan1/statistics/rx_bytes) if vlan1 is the lan ports.. shouldnt that also samba traffic between my pc<=>rpiNAS ? because I just watch a movie via...
  10. H

    Whats the most accurate way to get current in/outgoing speed (eth0) ?

    using nload I checked,but vlan2 is dead here. eth0 (with my wan IP) shows only correct speed values for incoming,but the outgoing part is completly wrong.. it shows the same traffic amount as incoming,and the same speed max/mins,which isnt possible. during the google speedtest, vlan1 shows...
  11. H

    Whats the most accurate way to get current in/outgoing speed (eth0) ?

    the values are identical rx=$(cat /proc/net/dev|grep eth0|awk '{print $2}');rx2=$(cat /sys/class/net/eth0/statistics/rx_bytes) echo $rx"/"$rx2 any ideas why the spike when using a speedtest or downloading a well seeded torrent ?
  12. H

    Whats the most accurate way to get current in/outgoing speed (eth0) ?

    Im trying to read/calculate the current overall bandwidth/speed for down&up stream ( eth0 ) on my AC56U router. The values are send via python/socket to a raspberryPi that draws a running speed chart on a ws2812b led matrix display. right now I use /sys/class/net/eth0/statistics/rx_bytes &...
  13. H

    SSHFS for AC56U ??

    ok,but can I switch to entware,and then i.e. manually transfer transmission from the backuped optware folder into entware ? I mean opt/ent ware are just package managers right ? If I transfer transmissions files correctly (libraries to libraries /bin to bin / and so on...) can I still use it...
  14. H

    SSHFS for AC56U ??

    im using quite a bit optware stuff,is there a way to use entware parallel or get only one entware package alone ? Or.. can I still use the optware packages(which are NOT available on entware) when changing over to entware ?
  15. H

    SSHFS for AC56U ??

    is there any way to use/get sshfs on this router ?
  16. H

    Controlling Amazon dash button via postlease.sh

    hi! Im using several dash buttons on my routers (ac56u/n66u) and it works flawless! i dont see the error in your script :( this is what I use : #!/bin/sh NowLeasedMac=$2 if [ "$NowLeasedMac" == "00:00:00:00:00:00" ]; then /jffs/scripts/shortcuts/amdash_actions/kleenex;touch...
  17. H

    blocking ALL but ONE port for a specific lan IP

    UPDATE ... " iptables -I OUTPUT -d 192.168.0.133 -j DROP" didnt work.. well it kinda worked.. I wasnt able to ping the router from the unit,so I thought DONE.. but it was still phoning home :( so the FORWARD chain is the right way to go,but in order to reach the unit from the wan side,the vnc...
  18. H

    blocking ALL but ONE port for a specific lan IP

    I tried using your solution / the FORWARD Chain ,but this only works,if you dont need to access the vnc server from wan-side. (which I desperately need ! ) A few tries later,I found the solution for my problem,and even learned a bit :) iptables -I OUTPUT -d 192.168.0.133 -j DROP Finally I...
  19. H

    blocking ALL but ONE port for a specific lan IP

    I guess that would do the trick as well,as the VNC connection is an incoming one only.
  20. H

    blocking ALL but ONE port for a specific lan IP

    Hi everybody ! Im trying to use iptables to block all ports but one for a specific IP on my lan. But I have no luck :( Router : RT-N66U@MERLIN / 192.168.0.1 Device/IP : 192.168.0.133 The IP belongs to a central heating unit which runs a VNC server (@5900),and is able to be controlled via an...
Top