Howdy, Stranger!

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


VPS hosted on skbroadband
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.

VPS hosted on skbroadband

Need help on finding a VPS hosted on asn: AS9318

Comments appreciated!

Comments

  • truwebtruweb Member
    edited July 2020

    Try your luck
    ./reverse.sh 103.13.53
    ./reverse.sh 103.49.44

    https://ipinfo.io/AS9318

    #!/bin/bash
    VERMELHO='\033[1;31m'
    VERDE='\033[1;32m'
    AZUL='\033[1;36m'
    AMARELO='\033[1;33m'
    NC='\033[0m'
    
    if [ -z "$1" ]
      then
        echo "Use ex 200.201.202"
    else
        ipAddress=$1
        for i in {0..255} ;do
        (
        sleep 0.4
            echo -n -e ${AMARELO}"$ipAddress.$i resolve:"${NC}
            {
            host $ipAddress.$i |grep NXDOMAIN;
            revIP=$(echo $?);
            } &> /dev/null
    
            if [ $revIP = 1 ]; then
                DOMINIO=`host $ipAddress.$i |cut -s -d " " -f6,5`
                echo -n -e ${AZUL} "$DOMINIO" ${NC}
                {
                host $DOMINIO |cut -s -d " " -f6,5 |grep NXDOMAIN
                revNome=$(echo $?);
                } &> /dev/null
                if [ $revNome = 0 ]; then
                    echo -n -e ${VERMELHO} "Domain does not resolve an IP address"${NC}
                else
                    echo -n `host $DOMINIO |cut -s -d " " -f6,5`
                    echo -n -e ${VERDE}" [ OK ]"${NC}
                fi
                echo
            else
                echo -e ${VERMELHO}" Did not resolve any domain"${NC}
    
            fi
        );
        done
    fi
    
    Thanked by 1BlaZe
  • deployvmdeployvm Member, Host Rep

    Is there any reason for SK Broadband instead of LG U+ or KT (AS4766)?

  • Hi @deployvm thanks for your message!! yes, there is, I'd like to deploy an OpenVPN to watch south korean netflix content. Found out that a VPN provider uses a server hosted in this asn.

    @truweb I guess my message is a bit misleading, I'm looking to buy a vps hosted on that asn

  • zenkizenki Member

    Vultr use them for transit on their South Korea VPS range, If you are looking for a VPS hosted on that exact ASN, I doubt you would find one.

Sign In or Register to comment.