Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Shells Virtual Desktop
BMail.ag - Secure Email Service
Server.net
CPLicense.net
VPS Server
Buy VPN
Vultr
VMs for AI
HostDare
ReliableSite White-Label Dedicated Hosting for Resellers
InterServer VPS
BMail.ag - Secure Email Service
Best VPN
High-Performance Bare Metal Server Solutions
Karvl.com
Server Mania Cloud Hosting
DataWagon Hosting
AlphaVPS Hosting
Evoxt.com
Clouvider
VPS Hosting with NVMe
Residential IPs in the US & 4G Mobile Proxies in EU & US with Unlimited Bandwidth
ReliableSite White-Label Dedicated Hosting for Resellers
Rabisu - Hosting Solutions
Shells Virtual Desktop
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Tunnel with routed IP.

Hi,
I got some providers from my last request when asking for VPN's so I'll try again, this time with also other tunnel protocols.
I'm looking for a IP Tunnel service/provider where I'm provided a static/dedicated IP (or more IP's) that's routed over the tunnel to me, without the need for BGP/ASN.

If there are any providers here on LowEndTalk that provides this otherwise if any member knows of others that provide it.

Bandwidth: I'm open to all options, so just to have a very minimum, lets say 100GB and up.
Port Speed: I'm open to all options, so just to have a very minimum, lets say 10Mbit/s and up.

DDoS Protection:
Yes and no, both options are interesting.

Number of IP's: at least 1, more might be interesting.

Location: US and EU.

Budget: No set budget so 0.01 USD and up.

Billing period:
One Time, Monthly, Quarterly, Semi-Annually, Annually.

From my previous thread, i got these providers.
Noez (GRE)
AAnet (L2TP)
PRQ (OpenVPN)
OVPN (OpenVPN/Wireguard)
Inleed (OpenVPN)
Tritan (unsure of all options)
FreeRangeCloud (unsure of all options)

Comments

  • lukast__lukast__ Member, Megathread Squad

    You could also get a cheap VPS and simply use Wireguard or OpenVPN.

  • bethpbethp Member, Host Rep

    This is also something we offer in many locations, this can be via tunnel or VPN whichever works best for you :)

    https://hyehost.store/store/v4-tunnel

    Any questions feel free to ask.

  • chadsixchadsix Member, Patron Provider
    edited May 2024

    We have IPv6 IPs that are easily usable with WireGuard at https://ipv6.rs. We provide an automatic IPv4 reverse proxy for name-based routing (no SSL termination, your connections will remain end to end encrypted). It's mainly geared toward people who want to be hands free (Cloud Seeder) but we also have a lot of technical people taking advantage of the easy-ingress.

    Your actual, external and routable IP, will appear on your device and your system will use this IP as its IP (you won't have to deal with local IPS, NAT (192.x), etc.).

  • wdmgwdmg Member, LIR

    Your easiest option is just a simple setup, grab a dedi/VPS with a provider who has IPs you want, don't bind them to the host NICs.

    Setup a GRE or WG tunnel on your own. Taking steps from @Francisco's GRE guide (https://wiki.buyvm.net/doku.php/gre_tunnel):

    echo 'net.ipv4.ip_forward=1' >> /etc/sysctl.conf
    sysctl -p
    iptunnel add gre1 mode gre local <YOUR-VPS-IP> remote <YOUR-DESTINATION-SERVER-IP> ttl 255
    ip addr add 192.168.168.1/30 dev gre1
    ip link set gre1 up
    

    On the remote server (destination server), do the same thing just inverted:

    echo 'net.ipv4.ip_forward=1' >> /etc/sysctl.conf
    iptunnel add gre1 mode gre local <YOUR-DESTINATION-SERVER-IP> remote <YOUR-VPS-IP> ttl 255
    ip addr add 192.168.168.2/30 dev gre1
    ip link set gre1 up
    

    Now, the guide would suggest some iptables nattery, but a simpler solution -- VPS side:

    ip route add <your-ips-you-want-to-tunnel>/32 via 192.168.168.2
    

    On your destination server side:

    echo '100 TUNNEL' >> /etc/iproute2/rt_tables
    ip rule add from <your-ips-you-want-tunnel>/32 table TUNNEL
    ip route add default via 192.168.168.1 table TUNNEL
    

    Then just bind them on your destination server. No need to get messy with NATing, etc. You'll likely need to adjust your MTU as well. These steps work identically if you want to do WG, just without the gre component of it. Same concept.

    Thanked by 3BasToTheMax Flummi 1nf
Sign In or Register to comment.