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. canufrank

    Help setting up VLAN on ASUS RT-AC68U

    One more request @Martineau :) Hoping to tag wlan and guest wlan separately
  2. canufrank

    Media Bridge setup

    I've read a few reviews/articles on SNB (like these ones http://www.smallnetbuilder.com/wireless/wireless-features/32238-ac1900-innovation-or-3d-wi-fi & http://www.smallnetbuilder.com/wireless/wireless-features/32320-is-ac1900-worth-it?start=1 &...
  3. canufrank

    asus rt-ac68u openvpn client fails to connect over UDP

    Same issue. I couldn't figure out why I couldn't test my setup until finding this.
  4. canufrank

    Redirect Internet traffic misbehaving

    no-ipset
  5. canufrank

    Redirect Internet traffic misbehaving

    @octopus, the rows in /tmp/11-curl should be of no interest to you, simply the value assigned to $curl11. Those rows are there to ensure that the curl successfully resolves on any of the URL's possible IP addresses- they relate to your curl target, not the response. (@john9527 's parsing is even...
  6. canufrank

    Redirect Internet traffic misbehaving

    @john9527 If you're asking me, getting the VPN ID is just one use case for using curl. My primary objective concerns a requirement of my VPN provider's port forwarding service. They need an hourly request to confirm the port they are forwarding. It must come via the tunnel.
  7. canufrank

    Redirect Internet traffic misbehaving

    @Martineau I was trying to make the above work, but my lack of understanding around dnsmasq is definitely hindering me. I wanted to make ip sets where I can add and delete the rule as needed. e.g. iptables -t mangle -A PREROUTING -i br0 -m set --set Switcheroo dst -j MARK --set-mark 128 ipset...
  8. canufrank

    Redirect Internet traffic misbehaving

    @octopus The nslookup is already part of curl11 above. It outputs pertinent addresses to /tmp/11-curl local fn=/tmp/11-curl rm -f $fn nslookup "$srv" 2>/dev/null |grep -E "^Address " |while read line; do if [ "${line:11:3}" != 127 ]; then...
  9. canufrank

    Redirect Internet traffic misbehaving

    The curl11 function I posted above will allow you to query any URL via the tunnel even if normal routing is through the ISP. (I have more robust code to handle nslookup failing if you run into that.) Just ensure that tun_if and tun_p2p are defined or rewrite with your own var names. You can...
  10. canufrank

    Redirect Internet traffic misbehaving

    ps, Whether or not vpnrouting.sh passes arguments, if openvpn-event and any subsequent scripts are called by the openvpn service (which is always the use case), $script_type is available in the environment and doesn't need to be passed. I'm no longer examining args passed except as a failover
  11. canufrank

    Redirect Internet traffic misbehaving

    Following all presumes Policy Blocking mode: Objective 1: I would like to find out the VPN's public IP. However, the first 2 both return the WAN's public IP and the 3rd times out curl ipecho.net/plain curl --interface $ifconfig_local ipecho.net/plain curl --interface tun11 ipecho.net/plain...
  12. canufrank

    Redirect Internet traffic misbehaving

    To summarize my last 2 posts, one cannot query across the tunnel interface unless Redirect != Policy Rules and 'route-nopull' is absent. Else, this will time out: curl -v --interface tun11 checkip.dyndns.com curl: (7) couldn't connect to host The problem is that the router is using table 254...
  13. canufrank

    Help AC3200 - Band Monitor - Adaptive QoS - Merlin

    Confer http://www.snbforums.com/threads/ac87u-client-list-problem-when-using-ap.29675/ Confer http://www.snbforums.com/threads/a-...-that-are-connected-to-the-asus-router.29602/ The problem seems related to networkmap issues.
  14. canufrank

    AC87u client list problem when using AP

    See http://www.snbforums.com/threads/a-way-to-see-network-clients-that-are-connected-to-aps-that-are-connected-to-the-asus-router.29602/ No solution there yet.
  15. canufrank

    A way to see network clients that are connected to APs that are connected to the Asus router?

    I have the same setup and issue. Can you confirm that the clients are also missing from System Log -> Wireless Log?; and that you CAN see the clients if you select LAN -> DHCP Server -> MAC Address dropdown? If yes to the second, there are obviously different methodologies at work here, not a...
  16. canufrank

    Help AC3200 - Startup Script & Commands

    "tx-start" is not a valid name see https://github.com/RMerl/asuswrt-merlin/wiki/User-scripts and determine when you need it run, then name accordingly "services-start" seems to fit your requirements description
  17. canufrank

    Redirect Internet traffic misbehaving

    Only vlan2 and tun11 actually allow binding. vlan2 successfully reports the WAN IP using the above URL. Unsure what is blocking VPN traffic. ifconfig |grep -E "^[e|v|t]" |cut -d" " -f1 |while read line; do echo $line; curl --interface $line checkip.dyndns.com; done
  18. canufrank

    Port based selective routing

    I have a machine behind my router that is routed through the VPN tunnel. I would like certain traffic to use the WAN, but am failing to implement the solutions I've seen outlined in various threads. As a precursor, some threads utilize --dports while others use --sports in their listing. In its...
  19. canufrank

    Redirect Internet traffic misbehaving

    How can I query across the tunnel from the router? Specifying interface for curl requests now fails. For example, the following used to work: curl -v --interface tun11 checkip.dyndns.com * About to connect() to checkip.dyndns.com port 80 (#0) * Trying 91.198.22.70... Local Interface tun11 is ip...
  20. canufrank

    Redirect Internet traffic misbehaving

    If 'Start with WAN' is unset, the settings are completely ignored. I personally don't fee that this is should be considered a bug, as the user made the change. (I just wasn't anticipating it.) If the user were also obliged to delete all policy rules too, it would seem onerous. On the other...
Top