<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>nat vps — LowEndSpirit</title>
        <link>https://staging.lowendspirit.com/index.php?p=/</link>
        <pubDate>Fri, 10 Apr 2026 14:10:49 +0000</pubDate>
        <language>en</language>
            <description>nat vps — LowEndSpirit</description>
    <atom:link href="https://staging.lowendspirit.com/index.php?p=/discussions/tagged/nat-vps/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>where is the cheapest nat vps？</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/5955/where-is-the-cheapest-nat-vps</link>
        <pubDate>Wed, 24 May 2023 06:31:20 +0000</pubDate>
        <category>Requests</category>
        <dc:creator>wagumaxida</dc:creator>
        <guid isPermaLink="false">5955@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>aff are welcome</p>
]]>
        </description>
    </item>
    <item>
        <title>How to Become an One-Man NAT VPS Provider?</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/5939/how-to-become-an-one-man-nat-vps-provider</link>
        <pubDate>Sat, 20 May 2023 06:31:42 +0000</pubDate>
        <category>LES Talk</category>
        <dc:creator>tang_cn</dc:creator>
        <guid isPermaLink="false">5939@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Assume you have a dedicated server with /64 IPv6, and your goal is to create some IPv6 NAT VMs. How do you do it? Below is a tutorial about how to install QEMU/KVM and create VMs on Debian via the command line.</p>

<hr />

<h1>0. Advance Notice</h1>

<ul>
<li>Special thanks to <a href="https://staging.lowendspirit.com/index.php?p=/profile/Not_Oles" rel="nofollow">@Not_Oles</a> !</li>
<li>This tutorial has been verified to work with Debian 11 on Hetzner's dedicated server.</li>
<li>All commands are executed as root.</li>
<li><p>In this tutorial the host's network configuration is:<br />
<code>Network Interface: eno1</code><br />
<code>IPv4 Address: 192.0.2.2/26</code><br />
<code>IPv4 Gateway: 192.0.2.1</code><br />
<code>IPv6 Address: 2001:db8:ace:babe::1/64</code><br />
<code>IPv6 Gateway: fe80::1</code></p></li>
<li><p>We want to create a private network <code>192.168.0.0/24</code> for VMs; we want to use <code>192.168.0.1</code> as the IPv4 gateway and <code>2001:db8:ace:babe::1</code> as the IPv6 gateway for VMs.</p></li>
<li>We want to create a VM whose IPv4 address is <code>192.168.0.2</code> and IPv6 address is <code>2001:db8:ace:babe:cafe::1/80</code>.</li>
</ul>

<h1>1. Enable IP Forwarding</h1>

<p>Open <code>/etc/sysctl.conf</code>. Find <code>net.ipv4.ip_forward</code>; uncomment this line and set the value to <code>1</code>. Do the same for <code>net.ipv6.conf.all.forwarding</code>.</p>

<p>Save the file; then run <code>sysctl -p</code> to apply changes.</p>

<h1>2. Install Required Packages</h1>

<p><code>apt install qemu-system qemu-utils libvirt-clients libvirt-daemon-system virtinst bridge-utils</code></p>

<h1>3. Modify the Network Configuration</h1>

<h3>3.1 Make a copy of the original <code>/etc/network/interfaces</code></h3>

<p><code>cp -p /etc/network/interfaces /etc/network/interfaces.backup</code></p>

<h3>3.2 Open <code>/etc/network/interfaces</code> and edit</h3>

<p>Comment out eno1's IPv6 configuration, then add the following line:</p>

<p><code>iface eno1 inet6 manual</code></p>

<p>Continue to add the following lines to create an interface <code>br0</code>  for KVM networking:</p>

<pre><code>auto br0
iface br0 inet static
    address 192.168.0.1/24
    bridge_ports none
    bridge_stp off
    bridge_fd 0
    post-up iptables -t nat -A POSTROUTING -s '192.168.0.0/24' -o eno1 -j MASQUERADE
    post-down iptables -t nat -D POSTROUTING -s '192.168.0.0/24' -o eno1 -j MASQUERADE
iface br0 inet6 static
    address 2001:db8:ace:babe::1/64
    up ip -6 route add default via fe80::1 dev eno1
</code></pre>

<p><code>bridge ports none</code> means br0 is not attached to any physical interface. <code>bridge_stp off</code> disables Spanning Tree Protocol; usually we don't need it in simple cases. <code>bridge_fd 0</code> sets the forwarding delay time to 0; 0 is good in simple cases. The <code>iptables</code> line allows LAN nodes with private IP addresses to communicate with external public networks. The <code>ip -6 route</code> line specifies the IPv6 gateway.</p>

<p>Save the file; then run <code>systemctl restart networking.service</code> to apply changes.</p>

<p></p><details><summary>Example: my ORIGINAL /etc/network/interfaces</summary>

<pre><code>source /etc/network/interfaces.d/*

auto lo
iface lo inet loopback
iface lo inet6 loopback

auto eno1
iface eno1 inet static
    address 192.0.2.2
    netmask 255.255.255.192
    gateway 192.0.2.1
    # route 192.0.2.0/26 via 192.0.2.1
    up route add -net 192.0.2.0 netmask 255.255.255.192 gw 192.0.2.1 dev eno1
iface eno1 inet6 static
    address 2001:db8:ace:babe::1
    netmask 64
    gateway fe80::1
</code></pre>

<p></p></details><br />
<details><summary>Example: my NEW /etc/network/interfaces</summary>

<pre><code>source /etc/network/interfaces.d/*

auto lo
iface lo inet loopback
iface lo inet6 loopback

auto eno1
iface eno1 inet static
    address 192.0.2.2
    netmask 255.255.255.192
    gateway 192.0.2.1
    # route 192.0.2.0/26 via 192.0.2.1
    up route add -net 192.0.2.0 netmask 255.255.255.192 gw 192.0.2.1 dev eno1
iface eno1 inet6 manual

auto br0
iface br0 inet static
    address 192.168.0.1/24
    bridge_ports none
    bridge_stp off
    bridge_fd 0
    post-up iptables -t nat -A POSTROUTING -s '192.168.0.0/24' -o eno1 -j MASQUERADE
    post-down iptables -t nat -D POSTROUTING -s '192.168.0.0/24' -o eno1 -j MASQUERADE
iface br0 inet6 static
    address 2001:db8:ace:babe::1/64
    up ip -6 route add default via fe80::1 dev eno1
</code></pre>

<p></p></details>

<h1>4. Create the VM</h1>

<p><code>virt-install --name YOUR_VM_NAME --ram MEMORY_SIZE_IN_MB --vcpus=NUMBER_OF_CORES --disk /PATH/TO/VIRTUAL/DISK/IMAGE.qcow2,device=disk,bus=virtio,size=DISK_SIZE_IN_GB,format=qcow2 --graphics vnc,listen=0.0.0.0,port=VNC_PORT,password=VNC_PASSWORD --network bridge=br0 --noautoconsole --cdrom /PATH/TO/ISOFILE.iso --boot cdrom,hd</code></p>

<p></p><details><summary>Example</summary><br />
We want to create a VM whose name is TEST with 1GB memory, 1 core, and 10GB disk. TEST will be stored at /var/kvm/TEST.qcow2. The VNC port is 5901 and the VNC password is Hello1. We will use /var/iso/Debian.iso to install Debian on TEST.

<p><code>virt-install --name TEST --ram 1024 --vcpus=1 --disk /var/kvm/TEST.qcow2,device=disk,bus=virtio,size=10,format=qcow2 --graphics vnc,listen=0.0.0.0,port=5901,password=Hello1 --network bridge=br0 --noautoconsole --cdrom /var/iso/Debian.iso --boot cdrom,hd</code><br />
</p></details>

<h1>5. Configure Guest Networking</h1>

<p>Because we haven't configured the DHCP service on the host, we have to manually set the VM network settings. If you are using a netinst image to install the OS, then you need to set the IP address to 192.168.0.2/24 and the gateway to 192.168.0.1 during the installation.</p>

<p></p><details><summary>Example: Debain guest /etc/network/interfaces</summary>

<pre><code>source /etc/network/interfaces.d/*

auto lo
iface lo inet loopback

allow-hotplug ens3
iface ens3 inet static
    address 192.168.0.2/24
    gateway 192.168.0.1
iface ens3 inet6 static
    address 2001:db8:ace:babe:cafe::1/80
    dns-nameservers 2606:4700:4700::1001
    gateway 2001:db8:ace:babe::1
</code></pre>

<p></p></details>
]]>
        </description>
    </item>
    <item>
        <title>25€ yr/750 GB VPS/20 Ports/10 TB BW @ 1 GBps speed/2 GB/1 core/Ignore DMCA/Romania/20 ON STOCK</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/4878/25-yr-750-gb-vps-20-ports-10-tb-bw-1-gbps-speed-2-gb-1-core-ignore-dmca-romania-20-on-stock</link>
        <pubDate>Mon, 14 Nov 2022 13:01:15 +0000</pubDate>
        <category>Offers</category>
        <dc:creator>Calin</dc:creator>
        <guid isPermaLink="false">4878@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello LES, I recently got a new node on which we want to make some delicious offers before black friday</p>

<p>750 GB HDD raid 1<br />
2 GB Ram DDr4<br />
1 CPU (50% allocated)<br />
OpenVZ 7<br />
10 TB bandwidth/month<br />
1 GBps port seed<br />
1 IPv4 NAT<br />
Ignore DMCA/Public torrent allowed<br />
20 Ports + 1 SSH Port<br />
25€ / years</p>

<p><a rel="nofollow" href="https://panel.ihostart.com/index.php?rp=/store/fast-sells/750gb" title="Click here for order">Click here for order</a></p>

<p>Node specs:</p>

<p>1x e5-2670 v2<br />
48 GB Ram<br />
2x 18 TB Exos on raid 1</p>

<p>IP for ping &gt; 92.84.132.254</p>
]]>
        </description>
    </item>
    <item>
        <title>NAT VPS: How to get started?</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/4680/nat-vps-how-to-get-started</link>
        <pubDate>Fri, 07 Oct 2022 11:22:34 +0000</pubDate>
        <category>Help</category>
        <dc:creator>Michele13</dc:creator>
        <guid isPermaLink="false">4680@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello everyone! I'm new to this forum and I would like to buy a NAT VPS. When I choose the VPS it asks me for a fully qualified domain name and some nameservers (defaults are ns1 and ns2). Where do I get these informations? I would like to get a free domain, even a subdomain would be fine (eg. test.example.com). I'm currently registered to no-ip. Can I buy this servers for a year using paypal and a prepaid card?</p>
]]>
        </description>
    </item>
    <item>
        <title>Requesting Cheap NAT VPS</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/4675/requesting-cheap-nat-vps</link>
        <pubDate>Thu, 06 Oct 2022 07:30:39 +0000</pubDate>
        <category>Requests</category>
        <dc:creator>lindy54</dc:creator>
        <guid isPermaLink="false">4675@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Looking for a 128/256 MB ipv4 NAT VPS under 4$/y, server location preferred to be in europe/middle east and the use would probably be shadowsocks/tunnel server due to the restrictions in place where I reside.</p>
]]>
        </description>
    </item>
    <item>
        <title>IPv6-to-IPv4 Translation Providers or Other Methods</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/3406/ipv6-to-ipv4-translation-providers-or-other-methods</link>
        <pubDate>Sat, 02 Oct 2021 19:24:13 +0000</pubDate>
        <category>Help</category>
        <dc:creator>lindy54</dc:creator>
        <guid isPermaLink="false">3406@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Basically I couldn't use the Cloudflare method which is for a NAT VPS  which has dedicated IPv6 only. Is there any other providers/solutions for this?</p>
]]>
        </description>
    </item>
    <item>
        <title>SSH Port Client Connection</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/3133/ssh-port-client-connection</link>
        <pubDate>Tue, 20 Jul 2021 03:56:24 +0000</pubDate>
        <category>Help</category>
        <dc:creator>Kingzerro</dc:creator>
        <guid isPermaLink="false">3133@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi all, I need some hints from you.<br />
<strong>My problem is NAT service and port 22 not used to SSH client connection.</strong><br />
I bought a NAT service about 2 months ago and port 22 of SSH client connection is ok.<br />
Last week, I bought a same NAT service and make a SSH conection, however the connection time out, then I open a ticket,  and <strong>My anwser open ticket help is port 22 not used to SSH client connection</strong><br />
Two days ago, I bought another NAT service, then I got through the conection  with IPv4 server with port 22.<br />
I don't know what happen yet, although I have checked the page service in many time. Port 22 is also default port to my server.</p>

<p>Thanks a lot,</p>
]]>
        </description>
    </item>
    <item>
        <title>[mrvm.net] -128MB packages to be discontinued.</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/3078/mrvm-net-128mb-packages-to-be-discontinued</link>
        <pubDate>Thu, 01 Jul 2021 08:26:37 +0000</pubDate>
        <category>Industry News</category>
        <dc:creator>mikho</dc:creator>
        <guid isPermaLink="false">3078@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Quick update before someone posts it here <img src="https://staging.lowendspirit.com/plugins/emojiextender/emoji/twitter/smile.png" title=":)" alt=":)" height="18" /><br />
This is also sent out to all customers, the email takes longer to process.</p>

<p>As of today, it is no longer possible to order the 128MB package at mrvm.net.<br />
Customers who already purchased the 128MB package will be honored as long as these are owned.<br />
128MB packages are not transferable to other customers.</p>

<p>The decision to remove the 128MB packages is based on the fact that keeping all locations updated is taking too much time, the recent announcement from PayPal that they are increasing their transaction fees.</p>

<p>As an effect of this decision, the discount for buying multiple services at once is changed <br />
<strong>FROM</strong>  20% on 4 NAT products or more<br />
<strong>TO</strong>  30% on 3 NAT products or more<br />
The discount is added automatically at checkout, no codes needed.</p>

<p>Currently, mrvm.net offers these locations</p>

<p><strong>EU</strong> (5) (6)<br />
Falkenstein - Germany<br />
Sofia - Bulgaria<br />
Sandefjord - Norway<br />
Reims - France<br />
Milan - Italy<br />
Dronten - Netherlands</p>

<p><strong>USA</strong> (8)<br />
Kansas City - Missouri<br />
Lenoir - North Carolina<br />
Berkeley Spring - West Virginia <br />
New York - New York<br />
Seattle - Washington<br />
Miami - Florida <br />
Los Angeles - California<br />
Atlanta - Georgia</p>

<p><strong>APAC</strong> (5)<br />
Sydney - Australia<br />
Perth - Australia<br />
Singapore - Singapore<br />
Mumbai - India<br />
Auckland - New Zealand</p>

<p>Any questions regarding these changes, I'm happy to answer.</p>
]]>
        </description>
    </item>
    <item>
        <title>SQL Server on NAT VPS</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/2821/sql-server-on-nat-vps</link>
        <pubDate>Wed, 21 Apr 2021 13:19:49 +0000</pubDate>
        <category>General</category>
        <dc:creator>TesteroniMaccaroni</dc:creator>
        <guid isPermaLink="false">2821@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello,</p>

<p>Would it be possible to install and run an SQL server on a NAT VPS? I've googled around, but nobody seems to be doing it so it sounds like it might not be very efficient/possible. Anyone have any ideas?</p>

<p>Thank you!</p>
]]>
        </description>
    </item>
    <item>
        <title>Does your ISP support IPv6 ? We got this NEW IPv6 KVM VPS + free IPv4 connectivity@$1/m | WebHorizon</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/2737/does-your-isp-support-ipv6-we-got-this-new-ipv6-kvm-vps-free-ipv4-connectivity-1-m-webhorizon</link>
        <pubDate>Wed, 31 Mar 2021 18:47:22 +0000</pubDate>
        <category>Offers</category>
        <dc:creator>Abdullah</dc:creator>
        <guid isPermaLink="false">2737@/index.php?p=/discussions</guid>
        <description><![CDATA[<p><strong>Does your ISP support IPv6 yet ?</strong> most might yes, but you still need IPv4 for compatibility with sites like GitHub ? and you'd be happy for ur sites to work on both IP4&amp;6 without depending on external reverse-proxy (like CF), correct? this VPS is for you. <img src="https://staging.lowendspirit.com/plugins/emojiextender/emoji/twitter/smiley.png" title="=)" alt="=)" height="18" /></p>

<p>After 20 days of successful testing this, we are proud to have this quite unique offering - IPv6 <strong>KVM</strong> VPS with support for nat IPv4 connectivity included at no extra charges. <br />
Suitable for pro-IPv6 guys who avoid IPv4 overcharges, bt also need sort of IPv4 compatibility; starts @ $1/m .<br />
(everyone is welcome, you get IPv4 nat connectivity)  <img src="https://staging.lowendspirit.com/plugins/emojiextender/emoji/twitter/wink.png" title=";)" alt=";)" height="18" /> <br />
The ipv4 connectivity is shared i.e. made possible by nat. You get 20 fixed static ports(tcp+udp) and another 30 assignable static ports (tcp only) chosen as per your preference (instantly from the control panel). <br />
You also get http &amp; https support (port 80&amp;443 on ipv4) set instantly from the control panel with full support for Letsencrypt SSL certificates. (i.e. Haproxy setup)<br />
All with KVM Hardware virtualization included. <img src="https://staging.lowendspirit.com/plugins/emojiextender/emoji/twitter/smile.png" title=":)" alt=":)" height="18" /></p>

<p><br /></p>

<hr />

<p><strong>KVM VPS (IPv6) free IPv4 connectivity on request(via ticket)</strong><br />
All plans include - 1 x /80 IPv6 subnet (will be upgraded to /64 in next week - you can choose to upgrade or stay with /80 per your preference), Nvme SSD disk space, and IPv4 connectivity on request(via ticket).</p>

<p>Location available: EU - Warsaw, Poland ??  <a rel="nofollow" href="http://waw.lg.webhorizon.in">Network Looking glass</a></p>

<p><br /> <br />
<strong>KVM-256M (Poland)</strong><br />
* 256MB RAM<br />
* 1vCore @ 3.0+ Ghz <br />
* 5GB NVMe SSD<br />
* 1 x /80 IPv6 (upgraded to /64 nextweek)<br />
* KVM Virtualization<br />
* 500GB transfer@1Gbps<br />
* USD $1/m or $10/y - <a rel="nofollow" href="https://my.webhorizon.in/order/config/index/kvm-ipv6/?group_id=36&amp;pricing_id=392">Order here</a></p>

<p><br /><br />
<strong>KVM-512M (Poland)</strong><br />
* 512MB RAM<br />
* 1vCore @ 3.0+ Ghz <br />
* 7.5GB NVMe SSD<br />
* 1 x /80 IPv6 (upgraded to /64 next week)<br />
* KVM Virtualization<br />
* 750GB transfer@1Gbps<br />
* USD $2/m or $15/y - <a rel="nofollow" href="https://my.webhorizon.in/order/config/index/kvm-ipv6/?group_id=36&amp;pricing_id=393">Order here</a></p>

<p><br /><br />
<strong>KVM-1G (Poland)</strong><br />
* 1GB RAM<br />
* 1vCore @ 3.0+ Ghz <br />
* 15GB NVMe SSD<br />
* 1 x /80 IPv6 (upgraded to /64 next week)<br />
* KVM Virtualization<br />
* 1TB transfer@1Gbps<br />
* USD $3/m or $25/y - <a rel="nofollow" href="https://my.webhorizon.in/order/config/index/kvm-ipv6/?group_id=36&amp;pricing_id=394">Order here</a></p>

<p>All plans -&gt; <a href="https://my.webhorizon.in/order/main/packages/kvm-ipv6/?group_id=36" rel="nofollow">https://my.webhorizon.in/order/main/packages/kvm-ipv6/?group_id=36</a></p>

<pre><code>**LAUNCH SPECIAL**
For a limited time, order any plan &amp; get automatically upgraded to the next higher plan. 
For eg. Order KVM256M @$10/y, get upgraded to KVM512M for free. Valid on both monthly &amp; annual terms. This gives higher resources on larger plans.
Valid for first 20 orders &amp; might not be extended. I Will update this post once this is sold out.
</code></pre>

<p><br /></p>

<blockquote><div>
  <p>IMPORTANT - Please turn OFF VPN/proxy while ordering.</p>
</div></blockquote>

<p>Notes:</p>

<ul>
<li>Free IPv4 connectivity on all VPS - please create a ticket after ordering. Servers are default provisioned IPv6 only.</li>
<li>After exhausting the transfer quota, speed gets limited to 10Mbps up+down, service remains ACTIVE.</li>
<li>transparent CPU policy -  20% dedicated 100% burstable*</li>
<li>Custom ISO / Windows (bring your own license)  is supported from  panel.</li>
<li>Includes VNC access</li>
<li>TOR, Public VPN/proxy, Mailing, Port Scanning, Crypto-mining are NOT ALLOWED</li>
<li>Full support for Docker, Wireguard, OpenVPN etc.</li>
</ul>

<p><br /> <br />
<strong>Payment Methods</strong><br />
Cards via Stripe (preferred)<br />
Paypal Payments<br />
Crypto payments available(BTC, BCH, LTC)</p>

<p>Guys having a card issued in India/billing address in India - Order using INR currency only <a rel="nofollow" href="https://my.webhorizon.in/order/main/packages/kvm-ipv6/?group_id=36&amp;currency=INR" title="here">here</a><br />
Any thoughts, ideas, questions? Please feel free to post here or PM me <img src="https://staging.lowendspirit.com/plugins/emojiextender/emoji/twitter/smile.png" title=":)" alt=":)" height="18" /></p>

<p><br /><br />
Thank you for reading, <br />
WebHorizon</p>
]]>
        </description>
    </item>
    <item>
        <title>OpenVPN Connected but no internet</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/2618/openvpn-connected-but-no-internet</link>
        <pubDate>Fri, 05 Mar 2021 18:58:59 +0000</pubDate>
        <category>Technical</category>
        <dc:creator>abskillz</dc:creator>
        <guid isPermaLink="false">2618@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi,</p>

<p>I have recently bough VPS from <a href="https://staging.lowendspirit.com/index.php?p=/profile/Abdullah" rel="nofollow">@Abdullah</a> (webhorizon.in)</p>

<p>Earlier I was using dedicated VPS for openvpn. Now I am switched to NAT VPS. The problem is when I am connecting to OpenVPN through mobile or desktop app. It is connecting to VPN but no internet is working. I am not expert in VPS so need help!</p>

<p>Please let me know if any screenshot or log to be shown here.</p>
]]>
        </description>
    </item>
    <item>
        <title>Introducing NAT VPS in India - check it out | WebHorizon</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/2554/introducing-nat-vps-in-india-check-it-out-webhorizon</link>
        <pubDate>Mon, 15 Feb 2021 20:28:39 +0000</pubDate>
        <category>Offers</category>
        <dc:creator>Abdullah</dc:creator>
        <guid isPermaLink="false">2554@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Heya everyone,</p>

<p>Very excited to  announce our very first service offering in India - NAT VPSes. <img src="https://staging.lowendspirit.com/plugins/emojiextender/emoji/twitter/smile.png" title=":)" alt=":)" height="18" /></p>

<p>The server is located in <strong>Mumbai</strong>   <img src="https://staging.lowendspirit.com/plugins/emojiextender/emoji/twitter/sunglasses.png" title="B)" alt="B)" height="18" /></p>

<ul>
<li>Each VPS comes with 256MB of RAM.</li>
<li>One CPU core subject to fair use policy.</li>
<li>4GB of SSD disk space in RAID.</li>
<li>125GB 250GB of high speed bandwidth (1Gbps) per month, then reduced speeds.</li>
<li>A dedicated /112 IPv6 subnet (that's 65,536 IPs! ) along with 50 IPv4 ports that can be forwarded to your VPS.</li>
</ul>

<p>It comes with a nice control panel which supports enabling <strong>tun/tap, NFS, Fuse, and PPP.</strong><br />
<strong>Full Netfilter support</strong> is enabled.<br />
Virtualization type is OVZ7. Most VPN solutions (OpenVPN, wireguard-go etc. tested working)<br />
You can reinstall the OS, options include Debian 9 &amp; 10, Ubuntu 18 &amp; 20, CentOS 7 &amp; 8 now.<br />
You can also upload your SSH key, so your VMs are set to use keys by default upon reinstall.</p>

<ul>
<li><strong>Support for Domain Forwarding</strong> - means you can have your domain served on port 80 &amp; 443. SSL support letsencrypt certificates. <img src="https://staging.lowendspirit.com/plugins/emojiextender/emoji/twitter/smile.png" title=":)" alt=":)" height="18" /></li>
</ul>

<p><br /></p>

<p><strong>Pricing</strong>- The normal pricing is $12 for 1 year of service.</p>

<p>cuz. of the much higher costs involved in India location, promotions are realistically not possible. <br />
We are offering a discount for first 20 orders only - use coupon code NATINDIA for a discounted price.<br />
Orders need be paid within 24 hours and will be activated within 24 hours.</p>

<p><a rel="nofollow" href="https://my.webhorizon.in/order/config/index/nat/?group_id=33&amp;pricing_id=365" title="ORDER LINK">ORDER LINK</a></p>

<p><strong>Payment Methods:</strong><br />
PayPal payments, Cards via Stripe Payments, BTC payments.<br />
Billing currencies: USD, EUR, GBP or INR.</p>

<p><br /></p>

<p><strong>For people living in India/having a card issued in India/billing address in India - Order using INR currency only</strong> - <a rel="nofollow" href="https://my.webhorizon.in/order/config/index/nat/?group_id=33&amp;pricing_id=365&amp;currency=INR" title="ORDER LINK">ORDER LINK</a><br />
INR payment methods: <br />
Razorpay(Cards, UPI, Netbanking, GooglePay etc), Stripe payments.</p>

<p><br /></p>

<p>Please note - there is no refund policy for NAT VPS, new PayPal refund terms are very costly and we won't pay for refunds on NAT VPS. If you really need a refund - that can be done after deducting a small fee covering the Payment Gateway and usage charges. creating a support ticket on our portal is the way, no direct disputes please. <img src="https://staging.lowendspirit.com/plugins/emojiextender/emoji/twitter/smile.png" title=":)" alt=":)" height="18" /></p>

<p><br /></p>

<p>Any questions, doubts, thoughts? please comment them below <img src="https://staging.lowendspirit.com/plugins/emojiextender/emoji/twitter/smile.png" title=":)" alt=":)" height="18" /></p>

<p><br /><br />
Thanks you for reading &amp; Kind Regards.</p>
]]>
        </description>
    </item>
    <item>
        <title>AMD EPYC NAT VPS| 256MB - 2GB | Singapore ?? Netherlands ?? New York ??</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/1822/amd-epyc-nat-vps-256mb-2gb-singapore-netherlands-new-york</link>
        <pubDate>Thu, 24 Sep 2020 19:57:35 +0000</pubDate>
        <category>Offers</category>
        <dc:creator>Abdullah</dc:creator>
        <guid isPermaLink="false">1822@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi,</p>

<p><br /></p>

<blockquote><div>
  <p></p><div>What is a NAT VPS?</div><br />
  Network Address Translation (NAT) is the process where a network device, usually a firewall, assigns a public address to a computer (or group of computers) inside a private network. <br />
  So a VPS that’s utilizing this kind of technology is shortly understand-able as a VPS with shared IPv4.<br />
  It comes with a dedicated IPv6 subnet.<br />
  In low end vps world, the main purpose of NATted VPS is also to make the price as low as possible.<br />
  Most popular OS choices like Ubuntu, Debian and CentOS can be installed from the control panel.<br />
   <br />
  Shortly it’s just like any common VPS, but it comes with Shared IPv4, not dedicated.
</div></blockquote>

<p><br /><br />
All plans come with /112 IPv6 Subnet, NAT IPv4 with 20 usable ports + 1 SSH port, Domain Forwarding(host on IPv4 port 80/443)</p>

<p></p><div>

<blockquote><div>
  <p><strong>VPS - NAT256</strong></p>
  
  <p>4GB NVMe SSD Disk<br />
  256MB DDR4 ECC RAM<br />
  1 vCPU EPYC 7302P (Fair Use)<br />
  500GB transfer @ 1Gbit; then unlimited at reduced speed</p>
  
  <p> £5.5  £4.5 / year use coupon <strong>SRVRHUNT2020</strong><br />
  <a rel="nofollow" href="https://webhorizon.in/clients/order/config/index/nat/?group_id=8&amp;pricing_id=121" title="Order in Singapore">Order in Singapore</a> | <a rel="nofollow" href="https://webhorizon.in/clients/order/config/index/nat/?group_id=8&amp;pricing_id=77" title="Order in Netherlands">Order in Netherlands</a> | <a rel="nofollow" href="https://webhorizon.in/clients/order/config/index/nat/?group_id=8&amp;pricing_id=104" title="Order in New York">Order in New York</a></p>
</div></blockquote>

<p><br /></p>

<hr />

<blockquote><div>
  <p><strong>VPS - NAT512</strong></p>
  
  <p>7GB NVMe SSD Disk<br />
  512MB DDR4 ECC RAM<br />
  1 vCPU EPYC 7302P @ 3.0Ghz (Fair Use)<br />
  750GB transfer @ 1Gbit; then unlimited at reduced speed</p>
  
  <p>£8.7 / year; no coupon required.<br />
  <a rel="nofollow" href="https://webhorizon.in/clients/order/config/index/nat/?group_id=8&amp;pricing_id=216" title="Order in Singapore">Order in Singapore</a> | <a rel="nofollow" href="https://webhorizon.in/clients/order/config/index/nat/?group_id=8&amp;pricing_id=214" title="Order in Netherlands">Order in Netherlands</a> | <a rel="nofollow" href="https://webhorizon.in/clients/order/config/index/nat/?group_id=8&amp;pricing_id=215" title="Order in New York">Order in New York</a></p>
</div></blockquote>

<p><br /></p>

<hr />

<blockquote><div>
  <p><strong>VPS - NAT1G</strong></p>
  
  <p>15GB NVMe SSD Disk<br />
  1G DDR4 ECC RAM<br />
  1 vCPU EPYC 7302P @ 3.0Ghz (Fair Use)<br />
  1.5TB transfer @ 1Gbit; then unlimited at reduced speed</p>
  
  <p>£15.8 / year; no coupon required.<br />
  <a rel="nofollow" href="https://webhorizon.in/clients/order/config/index/nat/?group_id=8&amp;pricing_id=221" title="Order in Singapore">Order in Singapore</a> | <a rel="nofollow" href="https://webhorizon.in/clients/order/config/index/nat/?group_id=8&amp;pricing_id=217" title="Order in Netherlands">Order in Netherlands</a> | <a rel="nofollow" href="https://webhorizon.in/clients/order/config/index/nat/?group_id=8&amp;pricing_id=219" title="Order in New York">Order in New York</a></p>
</div></blockquote>

<p><br /></p>

<hr />

<blockquote><div>
  <p><strong>VPS - NAT2G</strong></p>
  
  <p>30GB NVMe SSD Disk<br />
  2G DDR4 ECC RAM<br />
  2 x vCPU EPYC 7302P @ 3.0Ghz (Fair Use)<br />
  2.5TB transfer @ 1Gbit; then unlimited at reduced speed</p>
  
  <p>£28.5 / year; no coupon required.<br />
  <a rel="nofollow" href="https://webhorizon.in/clients/order/config/index/nat/?group_id=8&amp;pricing_id=224" title="Order in Singapore">Order in Singapore</a> | <a rel="nofollow" href="https://webhorizon.in/clients/order/config/index/nat/?group_id=8&amp;pricing_id=227" title="Order in Netherlands">Order in Netherlands</a> | <a rel="nofollow" href="https://webhorizon.in/clients/order/config/index/nat/?group_id=8&amp;pricing_id=225" title="Order in New York">Order in New York</a></p>
</div></blockquote>

<p><br /></p>

<p></p></div>

<hr />

<p>What can you use this kind VPS? Here it is few examples of what you can do with it:</p>

<ul>
<li>Host a full-fledged website (w any CMS like Wordpress, Ghost etc) on port 80/443</li>
<li>VPN - Most protocols including OpenVPN &amp; Wireguard can be used.</li>
<li>Proxy (private, protected)</li>
<li>IRC client/server (IPv6)</li>
<li>VoiP apps like Teamspeak, Mumble etc.</li>
<li>Anything you want with native IPv6</li>
<li>A simple remote terminal with root access, testing scripts &amp; other stuff.</li>
<li>A light usage remote desktop.</li>
<li>Distributed database, Web Scrapers etc.</li>
<li>Many more possibilities....may ask in this thread.</li>
</ul>

<p><br /><br />
<strong>Looking Glasses</strong></p>

<p>New York ?? - <a href="http://nyc.lg.webhorizon.in" rel="nofollow">http://nyc.lg.webhorizon.in</a><br />
Amsterdam ?? - <a href="http://ams.lg.webhorizon.in" rel="nofollow">http://ams.lg.webhorizon.in</a><br />
Singapore ?? - <a href="http://sgp.lg.webhorizon.in" rel="nofollow">http://sgp.lg.webhorizon.in</a></p>

<p>Uptime Reports: <a href="https://status.webhorizon.in" rel="nofollow">https://status.webhorizon.in</a><br />
<br /><br />
<strong>Payment Methods</strong>:-</p>

<ul>
<li>PayPal Payments</li>
<li>Cards via Stripe Payments</li>
<li>BTC payments</li>
<li>RazorPay (INR Payments)</li>
</ul>

<p>If you have any questions or doubts, please PM or post here.<br />
<br /><br />
Thanks for reading &amp; regards,<br />
Abdullah</p>
]]>
        </description>
    </item>
    <item>
        <title>Phoenix DOUBLE Storage or DOUBLE transfer | NAT 128mb bundle - 3 locations</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/1724/phoenix-double-storage-or-double-transfer-nat-128mb-bundle-3-locations</link>
        <pubDate>Fri, 04 Sep 2020 10:11:40 +0000</pubDate>
        <category>Offers</category>
        <dc:creator>InceptionHosting</dc:creator>
        <guid isPermaLink="false">1724@/index.php?p=/discussions</guid>
        <description><![CDATA[<h1>Phoenix Storage plans</h1>

<p>All plans from the <strong>KVM500</strong> and bigger get <strong>double the advertised</strong> storage space or transfer automatically, for example:</p>

<p>KVM500 plan gets 1000GB and costs €6.25 for 3 months.<br />
KVM1000 plan gets 2000GB and costs €4.25 /month</p>

<p><strong>Order Link</strong>: <a href="https://clients.inceptionhosting.com/cart.php?gid=30" rel="nofollow">https://clients.inceptionhosting.com/cart.php?gid=30</a></p>

<p><strong>Please</strong> put your preference in the order notes e.g. Double disk or Double transfer if you forget you will have up to 7 days to open a ticket to make the request.</p>

<p><strong>Double storage offer expired.</strong></p>

<hr />

<h1>UK SSD KVM (Clouvider London)</h1>

<ul>
<li>2 CPU Core (Equal Share)</li>
<li>2048 MB Ram</li>
<li>30 GB Pure NVMe SSD Disk space</li>
<li>2000 GB Bandwidth @ 1 gbit (shared) (DDOS Protected)</li>
<li>1 x IPv4 address</li>
<li>1 x /64 IPv6</li>
<li>Full daily full disk image backup</li>
<li>Free direct Admin</li>
</ul>

<p><strong>Order Link</strong>: <a href="https://clients.inceptionhosting.com/cart.php?a=add&amp;pid=185" rel="nofollow">https://clients.inceptionhosting.com/cart.php?a=add&amp;pid=185</a></p>

<p>€3.00 /month (special pricing applies to monthly only payments.)</p>

<hr />

<h1>NAT Bundle</h1>

<h2>€8 /year for all 3.</h2>

<h2>Netherlands, Phoenix USA and London UK.</h2>

<p><strong>OpenVZ 7</strong><br />
* 1 CPU Core<br />
* 128mb Ram<br />
* 2GB Disk Space<br />
* 350 GB Transfer p/Month<br />
* /64 IPv6 range<br />
* 1 x NAT IPv4<br />
* Orders manually accepted within 24 hours - not instant setup</p>

<p>NOTE: You need to set up each product one at a time, you will be taken to the next location when you complete the first, please use a minimum of 4 characters in the hostname or provisioning will fail and setup will be significantly delayed.</p>

<p><strong>Order Link</strong>: <a href="https://clients.inceptionhosting.com/cart.php?a=add&amp;bid=19" rel="nofollow">https://clients.inceptionhosting.com/cart.php?a=add&amp;bid=19</a></p>

<hr />
]]>
        </description>
    </item>
    <item>
        <title>AMD EPYC NAT VPS - £4.5/year choose any location | New York, Netherlands &amp; Singapore - WebHorizon</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/1696/amd-epyc-nat-vps-4-5-year-choose-any-location-new-york-netherlands-singapore-webhorizon</link>
        <pubDate>Sun, 30 Aug 2020 10:01:46 +0000</pubDate>
        <category>Offers</category>
        <dc:creator>Abdullah</dc:creator>
        <guid isPermaLink="false">1696@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello citizens of LES,</p>

<p>Did you want to buy a NAT but just needed 1 location + discount too; got some spare money, <br />
This deal is for you<br />
</p><div><br />
<br />

<blockquote><div>
  <p><strong>AMD EPYC NAT-256</strong></p>
</div></blockquote>

<pre><code>1 vCPU EPYC 7302P @ 3.0GHz (Fair Use)
256MB DDR4 RAM
4GB NVMe RAID10 Space
500 GB Transfer p/Month
1 Dedicated iPv6
1 x Shared IPv4 (20 usable ports + 1 ssh port)
Limited Support
</code></pre>

<blockquote><div>
  <p><strong>Order now</strong> - <a rel="nofollow" href="https://webhorizon.in/clients/order/main/index/nat" title="£4.5/year recurring - Use coupon **SRVRHUNT2020**">£4.5/year recurring - Use coupon <strong>SRVRHUNT2020</strong></a></p>
</div></blockquote>

<p><br /></p></div><br />
<strong>Three Prime Locations to choose from</strong>

<ul>
<li>New York City, USA</li>
<li>Amsterdam, Netherlands</li>
<li>Singapore<br />
<br /></li>
</ul>

<blockquote><div>
  <p><strong>Does NAT suits your requirements but need some extra resources</strong> - <a rel="nofollow" href="https://webhorizon.in/clients/order/main/index/vps" title="See our IPv6 VPS plans, shared IPv4 connectivity can be added on request, for free!">See our IPv6 VPS plans, shared IPv4 can be added on request, for free!</a></p>
</div></blockquote>

<p><br /><br />
<strong>Features:</strong></p>

<ul>
<li>Domain Forwarding(host your website on IPv4)</li>
<li>1Gbit Port Speed</li>
<li>Weekly Backups ( provider side backups, I recommend everyone to maintain their own backups)</li>
<li>Powerful AMD EPYC 7302P CPU</li>
<li>NVMe SSD's in RAID-10</li>
<li>Centralized management from our Client Area.</li>
</ul>

<p><br /><br />
<strong>Common Uses</strong>:-</p>

<ul>
<li>Free HA setup</li>
<li>Teamspeak Servers</li>
<li>VPN Servers</li>
<li>Proxy Servers</li>
<li>Web Servers</li>
<li>Distributed database</li>
<li>Scrapers</li>
<li>IRC clients (IPv6 only)</li>
<li>Many more uses listed <a rel="nofollow" href="https://talk.lowendspirit.com/discussion/1566/what-do-you-do-with-a-ipv4-nat-vps/p1" title="here">here</a><br />
<br /></li>
</ul>

<p><strong>Looking Glasses</strong></p>

<p>New York ?? - <a href="http://nyc.lg.webhorizon.in" rel="nofollow">http://nyc.lg.webhorizon.in</a><br />
Amsterdam ?? - <a href="http://ams.lg.webhorizon.in" rel="nofollow">http://ams.lg.webhorizon.in</a><br />
Singapore ?? - <a href="http://sgp.lg.webhorizon.in" rel="nofollow">http://sgp.lg.webhorizon.in</a></p>

<p>Uptime Reports: <a href="https://status.webhorizon.in" rel="nofollow">https://status.webhorizon.in</a><br />
<br /></p>

<p><strong>Notes:-</strong><br />
1] All Services provisioned in 12-24 hours.<br />
2] All plans are OpenVZ7 based.<br />
3] Additional iPv6 available on request<br />
4] You can use all of your resources anytime, however CPU is shared, abusing may cause your VPS to be shutdown. You will be given 2 chances to reduce your CPU abuse, or else service maybe suspended, refund in such cases will be provided at our discretion. <br />
This is done to maintain the service quality for all users.</p>

<p><br /></p>

<p><strong>Payment Methods</strong>:-</p>

<ul>
<li>PayPal Payments</li>
<li>Cards via Stripe Payments</li>
<li>BTC payments</li>
<li>RazorPay (INR Payments)</li>
</ul>

<p>If you have any questions or doubts, please PM or post here.<br />
<br /><br />
Thanks for reading &amp; regards,<br />
Abdullah</p>
]]>
        </description>
    </item>
    <item>
        <title>Cloudflare IPv4 to IPv6 not working?</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/1269/cloudflare-ipv4-to-ipv6-not-working</link>
        <pubDate>Thu, 18 Jun 2020 03:42:48 +0000</pubDate>
        <category>Help</category>
        <dc:creator>bunsenb</dc:creator>
        <guid isPermaLink="false">1269@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi all, I just got a new NAT VPS and tried to set it up with Cloudflare and I am unable to access the nginx page that I have configured through Cloudflare (proxied) on my home (IPv4) or LTE (IPv4/IPv6) connection. Everything works fine if I turn off the Cloudflare proxy feature accessing the domain from my LTE connection. This worked with no issues when I was running mikho's NAT VPS a year or two but Cloudflare has changed their UI since then for DNS.</p>

<p>Is there something obvious I'm overlooking? The AAAA record is configured fine, it's just the IPv4-&gt;IPv6 proxy on their end that isn't working correctly.</p>
]]>
        </description>
    </item>
    <item>
        <title>Some hints to set up a ad free VPN on a nat vps.</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/781/some-hints-to-set-up-a-ad-free-vpn-on-a-nat-vps</link>
        <pubDate>Fri, 13 Mar 2020 10:58:07 +0000</pubDate>
        <category>Technical</category>
        <dc:creator>elliotc</dc:creator>
        <guid isPermaLink="false">781@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Here is a super simple guide to set up a ad free vpn that come with a adguard interface on a nat vpn. The reason why I write this is because I see some others suffering with pi-hole on a nat vps.</p>

<p>This guide should be unreadable since I am bad in all Language. I just hope my experience worth 2 cents.</p>

<h3>What is AdguardHome?</h3>

<p>AdguardHome is a alternative of pi hole. If you dont know what is pi-hole, google it.</p>

<h3>What is OpenVPN?</h3>

<p>Openvpn is a VPN</p>

<hr />

<p>My server: 256MB from <a href="https://staging.lowendspirit.com/index.php?p=/profile/mrvm" rel="nofollow">@mrvm</a></p>

<ol>
<li>install AdguardHome, too simple,skip. Hints : I use <strong>[ipv6]:3000</strong> to complete the install process</li>
<li>Encryption settings for AdguadHome. Hints : you can get a let's encrypt cert very easy with <strong>acme.sh</strong></li>
<li><p>config Adguardhome's <strong>Adguardhome.yaml</strong>   (127.0.0.1 -&gt; your internal IP address), Like that</p>

<p>dns:<br />
bind_host: your internal IP address</p></li>
<li><p>set up proxy from mrvm clients panel. (That domain forwarding bottom),this action give you a Adguard Home control panel</p></li>
<li>install openvpn or any other vpns then point the dns to your internal IP</li>
</ol>

<p>my suggestion is bash a <a rel="nofollow" href="https://github.com/angristan/openvpn-install">script</a></p>

<p>Now, you get a ad-free VPN and a DNS over https.</p>

<p>Is it too short?</p>
]]>
        </description>
    </item>
    <item>
        <title>lowendspirit solusvm NAT VPS api url ?</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/883/lowendspirit-solusvm-nat-vps-api-url</link>
        <pubDate>Fri, 10 Apr 2020 16:18:34 +0000</pubDate>
        <category>Technical</category>
        <dc:creator>flesz</dc:creator>
        <guid isPermaLink="false">883@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi</p>

<p>I generated API key and hash under solus vm console, however can't figure out what's the url to send the request to?</p>

<p>Thanks</p>
]]>
        </description>
    </item>
    <item>
        <title>due to recent events - selling old accounts</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/777/due-to-recent-events-selling-old-accounts</link>
        <pubDate>Thu, 12 Mar 2020 14:18:10 +0000</pubDate>
        <category>Industry News</category>
        <dc:creator>mikho</dc:creator>
        <guid isPermaLink="false">777@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Just a quick notice to all people who are creating accounts with me and then selling the services they have ordered.</p>

<p>Unless there is a written agreement, this kind of behavior is not accepted and the buyer, when found, will have their services canceled/suspended/terminated.</p>

<p>I just found out that some poor soul bought services for $15 when the value of the service was $9.<br />
If you have a problem ordering, talk to me. I'm sure we can find the reason why your order was declined.</p>

<p>End of message.</p>
]]>
        </description>
    </item>
    <item>
        <title>[mrVM] - Bundle TopUP * or * 6 x 256MB VPS for $18 p/YEAR! * or * 3 x 256MB for $9 !! ONLY 20 availa</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/364/mrvm-bundle-topup-or-6-x-256mb-vps-for-18-p-year-or-3-x-256mb-for-9-only-20-availa</link>
        <pubDate>Fri, 20 Dec 2019 12:52:42 +0000</pubDate>
        <category>Offers</category>
        <dc:creator>mikho</dc:creator>
        <guid isPermaLink="false">364@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>A merry Christms to all of you!</p>

<p>Every now and then I'm asked about a bundle topup, some way to add additional locations at the same bundle price and this  christmas I will give you a special deal! All Topup orders placed before 2019-12-31 @ midnight are eligble for this deal.</p>

<ul>
<li>No setup fee</li>
<li>No requirement to add additional year(s) to service(s) you already have.</li>
</ul>

<p>I'm in the christmas spirit and will keep the requirements to a minimum.  And I'll even throw in a step-by-<br />
step guide</p>

<ul>
<li>You have ordered a bundle previously.</li>
<li>You must add ALL missing locations. A bundle is a bundle <img src="https://staging.lowendspirit.com/plugins/emojiextender/emoji/twitter/wink.png" title=";)" alt=";)" height="18" /></li>
<li>Renewal date on new locations will be set to the same as your current bundle renewal date.</li>
<li>You must place the order BUT do NOT pay at this point!!!!</li>
<li>Open a ticket requesting a bundle topup and your order number</li>
<li>I will update the price on your order to <strong>MATCH</strong> your bundle order!</li>
<li>You pay the updated invoice and get fresh new idle servers</li>
</ul>

<p>As the Black Friday/Cyber monday deal was so popular, I've restocked Singapore, added  a sixth location to the Europe and USA bundles and opened this offer up again for an additional 20 orders.</p>

<p>All servers below are NAT IPv4 + IPv6 enabled.</p>

<p>All servers come with:</p>

<ul>
<li>1 vCPU (See FUP in terms)</li>
<li>256 MB RAM</li>
<li>5GB HDD</li>
<li>500 GB BW</li>
</ul>

<p><strong>EUROPE</strong></p>

<ul>
<li>Bulgaria</li>
<li>Norway</li>
<li>Germany</li>
<li>France</li>
<li>Italy</li>
<li>Romania</li>
</ul>

<p>That is 6 VPS for just $18 in <strong>TOTAL</strong> for a whole YEAR!<br />
Order Link: <a href="https://clients.mrvm.net/cart.php?a=add&amp;bid=17" rel="nofollow">https://clients.mrvm.net/cart.php?a=add&amp;bid=17</a></p>

<p><strong>USA</strong></p>

<ul>
<li>New York</li>
<li>West Virginia</li>
<li>Kansas City</li>
<li>Lenoir</li>
<li>Las Vegas</li>
<li>Seattle</li>
</ul>

<p>That is 6 VPS for just $18 in **TOTAL **for a whole YEAR!<br />
Order Link: <a href="https://clients.mrvm.net/cart.php?a=add&amp;bid=18" rel="nofollow">https://clients.mrvm.net/cart.php?a=add&amp;bid=18</a></p>

<p><strong>ASIA Pacific</strong></p>

<ul>
<li>Sydney</li>
<li>Perth</li>
<li>Singapore</li>
</ul>

<p>That is 3 VPS for just $9 in <strong>TOTAL</strong> for a whole YEAR!<br />
Order Link: <a href="https://clients.mrvm.net/cart.php?a=add&amp;bid=19" rel="nofollow">https://clients.mrvm.net/cart.php?a=add&amp;bid=19</a></p>

<p><strong>IMPORTANT:</strong> Due to the ridiculously low pricing I am unable to entertain any change or variation under any circumstances, asking simply hurts my ability to be able to bring offers like this to the community. I appreciate your understanding.</p>

<p>It should go without saying but just in case, these are none refundable.</p>

<p><strong>Features:</strong></p>

<p>All locations have HAproxy front ends fully automated so you can host your site including https<br />
Tun/TAP available<br />
Fuse available<br />
NFS available<br />
All IPv4 are NAT<br />
You get 20 ports forwarded + 1 special port for ssh access over IPv4</p>

<p>All locations come with a routed IPv6 subnet</p>

<p>You will get access to the Virtualizor control panel for server management.</p>

<p>Bandwidth resets monthly</p>

<p>Common uses are:</p>

<ul>
<li>Teamspeak Servers</li>
<li>VPN Servers</li>
<li>Proxy Servers</li>
<li>Web Servers</li>
<li>Distributed database master&lt;&gt;master/slave setups</li>
<li>Scrapers</li>
<li>Cheap HA using Cloudflare and round-robin DNS</li>
<li>IRC clients (IPv6 only)</li>
</ul>

<p>Simple terms overview:</p>

<ul>
<li>No torrenting</li>
<li>NO TOR</li>
<li>TOR is not allowed!</li>
<li>No crypto mining/wallets</li>
<li>No bulk mailing</li>
<li>No IRC Servers</li>
</ul>
]]>
        </description>
    </item>
    <item>
        <title>Inceptionhosting NAT VPS UK goes offline itself after 2-3 days</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/403/inceptionhosting-nat-vps-uk-goes-offline-itself-after-2-3-days</link>
        <pubDate>Wed, 25 Dec 2019 02:50:56 +0000</pubDate>
        <category>Technical</category>
        <dc:creator>h021kk</dc:creator>
        <guid isPermaLink="false">403@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Season greetings. <br />
Sorry to bother you guys. I have noticed 3 time that my UK NAT VPS (Inceptionhosting) goes offline itself after 2-3 days and then I have to boot it via control panel. Also it is happening after Anthony upgraded to OpenVZ7.</p>

<p>Is it only me or anyone else having the same issue ?</p>

<p>Thanks</p>
]]>
        </description>
    </item>
    <item>
        <title>Webrimium LLC - NAT VPS IPv6</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/310/webrimium-llc-nat-vps-ipv6</link>
        <pubDate>Fri, 13 Dec 2019 22:54:32 +0000</pubDate>
        <category>Technical</category>
        <dc:creator>lxander</dc:creator>
        <guid isPermaLink="false">310@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I ordered server at Webrimium.<br />
Can't connect to it.<br />
Any of 4 IPv6's at VPS Management menu send no answer to ping or ssh (<em>I have server with IPv6 where ping6 works</em>).<br />
Support answered only that my server has IPv6 and no IPv4.<br />
And doesn't answer any questions for 2 weeks.</p>

<p>Did someone buying the same? How did you connect to server?<br />
Thanks for help.</p>
]]>
        </description>
    </item>
   </channel>
</rss>
