Recent content by JB_1366

  1. JB_1366

    how do I pull node wireless data from main router in a script

    your instruction was perfect, worked first time for me, thank you again, i even learned gemini for the next person who asks.
  2. JB_1366

    how do I pull node wireless data from main router in a script

    THANKS to all that helped me. i now have a UI script that compares router/node wireless stats with sortable columns, clickable refresh on demand button, clickable show wired button, highlights new device connection. Im sure i'll add/delete columns as I tinker about.
  3. JB_1366

    how do I pull node wireless data from main router in a script

    in case someone wants to use a password, install EXPECT through opkg, here is what i used: #!/bin/sh set name "name" ; # admin name set node_ip "192.168.50.2" ; # node IP set password "password" ; # node password spawn ssh $name@$node_ip expect { "assword:" { send "$password\r"...
  4. JB_1366

    how do I pull node wireless data from main router in a script

    it worked, thank you!!
  5. JB_1366

    Script Access

    I don't suppose you could give me the exact code to use for webpage button & service-event entry?
  6. JB_1366

    Script Access

    Question: how do i execute a script i created in /jffs/scripts from a clickable-button on my webpage? right now I use cron to execute. i dont know what format i need, to execute on Merlin firmware. webpage is sitting in /www/user5.asp like its supposed to. AI couldnt figure out how to integrate...
  7. JB_1366

    how do I pull node wireless data from main router in a script

    I just spent 2hrs with AI, couldnt get it to work.
  8. JB_1366

    how do I pull node wireless data from main router in a script

    EDIT: Heres my hard fought AI coding result thanks to GROK(ECPECT) & GEMINI(CODING) - all automated. mac address below randomised for your pleasure
  9. JB_1366

    how do I pull node wireless data from main router in a script

    GROK gave me a ssh program called EXPECT, worked perfectly. i can now extract wireless data on node automatically.
  10. JB_1366

    [BETA] ModSyslogUI v1.1.0 - CLOSED

    i went through amtm to update, said script was up to date. i updated anyways, which worked, but wiped my presets again. good idea with help screen.
  11. JB_1366

    [BETA] ModSyslogUI v1.1.0 - CLOSED

    all good, thank you.
  12. JB_1366

    how do I pull node wireless data from main router in a script

    If you have a way, I'm listening. Gemini-AI tried for me for hours, would not ssh-authenticate between routers, and I tried with ssh-key and password. if router could ssh into node, I could bypass script and just pull wireless variables. ASUS might have it locked down.
  13. JB_1366

    [BETA] ModSyslogUI v1.1.0 - CLOSED

    @kstamand can you add a preset for 'show all' , as i might want page to default load that way. I know i can select button.
  14. JB_1366

    how do I pull node wireless data from main router in a script

    Im running this script manually on my node, and manually uploading node_upload.txt to my main router. is there a way to automate the process, so i can just run my script on router to use node_upload.txt and apply results? A direct pull of variables would be great, if possible.
Back
Top