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.

hetzner gre tunnel

I want to connect gre tunnel to my hetzner servers, I'm looking for a place that sells ip addresses to the appropriate I wonder if there is a place you know that will help in installation etc.

Comments

  • noez.de sells GRE.

  • xHostsxHosts Member, Patron Provider

    You mean you want to hire a sysadmin to setup the GRE from the place that sells you cheap IP addresses to your servers at hetzner ?

    Thanked by 1DediRock
  • noez.de I couldn't I bought it but I couldn't install it

    @xHosts said:
    You mean you want to hire a sysadmin to setup the GRE from the place that sells you cheap IP addresses to your servers at hetzner ?

    so what I want is hetzner to provide me with an ip address with gre tunnel for my dedicated servers.

  • avsispavsisp Member, Patron Provider
    edited July 2025

    @ismailylzz said:

    noez.de I couldn't I bought it but I couldn't install it

    @xHosts said:
    You mean you want to hire a sysadmin to setup the GRE from the place that sells you cheap IP addresses to your servers at hetzner ?

    so what I want is hetzner to provide me with an ip address with gre tunnel for my dedicated servers.

    If you just need some IPs and don't wanna buy from hetzner, noez.de is the correct thing, you probably just didn't know how to set it up correctly.

    Assuming the server is debian, you should set it up in /etc/network/interfaces and add the IP addresses you rent from them to lo interface using

    post-up ip -4 addr a IPHERE/32 dev lo
    

    and a route out like this:

    post-up ip rule a from IPHERE/32 table 123
    post-up ip -4 route a default via THEIRSIDEOFTUNNELIP dev TUNNELTEV table 123
    

    example config:

    auto noez
    iface noez inet static
        pre-up ip link add noez type gre remote THIER_SERVER_IP local YOUR_HETZNER_IP ttl 255
        post-up ip link set noez mtu 1476
        post-down ip link del noez
        address YOURSIDEIP/CIDR
        post-up ip -4 route a default via THEIRSIDETUNNELIP dev noez table 123
        post-up ip -4 addr a IP_THEY_GAVE_YOU_HERE/32 dev lo
        post-up ip rule a from IP_THEY_GAVE_YOU_HERE/32 table 123
    

    then they work like normal IPs mounted directly.

    Also make sure you have in /etc/sysctl.conf

    net.ipv4.ip_forward = 1
    

    and run sysctl -p or reboot.

  • PacketsDecreaserPacketsDecreaser Member, Patron Provider
    edited July 2025

    We're offering GRE tunnels with IPs, great for use with Hetzner servers.

    Included:

    Setup on your side
    1 Gbit/s bandwidth
    5 TB monthly traffic (more available on request)
    Included 1 usable IPv4 (Up to 64 IPs)
    
    Starting at €29.95/month
    

    -> https://cp.packets-decreaser.net/cart/ip-transit/

    Feel free to PM me or reply here if you're interested or have questions.

  • @avsisp said:

    @ismailylzz said:

    noez.de I couldn't I bought it but I couldn't install it

    @xHosts said:
    You mean you want to hire a sysadmin to setup the GRE from the place that sells you cheap IP addresses to your servers at hetzner ?

    so what I want is hetzner to provide me with an ip address with gre tunnel for my dedicated servers.

    If you just need some IPs and don't wanna buy from hetzner, noez.de is the correct thing, you probably just didn't know how to set it up correctly.

    Assuming the server is debian, you should set it up in /etc/network/interfaces and add the IP addresses you rent from them to lo interface using

    post-up ip -4 addr a IPHERE/32 dev lo
    

    and a route out like this:

    post-up ip rule a from IPHERE/32 table 123
    post-up ip -4 route a default via THEIRSIDEOFTUNNELIP dev TUNNELTEV table 123
    

    example config:

    auto noez
    iface noez inet static
        pre-up ip link add noez type gre remote THIER_SERVER_IP local YOUR_HETZNER_IP ttl 255
        post-up ip link set noez mtu 1476
        post-down ip link del noez
        address YOURSIDEIP/CIDR
        post-up ip -4 route a default via THEIRSIDETUNNELIP dev noez table 123
        post-up ip -4 addr a IP_THEY_GAVE_YOU_HERE/32 dev lo
        post-up ip rule a from IP_THEY_GAVE_YOU_HERE/32 table 123
    

    then they work like normal IPs mounted directly.

    Also make sure you have in /etc/sysctl.conf

    net.ipv4.ip_forward = 1
    

    and run sysctl -p or reboot.

    Hello, I wonder if I can reach you from somewhere for this issue.

  • DediRockDediRock Member, Patron Provider

    @xHosts said:
    You mean you want to hire a sysadmin to setup the GRE from the place that sells you cheap IP addresses to your servers at hetzner ?

    I thought the same thing while reading the post.

  • avsispavsisp Member, Patron Provider

    @ismailylzz said:

    @avsisp said:

    @ismailylzz said:

    noez.de I couldn't I bought it but I couldn't install it

    @xHosts said:
    You mean you want to hire a sysadmin to setup the GRE from the place that sells you cheap IP addresses to your servers at hetzner ?

    so what I want is hetzner to provide me with an ip address with gre tunnel for my dedicated servers.

    If you just need some IPs and don't wanna buy from hetzner, noez.de is the correct thing, you probably just didn't know how to set it up correctly.

    Assuming the server is debian, you should set it up in /etc/network/interfaces and add the IP addresses you rent from them to lo interface using

    post-up ip -4 addr a IPHERE/32 dev lo
    

    and a route out like this:

    post-up ip rule a from IPHERE/32 table 123
    post-up ip -4 route a default via THEIRSIDEOFTUNNELIP dev TUNNELTEV table 123
    

    example config:

    auto noez
    iface noez inet static
        pre-up ip link add noez type gre remote THIER_SERVER_IP local YOUR_HETZNER_IP ttl 255
        post-up ip link set noez mtu 1476
        post-down ip link del noez
        address YOURSIDEIP/CIDR
        post-up ip -4 route a default via THEIRSIDETUNNELIP dev noez table 123
        post-up ip -4 addr a IP_THEY_GAVE_YOU_HERE/32 dev lo
        post-up ip rule a from IP_THEY_GAVE_YOU_HERE/32 table 123
    

    then they work like normal IPs mounted directly.

    Also make sure you have in /etc/sysctl.conf

    net.ipv4.ip_forward = 1
    

    and run sysctl -p or reboot.

    Hello, I wonder if I can reach you from somewhere for this issue.

    There is a PM feature on this website you can use. Otherwise, just ask here. :smiley:

  • xvpsxvps Member
    edited July 2025

    @ismailylzz said:
    I want to connect gre tunnel to my hetzner servers, I'm looking for a place that sells ip addresses to the appropriate I wonder if there is a place you know that will help in installation etc.

    Hi @AezaHost, use your real account. :D

  • @xvps said:

    @ismailylzz said:
    I want to connect gre tunnel to my hetzner servers, I'm looking for a place that sells ip addresses to the appropriate I wonder if there is a place you know that will help in installation etc.

    Hi @AezaHost, use your real account. :D

    Aeza currently has 600G of private peering with Hetzner for now

  • senfiesenfie Member
    edited July 2025

    @PacketsDecreaser said:
    We're offering GRE tunnels with IPs, great for use with Hetzner servers.

    Included:

    Setup on your side
    1 Gbit/s bandwidth
    5 TB monthly traffic (more available on request)
    Included 1 usable IPv4 (Up to 64 IPs)
    
    Starting at €29.95/month
    

    -> https://cp.packets-decreaser.net/cart/ip-transit/

    Feel free to PM me or reply here if you're interested or have questions.

    Hi, I'm interested in the same setup, but couldn't help but wonder: why such big price difference comparing to noez? Even if I allocate 5TBs there for 3 IPs that would be 5.50 per month (and not 29.95).

  • PacketsDecreaserPacketsDecreaser Member, Patron Provider

    @senfie said:

    @PacketsDecreaser said:
    We're offering GRE tunnels with IPs, great for use with Hetzner servers.

    Included:

    Setup on your side
    1 Gbit/s bandwidth
    5 TB monthly traffic (more available on request)
    Included 1 usable IPv4 (Up to 64 IPs)
    
    Starting at €29.95/month
    

    -> https://cp.packets-decreaser.net/cart/ip-transit/

    Feel free to PM me or reply here if you're interested or have questions.

    Hi, I'm interested in the same setup, but couldn't help but wonder: why such big price difference comparing to noez? Even if I allocate 5TBs there for 3 IPs that would be 5.50 per month (and not 29.95).

    The main differences are our location and the support quality.
    We also offer custom DDoS protection, which is something noez almost doesn’t provide at all.

  • senfiesenfie Member

    @PacketsDecreaser said:

    @senfie said:

    @PacketsDecreaser said:
    We're offering GRE tunnels with IPs, great for use with Hetzner servers.

    Included:

    Setup on your side
    1 Gbit/s bandwidth
    5 TB monthly traffic (more available on request)
    Included 1 usable IPv4 (Up to 64 IPs)
    
    Starting at €29.95/month
    

    -> https://cp.packets-decreaser.net/cart/ip-transit/

    Feel free to PM me or reply here if you're interested or have questions.

    Hi, I'm interested in the same setup, but couldn't help but wonder: why such big price difference comparing to noez? Even if I allocate 5TBs there for 3 IPs that would be 5.50 per month (and not 29.95).

    The main differences are our location and the support quality.
    We also offer custom DDoS protection, which is something noez almost doesn’t provide at all.

    Thanks for the answer. Your connectivity indeed seems great, and EPYC server for 10 EURs is looking very interesting :)

  • PacketsDecreaserPacketsDecreaser Member, Patron Provider

    @senfie said:

    @PacketsDecreaser said:

    @senfie said:

    @PacketsDecreaser said:
    We're offering GRE tunnels with IPs, great for use with Hetzner servers.

    Included:

    Setup on your side
    1 Gbit/s bandwidth
    5 TB monthly traffic (more available on request)
    Included 1 usable IPv4 (Up to 64 IPs)
    
    Starting at €29.95/month
    

    -> https://cp.packets-decreaser.net/cart/ip-transit/

    Feel free to PM me or reply here if you're interested or have questions.

    Hi, I'm interested in the same setup, but couldn't help but wonder: why such big price difference comparing to noez? Even if I allocate 5TBs there for 3 IPs that would be 5.50 per month (and not 29.95).

    The main differences are our location and the support quality.
    We also offer custom DDoS protection, which is something noez almost doesn’t provide at all.

    Thanks for the answer. Your connectivity indeed seems great, and EPYC server for 10 EURs is looking very interesting :)

    You find our LG ? :smile:
    You can test everything out.

    https://lg.packets-decreaser.net/

    Thanked by 1senfie
  • NovaCloudHostingNovaCloudHosting Member, Patron Provider
    edited July 2025

    @senfie said: Hi, I'm interested in the same setup, but couldn't help but wonder: why such big price difference comparing to noez? Even if I allocate 5TBs there for 3 IPs that would be 5.50 per month (and not 29.95).

    Hi, we can offer IP-Tunnels via different protocols, such as GRE, GRETAP, VXLAN and Wireguard, starting at 4€/Month with 1xIPv4. We've got a comprehensive DDoS-Protection and location at Equinix FR7 in Frankfurt. Of course we have a documentation on how to set up the IPs on your server.

    https://shop.novacloud-hosting.com/store/iptransit

    Looking Glass: https://as209874.net/looking-glass?location=ffm1

    Thanked by 1senfie
Sign In or Register to comment.