Jump to content
Not connected, Your IP: 18.222.107.103

Leaderboard


Popular Content

Showing content with the highest reputation on 02/18/25 in Posts

  1. 1 point
    I imagine the application you want to use the VPN is a torrent client? Then one of these might help: https://github.com/tool-maker/VPN_just_for_torrents/wiki/Running-OpenVPN-on-Windows-without-VPN-as-Default-Gateway https://github.com/tool-maker/VPN_just_for_torrents/wiki/Running-Non-Specific-VPN-on-Linux-without-VPN-as-Default-Gateway This method works for any VPN. You don't need the wrapper program from the VPN provider to do it for you. There is some D.I.Y. involved. Copy and paste scripts. Others use containers or virtual machines to run the torrent client. There are lots of posts here about that.
  2. 1 point
    pukiman

    speedtest comparison

    Thanks. This works.
  3. 1 point
    moejoe

    Asuswrt Merlin Multiple Ports

    Does anyone know, whats the equivalent for prerouting in open wrt ( uci, LUCI GUI ) is ? best regards
  4. 1 point
    bulbous_blues

    Asuswrt Merlin Multiple Ports

    Hi I am having trouble forwarding multiple ports with the iptables on my asuswrt router. Here is my script #!/bin/sh iptables -I FORWARD -i br0 -o tun11 -j ACCEPT iptables -I FORWARD -i tun11 -o br0 -j ACCEPT iptables -I FORWARD -i br0 -o vlan1 -j DROP iptables -I INPUT -i tun11 -j REJECT iptables -t nat -A POSTROUTING -o tun11 -j MASQUERADE iptables -I FORWARD -i tun11 -p udp -d 192.168.1.99 --dport 57893 -j ACCEPT iptables -I FORWARD -i tun11 -p tcp -d 192.168.1.99 --dport 57893 -j ACCEPT iptables -t nat -I PREROUTING -i tun11 -p tcp --dport 57893 -j DNAT --to-destination 192.168.1.99 iptables -t nat -I PREROUTING -i tun11 -p udp --dport 57893 -j DNAT --to-destination 192.168.1.99 iptables -I FORWARD -i tun11 -p udp -d 192.168.1.99 --dport 57895 -j ACCEPT iptables -I FORWARD -i tun11 -p tcp -d 192.168.1.99 --dport 57895 -j ACCEPT iptables -t nat -I PREROUTING -i tun11 -p tcp --dport 57895 -j DNAT --to-destination 192.168.1.99 iptables -t nat -I PREROUTING -i tun11 -p udp --dport 57895 -j DNAT --to-destination 192.168.1.99 The first port 57893 is open but not 57895. What seems to be wrong?
  5. 1 point
    rgrdgr

    Asuswrt Merlin Multiple Ports

    Is there a way to forward from one port on the VPN interface to a different port on eth0? Specifically, I'd like to forward from a port on tun0 XXXXX to eth0 80, where Apache is listening, so I can get to ruTorrent.
  6. 1 point
    crazyjoe

    Asuswrt Merlin Multiple Ports

    Cannot get it working. Help appreciated! ​'ptables v1.4.14: Invalid target name `ACCEPT Try `iptables -h' or 'iptables --help' for more information. 'ptables v1.4.14: Invalid target name `ACCEPT Try `iptables -h' or 'iptables --help' for more information. "ptables v1.4.14: Bad IP address "192.168.1.* ​+ Edit/EOL Conversion/Unix in Notpad++ fixed it.
  7. 1 point
    KennethVPN

    Asuswrt Merlin Multiple Ports

    I will follow the sample script above to create an IPTables... Thanks go558a83nk
  8. 1 point
    go558a83nk

    Asuswrt Merlin Multiple Ports

    https://airvpn.org/topic/9270-how-to-forward-ports-in-dd-wrt-tomato-with-iptables/?hl=tomato that's how to open ports for Asus also.
  9. 1 point
    KennethVPN

    Asuswrt Merlin Multiple Ports

    Sorry for the confusion. I am using OpenVPN (on my new router, N66) and need to port forward to AIrVPN for my entire house. I am hosting my own website at home (on a MacMini server) and may also need to port forward. I am new to OpenVPN, do not understand the scripting language and using IPTable. I do not knowing how to do multiple ports forwarding using Asus-Wrt?
  10. 1 point
    go558a83nk

    Asuswrt Merlin Multiple Ports

    There seems to be a disconnect somewhere. You talk of needing to forward ports on the router in an AirVPN forum. Therefore, I assume that you'll be running openvpn on the router. This is because the only reason to forward ports on the router while using AirVPN is if the router itself is the openvpn client for your whole "house". If you are just going to use the Eddie client then DO NOT forward ports on the router. You'll be decreasing your security if you do. If you are asking if you can run some other kind of VPN on the router, the answer is yes. But, AirVPN only provides openvpn. You would have to find another VPN provider if you want to use the other VPN options Asus has.
  11. 1 point
    Mikeyy

    Asuswrt Merlin Multiple Ports

    iptables -I FORWARD -i tun11 -p udp -d 192.168.1.99 --match multiport --dports 57893,57895 -j ACCEPT iptables -I FORWARD -i tun11 -p tcp -d 192.168.1.99 --match multiport --dports 57893,57895 -j ACCEPT iptables -t nat -I PREROUTING -i tun11 -p tcp --match multiport --dports 57893,57895 -j DNAT --to-destination 192.168.1.99 iptables -t nat -I PREROUTING -i tun11 -p udp --match multiport --dports 57893,57895 -j DNAT --to-destination 192.168.1.99
×
×
  • Create New...