Quantcast
Channel: LowEndTalk
Viewing all 59851 articles
Browse latest View live

test post - please reply

$
0
0

they dont all seem to be sinking any more

feel free to reply so we can test it.


test 2 - please reply

$
0
0

test 2 - starting offer post in general then moving it.

please reply.

Need Windows VPS

$
0
0

I need windows vps with this MINIMUM requirement: - 2 core - 4 GB ram - < $10

Looking for Automation Advice

$
0
0

So here's what I'm looking to achieve.

A customer orders a freepbx machine via WHMCS

On payment I'd like to spin up a configured machine ready to rock and be able to manage the machine, and it's firewall rules from WHMCS.

Is this achievable without writing a ton of code?

Colocation

$
0
0

Hey guys,

I'm looking for some place to colo my 2 (1RU) servers on East coast. I'm not good in this.

Any suggestions? Any help would be much appreciated!

Thanks in advance!

Need affordable managed unmetered VPS

$
0
0

Hi All I need a affordable managed unmetered VPS for my client's project. Below is the requirements:- Min. 1GB RAM DDRIII Min. 50GB SSD Min. 2 Core processor (2.00 Ghz) Min. 100Mbit/100 Mbps flat rate traffic Unmetered Bandwidth Cpanel/Webmin/any Managed Support Non-US server ( European or Any other Region Server) Lowest Possible Price Needed.

Help Me Plz !!!

AlphaRacks shared hosting disk full

$
0
0

Hey guys,

A few days ago I opened a ticket to Alpharacks to let them know that their disk is full on their shared hosting node "latitude" and they said they are working on it. Nothing has changed.. check out this screenshot:

https://imgur.com/a/kpcG4

I know that they suck and are to be avoided, but for 99 cents I had to see for myself.

I'm appealing to anyone reading this, STAY AWAY! Go spend your dollar on candy or something unless you like to collect useless hosting :P

EDIT: I forgot to add, you really do get what you pay for!

[$25 reward] Cpanel account - HTTP 500 Error almost every day - why?

$
0
0

$25 reward to the person with a solution on this issue. Paid with Paypal.

We have a Cpanel server with lots of accounts on it. Most of the users have wordpress accounts. Last week one WordPress site was showing a HTTP 500 error and the site was offline. It only shows an empty page/500 Error page. No other users have any issue on the same server.

We did restore the cpanel account backup - and the page was up again.

The next day the site was just showing HTTP 500 Error again.

We did then restore the cpanel backup and the site was online again. We did change the cpanel and FTP password. We did also change the wordpress admin passwod we got from the customer.

The next day the site had the HTTP 500 error again.

We restored the backup, change wordpress admin password. We did then update wordpress and all plugins/themes for the customer. (some was around one year old) We did not give the customer any of the new passwords.

The site then worked fine Wednesday, Thursday, Friday but on Saturday the site got the 500 Error message again.

On Monday we restored the backup, now also disabling their guestbook - since we could see in the site logs that the last log entry before the 500 Error message was an guestbook entry.

Tuesday the site was offline again. We restore the backup, and one more time I disabled the guestbook, and also disabled commenting in Wordpress, and also deleted around 19.000 SPAM comments.

The site worked fine from Tuesday to yesterday. But today the site has the 500 HTTP error again.

We have also let the webdesigner of the site look at all source code on Wordpress and all plugins and they says that they do not see any issues with the source code.

Why do this happen, not every day, but several times per week? Why do a account restore in cpanel fix the issue, without doing anything on the server? Is it some kind of hacking of the WordPress installation? Is it a server issue, if yes, why is only one of around 200 sites affected?


Whmcs module and/or promo solution

$
0
0

I got help the last time I asked here so I might as well ask another question and hope for the best.

I am looking for a solution to offer discount on an order when chosing X amounts of products from a group/category.

Let me give an example;
I have 7 locations where I offer NAT service. The only options I have today is either do a bundle or offer a discount (percentage/price override) on every location.

What I’m looking for is to give the option to chose X number of locations, out of the 7, free of choice.
At checkout a Y% discount will be applied when/if there are X or more of the products in the basket.
No discount applied if the number of services is not reached.

Tutorial: Configuring fast VPN exiting multiple Tor instances

$
0
0

Short intro

Using VPN is an important part of nowadays privacy and blindly trusting even most recognized VPN providers may still represent some risks. People who already know that, prefer making and using their own solutions, such as buying VPS or dedicated servers and building VPN. Using Tor as a VPN exit point is a widely used scheme known for its anonimity benefits, but it can be achieved by different ways and each of them has different level of performance. I will quickly show the fastest one that I am very happy with.

Software and technology used

OpenVPN, Tor, HAProxy, transocks_ev or redsocks, Unbound, DNSCrypt.

Clients are connected to the OpenVPN instance and their default gateway is set to the OpenVPN server address. Their connections to the clearnet are transparently redirected to the Haproxy instance and balanced through several Tor instances afterwards, because using one Tor instance for that is a proven bad practice for achieving performance. Connections that are made to .onion services are not load-balanced as this requires packet mangling and more advanced configuration, for now we will keep it simple. Thus, basically the scheme is:

I will omit OpenVPN instance configuration here and my reasons are:

  • it doesn't matter which tunneling software is used, you may prefer WireGuard or any other modern software to OpenVPN

  • there are plenty of HOW-TO's exist already that can be found on Duckduckgo

  • less unnecessary information in the article

As for transparent TCP->Socks5 redirector I use transocks_ev, because the current version of redsocks has some issues with recent versions of libevent and they remain unfixed. However, I will demonstrate examples for both, transocks and redsocks, so it's up to you which one to use.

Initial configuration

To avoid confusion in this article I decided to put all required daemons listening on 127.0.0.1. In practice you might create a separate loopback interface, because linux considers a packet as 'martian' when its destination is 127.0.0.1.

The following kernel parameters are needed to get everything working:

net.ipv4.ip_forward=1 # enable packet forwarding net.ipv4.conf.all.route_localnet=1 # this is only needed to permit routing packets to 127.0.0.1

Our VPN clients range: 10.11.1.0/24

Configuring Tor

We will make 2 groups of Tor instances: 1. One for resolving, mapping and accessing .onion domains.

# DNS port for resolving and mapping .onion domains to VirtualAddrNetworkIPv4 range
DNSPort 127.0.0.1:5301 
VirtualAddrNetworkIPv4 10.192.0.0/10
AutomapHostsOnResolve 1

# TransPort is needed for transparent redirection 
TransPort 127.0.0.1:9041

You may use that with your system's default Tor instance, whose usual config location is /etc/tor/torrc

  1. Several instances for making clearnet connections through Tor exits. I am using a cron script for bringing them up when they are not running.

    !/bin/bash

    TORBINARY=/usr/bin/tor BASEDIR=/tmp/.tor-nodes # you must change this to a more secure location PORTS=(9070 9071 9072 9073 9074 9075) # Socks5 ports to listen. A quantity of ports here defines the quantity of Tor instances

    if [ ! -d "$BASEDIR" ]; then mkdir $BASEDIR fi

    for port in ${PORTS[]} do IS_RUNNING=$(netstat -tlpn 2>/dev/null | awk '{print $4}' | sed 's/^.://' | grep "^$port\$") if [ ! $IS_RUNNING ]; then $TORBINARY -f /dev/null --allow-missing-torrc --defaults-torrc /dev/null --DataDirectory $BASEDIR/$port --SocksPort $port > /dev/null 2>&1 & fi done

Configuring Haproxy

global
    daemon
    maxconn 2048

defaults
    timeout connect 3000ms
    timeout client 0ms
    timeout server 0ms

frontend rotatingproxies
    mode tcp
    # the IP:port Haproxy will listen on
    bind 127.0.0.1:9999
    default_backend torproxies

backend torproxies
    mode tcp
    option persist
    # you should put all the ports defined in $PORTS array from 
    # the cron script we discussed in the previous section
    server tor1 127.0.0.1:9070 check
    server tor2 127.0.0.1:9071 check
    server tor3 127.0.0.1:9072 check
    server tor4 127.0.0.1:9073 check
    server tor5 127.0.0.1:9074 check
    server tor6 127.0.0.1:9075 check

Configuring transocks and redsocks

Either piece of software will "transform" our clients clearnet TCP traffic into Socks5 requests and redirect them to Haproxy.

I am using 'transocks_ev' (http://oss.tiggerswelt.net/transocks_ev/) fork instead of transocks due to livevent and updated code. libevent library is required for it. Get & compile it with: git clone https://github.com/tiernano/transocks_ev ; cd transocks_ev ; make

Now just make another cron script for it and add to cron:

#!/bin/bash
TRANSOCKS_DIR="/opt/transocks" # you should define your own here
PROCTEST=$(pgrep -f transocks_ev)

if [ -z "$PROCTEST" ]; then
    $TRANSOCKS_DIR/transocks_ev -H 127.0.0.1 -p 9035 -S 127.0.0.1 -s 9999 
fi

It will now listen on 127.0.0.1:9035 for TCP connections. We still need to point all our clients to that port and iptables rules will be discussed at the end of this tutorial.

Now, as I promised, the alternative config for redsocks with the same function:

base {
 log_debug = off;
 log_info = off;
 daemon = on;
 user = redsocks;
 group = redsocks;
 redirector = iptables;
}

redsocks {
 local_ip = 127.0.0.1;
 local_port = 9035;
 ip = 127.0.0.1;
 port = 9999;  // haproxy
 type = socks5;
}

Configuring DNSCrypt

Tor's DNSPort is able to resolve all the clearnet requests as well, but it is very slow and gives significant decrease in performance. DNSCrypt is a compromise between security and performance, though providers for our DNS requests should be selected carefully, because some of them may store logs. Full list of them can be found on (https://dnscrypt.info/public-servers), alternatively, you may host a DNSCrypt server by yourself.

ResolverName bn-nl0
ResolverName d0wn-nl-ns4
ResolverName scaleway-fr
Daemonize yes

# DNSCrypt will listen on this port
LocalAddress 127.0.0.1:5399

Configuring Unbound

Unbound will listen on 127.0.0.1:53 and act as a router for domain names. .onion domains will be resolved by our main Tor instance, that is listening on 127.0.0.1:5301. Everything else will be resolved through dnscrypt-proxy.

server:
    access-control: 10.0.0.0/8 allow
    access-control: 127.0.0.0/8 allow
    access-control: 192.168.0.0/16 allow
    cache-max-ttl: 14400
    cache-min-ttl: 900
    hide-identity: yes
    hide-version: yes
    interface: 127.0.0.1 # Unbound will listen as a DNS resolver on the port 53
    minimal-responses: yes
    prefetch: yes
    rrset-roundrobin: yes
    use-caps-for-id: yes
    verbosity: 0
    do-not-query-localhost: no
    local-zone: "onion." nodefault
    local-zone: "." nodefault

    forward-zone:
        name: "onion"
        forward-addr: 127.0.0.1@5301 # this is our main Tor DNSPort
        forward-first: no
    forward-zone:
        name: "."
        forward-addr: 127.0.0.1@5399  # this is our dnscrypt-proxy instance port

Glue everything together with iptables

Now, everything we have configured above won't work without proper iptables rules.

Firstly, add a rule that redirects all outbound UDP requests made by clients to port 53 to Unbound's 53. -A PREROUTING -i tun0 -p udp -m udp --dport 53 -j DNAT --to-destination 127.0.0.1:53

.onion resolved domains will be mapped to 10.192.0.0/10 range, thus we redirect this range to our main Tor instance -A PREROUTING -d 10.192.0.0/10 -i tun0 -p tcp -m tcp --tcp-flags FIN,SYN,RST,ACK SYN -j DNAT --to-destination 127.0.0.1:9041

The restant clearnet connections will be redirected to transocks or redsocks. -A PREROUTING -i tun0 -p tcp -m tcp --tcp-flags FIN,SYN,RST,ACK SYN -j DNAT --to-destination 127.0.0.1:9035

It's everything and your ultra-fast VPN should be working now. Sorry if I have disappointed you because you were expecting 100500 lines of boring configurations, along with examples using a 'sudo' command.

Bottom line I am using this configuration for 2 years already and it has become best for me among many other configurations I've been using in the past. Please share your own practice and experience as I am very eager to learn other ways of realizing this task.

This tutorial is special for LET.

Europe dumps 300,000 UK-owned .EU domains into the Brexit bin

$
0
0

Not sure if this has posted already, did not see it any recent threads.

_In an official statement Thursday, the European Commission announced it will cancel all 300,000 domains under the .eu top-level domain that have a UK registrant, following Britain's eventual departure from the European Union.

"As of the withdrawal date, undertakings and organizations that are established in the United Kingdom but not in the EU and natural persons who reside in the United Kingdom will no longer be eligible to register .eu domain names," the document states, adding, "or if they are .eu registrants, to renew .eu domain names registered before the withdrawal date."_

https://www.theregister.co.uk/2018/03/29/eu_dumps_300000_ukowned_domains_into_brexit_bin/

What do you think about Bunnycdn? (Isnt that cheapest and reliable one?)

$
0
0

Ive recently found cheaper video cdn solution than amazon : bunnycdn. So how are them? Have you tested? What do you think?

[HiFormance] 2GB || 40GB SSD RAID10 || KVM || WINDOWS || 1Gbps || 4 Locations || $5/mth

$
0
0

Hello Everyone!

We have a couple of very special offers for you today for both KVM and OpenVZ. Every VPS comes equipped with the latest and greatest control panel software, SolusVM. Our support team is available 24/7/365 to assist you via our support ticket system or via phone. Contact sales@hiformance.com today to enhance your hosting experience!

Why choose HiFormance?

24/7 Expert Support
Full Control Panel (SolusVM)
HTML5 VNC
Instant Activation
KVM Virtualization
99.99% Uptime SLA
25+ OS Templates
Custom ISO's (Bring your own)
FREE Location transfers
Bulk pricing discounts
E5-2660+ Host Nodes
Flexible pricing & configurations
Pure SSD RAID10 Storage

**5 Locations: **
Los Angeles - http://lg.losangeles.ca.hiformance.net/
Chicago - http://lg.chicago.il.hiformance.net/
Dallas - http://lg.dallas.tx.hiformance.net/
Buffalo - http://lg.buffalo.ny.hiformance.net/
Atlanta - http://lg.atlanta.ga.hiformance.net/

Special Offer: Pre-pay 3-years to receive double CPU, memory, SSD or IP address!
Note: Just submit a ticket and include the resource you choose to be doubled.

OpenVZ 2018
2 vCore
2GB Ram
20GB Pure SSD
2TB Bandwidth
1Gbps Port
1 x IP Address
OpenVZ -- SolusVM Control Panel
Linux Only
$10/year - Order Link

KVM 2018
2 Core
2GB Ram
40GB Pure SSD
2TB Bandwidth
1Gbps Port
1 x IP Address
KVM -- SolusVM Control Panel
Windows & Linux
$5/month - Order Link

KVM Host Node:
2x Xeon E5-2660 through E5-2690
128GB+ DDR3/DDR4
8 X 1TB SSD
Hardware RAID10
1Gbps Uplink

Recommend website monitoring service

$
0
0

Hi guys

Could you please share your website monitoring services usage experience? I need to check HTTP(S)/DNS services and get alert via email and sms. What do you use? What can you recommend? I liked Pingdom features, but it’s UI - is to slow and difficult to use.

Thanks in advance.

Want dedicated server for vps nod

$
0
0

Hi

USA location , E3 or E5 , 250 / 480 G sad , 1G port and at last 13 ip , budget $50/m

Tnx


THE AIO IP Related Thread. (IPv4 + IPv6 + ASN)

$
0
0

Hi everyone,

Here are a few businesses that rent out & sell resources.

ARIN - North America
IPv4 Leasing
HostUS - $90 per /24
GarrisonHost - $70 (+$70 Setup) per /24
IPv4Less - $128 per /24
IP6 (@William) - Contact about stock & prices.

IPv6 Leasing
HostUS - $35 per /48
IP6 (@William) - Contact about stock & prices.


ASN Registration
--NONE--
RIPE - Europe
IPv4 Leasing
RMLH - € 50 per /24
SinaVPS - 100CHF
IP6 (@William) - Contact about stock & prices.
Velder.li - @Patrick7 - Contact about stock & prices

IPv6 Leasing
RMLH - €5 per /48 - Annually
IP6 - €0 per /44
SinaVPS - 100CHF - Annually
Velder.li - @Patrick7 - Contact about stock & prices


ASN Registration
RMLH - €50 - One Time.
IP6 - €100 - One Time.
SinaVPS - 80CHF - One Time
Velder.li - @Patrick7 - Contact about stock & prices
APNIC - Asia Pacific
IPv4 Leasing
HostUS - $90 per /24
IP6 (@William) - Contact about stock & prices.

IPv6 Leasing
HostUS - $35 per /48 - Annually
IP6 (@William) - Contact about stock & prices.

ASN Registration
HostUS - $35 - Annually + $10 setup.

for AFRINIC & LACNIC.. one stop shop.. @William!

Please tag me in a reply to this thread if this OP needs updating. All future IP related commercial requests or questions are to be posted in this thread.

looking for namecheap renewal domain coupon

$
0
0

because I'm running low on budget I need a coupon to renew my domain at namecheap any help tips are highly appreciated

Reviews of Host4Fun & Cloudxtiny

$
0
0

Hi all,

I'm looking at Cloudxtiny and Host4Fun for non-critical vps hosting. They both have cheapish plans for <$7/yr for reasonable specs.

Does anyone have any experience with uptime/reliability/support for these 2 providers?

Are there any other providers that are under $7/yr with 128MB/128MB swap or 256MB RAM/5GB disk/100GB Bandwidth/IPv4 which people recommend?

Thanks

Hivelocity Review!

$
0
0

Been with Hivelocity for a year now as a colocation customer, figured I'd post a review. Steve runs a tight ship, and the support staff is great. Brian and Rick are fantastic, working with me at odd hours to get sales related changes pushed through. The bandwidth is top notch, pricing is great, and their datacenters in Tampa are clean and well built.

Billing: 8/10 Sales: 10/10 Network: 10/10 Facilities: 10/10

Android Phone Security

$
0
0

I have been iPhone user for several years, but i have decided to move to OnePlus 5T because of iPhone's ridiculous price increase.

So i have ordered OnePlus 5T, I'm thinking is it as secure as iOS? Do i need antivirus or malware protection in it? I'm not going to be downloading anything from anywhere else but Google Play store or maybe amazon. If so, which apps do i need to have in order to be as secure as possible.

Android users, please advise.

Viewing all 59851 articles
Browse latest View live