Recent content by zubbs1

  • 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. Z

    JFFS Script Not Running

    I just tried it, and it accomplishes what I want, although I thought I needed specifically 65 for my solution. How does the 'Spoof LanTTL' work, or what is it actually doing to the routing of packets? Thank you so much for your help!
  2. Z

    JFFS Script Not Running

    Will do. Any advice on getting the script to accomplish what I want it to? Cheers.
  3. Z

    JFFS Script Not Running

    Very insightful, thank you. I did not know that you had to tell the system to run the script. Your advice worked, and it is now running the script on startup. However, the script is a dud and is not changing the ttl value of attached devices. Do you see anything wrong with the content of the...
  4. Z

    JFFS Script Not Running

    My script should change the TTL value of all outbound routed packets to 65. I added the suggested lines to add to logger, and to 'touch' to /tmp. Quick sidenote: My phone is tethered to the router, so the wan is not receiving access to the internet to set the timestamp, so my router logs July...
  5. Z

    `get_wanface`

    Thank you, I appreciate your help :).
  6. Z

    Two Routers, Two Different Hom LANs, Can they connect?

    DSL/Modem (3 Mb/s.... :( ) is providing LAN 1, and has an ASUS RT-N12 acting as wifi repeater to a home server computer running Ubuntu 17.10. Gateway: 192.168.0.1 Router 2 is an ASUS RT68U getting an internet connection from a tethered phone and providing a LAN for 3-4 devices. Gateway...
  7. Z

    `get_wanface`

    I've been trying to include the following line but but keep getting errors and haven't been able to ascertain if Merlin doesn't use this command, only DD-WRT does, or if I'm doing something wrong (always the most likely variable :D)? #iptables -t mangle -I POSTROUTING -o `get_wanface` -j TTL...
  8. Z

    iptables script

    After seeming to work, I noticed a problem. My system is a dual Ubuntu/Windows 10 box. In Ubuntu, it does fine, the ping spits out a ttl=65. However, when booted into Windows 10, the ttl is locked at 128 (the default value I believe). I lost power last night, and was worried it somehow...
  9. Z

    iptables script

    That did it! I now have everything working as I wanted. Thanks to everyone for their help. Cheers.
  10. Z

    iptables script

    I included both in my new script: #!/bin/sh #Set all outgoing TTL values to 65 insmod xt_HL insmod xt_hl iptables -t mangle -A POSTROUTING -j TTL --ttl-set 65 I am now getting this error: Before I read your response, I found an old post and tried the advice...
  11. Z

    iptables script

    Thank you for this. I have made some progress. I am now able to use Winscp to login to the /jffs/scripts directory and run my script. However, my script is faulty: #!/bin/sh iptables -t mangle -A POSTROUTING -j TTL --ttl-set 65 Which gives the following error: I am trying to...
  12. Z

    iptables script

    I know just enough to accidentally do very terrible things to my system, but I follow directions very well. :D I have an Asus RT-AC68U router flashed to merlin firmware version RT-AC68U_380.66_4 I want to insert an iptables script to automatically set the TTL value to 65 for all connected...
Top