Howdy, Stranger!

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


Merry Christmas from BuyVM! More features from Franta Claus! - Page 4
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.

Merry Christmas from BuyVM! More features from Franta Claus!

124

Comments

  • FatGrizzlyFatGrizzly Member, Host Rep

    @kdh said:

    @Francisco BuyShared rejects my domain for some reason.

    Use some random domain and signup, then open a ticket with billing to change before they provision your service. Whmcs is ass.

  • FranciscoFrancisco Top Host, Host Rep, Veteran

    Sounds like I don't have .io in the whois.php file. I'll take a look and let you know.

    Francisco

  • FranciscoFrancisco Top Host, Host Rep, Veteran

    @kdh said:

    @Francisco BuyShared rejects my domain for some reason.

    Give this another try friend :)

    Francisco

    Thanked by 1Foul
  • FranciscoFrancisco Top Host, Host Rep, Veteran
    edited April 2023

    Route smaller blocks via BGP, on-the-fly change your outbound route!
    We’re working to interlink our locations, allowing users to be able to announce a /24 (for
    instance) over BGP, and then announce smaller blocks (even a single IP) in another BuyVM
    location, and it will interlink/cross over. Perfect for VPN companies that want a smaller block > in each DC!

    This has now gone live!

    :D

  • ericlsericls Member, Patron Provider

    @Francisco said:

    Route smaller blocks via BGP, on-the-fly change your outbound route!
    We’re working to interlink our locations, allowing users to be able to announce a /24 (for
    instance) over BGP, and then announce smaller blocks (even a single IP) in another BuyVM
    location, and it will interlink/cross over. Perfect for VPN companies that want a smaller block > in each DC!

    This has now gone live!

    :D

    This is a game changer! Congrats!

  • MannDudeMannDude Host Rep, Veteran

    @Francisco said:

    Route smaller blocks via BGP, on-the-fly change your outbound route!
    We’re working to interlink our locations, allowing users to be able to announce a /24 (for
    instance) over BGP, and then announce smaller blocks (even a single IP) in another BuyVM
    location, and it will interlink/cross over. Perfect for VPN companies that want a smaller block > in each DC!

    This has now gone live!

    :D

    It's working great, thanks!

    Thanked by 1Francisco
  • FranciscoFrancisco Top Host, Host Rep, Veteran

    @MannDude said:

    @Francisco said:

    Route smaller blocks via BGP, on-the-fly change your outbound route!
    We’re working to interlink our locations, allowing users to be able to announce a /24 (for
    instance) over BGP, and then announce smaller blocks (even a single IP) in another BuyVM
    location, and it will interlink/cross over. Perfect for VPN companies that want a smaller block > in each DC!

    This has now gone live!

    :D

    It's working great, thanks!

    Thanks, Lemmiwinks.

    Francisco

    Thanked by 2FatGrizzly MannDude
  • Loyal Customer of Franta Claus 😛 for over 9 months and carrying the premier status in account dashboard 😊

    Thanked by 1Francisco
  • MannDudeMannDude Host Rep, Veteran

    @Francisco said:

    @MannDude said:

    @Francisco said:

    Route smaller blocks via BGP, on-the-fly change your outbound route!
    We’re working to interlink our locations, allowing users to be able to announce a /24 (for
    instance) over BGP, and then announce smaller blocks (even a single IP) in another BuyVM
    location, and it will interlink/cross over. Perfect for VPN companies that want a smaller block > in each DC!

    This has now gone live!

    :D

    It's working great, thanks!

    Thanks, Lemmiwinks.

    Francisco

    Thanked by 1Francisco
  • @Francisco, As I noticed, you are now using BTCPay Server to receive crypto payments.
    Is there any plan to support Lightning Network payments in the future?

  • FranciscoFrancisco Top Host, Host Rep, Veteran

    @VayVayKa said: @Francisco, As I noticed, you are now using BTCPay Server to receive crypto payments.

    Is there any plan to support Lightning Network payments in the future?

    It should be enabled.

    Francisco

    Thanked by 1VayVayKa
  • @Francisco said:

    Route smaller blocks via BGP, on-the-fly change your outbound route!
    We’re working to interlink our locations, allowing users to be able to announce a /24 (for
    instance) over BGP, and then announce smaller blocks (even a single IP) in another BuyVM
    location, and it will interlink/cross over. Perfect for VPN companies that want a smaller block > in each DC!

    This has now gone live!

    :D

    any documentation on how to use route smaller block with bird2?

  • FranciscoFrancisco Top Host, Host Rep, Veteran

    @LightBlade said:

    @Francisco said:

    Route smaller blocks via BGP, on-the-fly change your outbound route!
    We’re working to interlink our locations, allowing users to be able to announce a /24 (for
    instance) over BGP, and then announce smaller blocks (even a single IP) in another BuyVM
    location, and it will interlink/cross over. Perfect for VPN companies that want a smaller block > in each DC!

    This has now gone live!

    :D

    any documentation on how to use route smaller block with bird2?

    Just add an additional route for the small announcement on the vm you want it pointing to :)

    You’ll want the parent super net also announced just to keep latency down.

    Francisco

    Thanked by 1LightBlade
  • MannDudeMannDude Host Rep, Veteran

    @LightBlade said:

    @Francisco said:

    Route smaller blocks via BGP, on-the-fly change your outbound route!
    We’re working to interlink our locations, allowing users to be able to announce a /24 (for
    instance) over BGP, and then announce smaller blocks (even a single IP) in another BuyVM
    location, and it will interlink/cross over. Perfect for VPN companies that want a smaller block > in each DC!

    This has now gone live!

    :D

    any documentation on how to use route smaller block with bird2?

    For Region 1:

    protocol static {
            ipv4;
            route  x.x.x.0/24 reject;
            route  x.x.x.x.0/26 reject; #Region Specific /26
    
    }
    
    filter buyvmv4_out {
            if net ~ [x.x.x.0/24,x.x.x.0/26] then accept;
            else reject;
    }
    
    
    

    Then Region 2:


    protocol static { ipv4; route x.x.x.0/24 reject; route x.x.x.x.64/26 reject; #Region Specific /26 } filter buyvmv4_out { if net ~ [x.x.x.0/24,x.x.x.64/26] then accept; else reject; }

    Etc.

    Thanked by 1LightBlade
  • @Francisco said:

    @LightBlade said:

    @Francisco said:

    Route smaller blocks via BGP, on-the-fly change your outbound route!
    We’re working to interlink our locations, allowing users to be able to announce a /24 (for
    instance) over BGP, and then announce smaller blocks (even a single IP) in another BuyVM
    location, and it will interlink/cross over. Perfect for VPN companies that want a smaller block > in each DC!

    This has now gone live!

    :D

    any documentation on how to use route smaller block with bird2?

    Just add an additional route for the small announcement on the vm you want it pointing to :)

    You’ll want the parent super net also announced just to keep latency down.

    Francisco

    @MannDude said:

    @LightBlade said:

    @Francisco said:

    Route smaller blocks via BGP, on-the-fly change your outbound route!
    We’re working to interlink our locations, allowing users to be able to announce a /24 (for
    instance) over BGP, and then announce smaller blocks (even a single IP) in another BuyVM
    location, and it will interlink/cross over. Perfect for VPN companies that want a smaller block > in each DC!

    This has now gone live!

    :D

    any documentation on how to use route smaller block with bird2?

    For Region 1:

    protocol static {
            ipv4;
            route  x.x.x.0/24 reject;
            route  x.x.x.x.0/26 reject; #Region Specific /26
    
    }
    
    filter buyvmv4_out {
            if net ~ [x.x.x.0/24,x.x.x.0/26] then accept;
            else reject;
    }
    
    
    

    Then Region 2:


    protocol static { ipv4; route x.x.x.0/24 reject; route x.x.x.x.64/26 reject; #Region Specific /26 } filter buyvmv4_out { if net ~ [x.x.x.0/24,x.x.x.64/26] then accept; else reject; }

    Etc.

    so in bird we announced 1 block in 2 different servers and use static and filter to determine a small subnet. is that correct?

  • FranciscoFrancisco Top Host, Host Rep, Veteran

    @LightBlade said: so in bird we announced 1 block in 2 different servers and use static and filter to determine a small subnet. is that correct?

    >

    You need to 'announce' the smaller block as well, just like you did the parent block.

    We'll internally route it and the packets will arrive in the right place.

    Francisco

    Thanked by 2LightBlade kait
  • AXYZEAXYZE Member

    How long it takes to get activation?
    I've paid 17 hours ago with PayPal and its still pending. Is it normal?

  • @Francisco said:

    @LightBlade said: so in bird we announced 1 block in 2 different servers and use static and filter to determine a small subnet. is that correct?

    >

    You need to 'announce' the smaller block as well, just like you did the parent block.

    We'll internally route it and the packets will arrive in the right place.

    Francisco

    cool, it's working now, tested with ipv6. i can split /64 between location Lux and Miami. thanks

    Thanked by 2Francisco heiska
  • FranciscoFrancisco Top Host, Host Rep, Veteran

    cool, it's working now, tested with ipv6. i can split /64 between location Lux and Miami. thanks

    Cool right??

    Francisco

    Thanked by 1LightBlade
  • @Francisco said:

    cool, it's working now, tested with ipv6. i can split /64 between location Lux and Miami. thanks

    Cool right??

    Francisco

    it's like magic :D

  • @Francisco said:

    @VayVayKa said: @Francisco, As I noticed, you are now using BTCPay Server to receive crypto payments.

    Is there any plan to support Lightning Network payments in the future?

    It should be enabled.

    Francisco

    Doesn't support Tether USDT :(

  • netomxnetomx Moderator, Veteran

    OOS in the 512... :C

  • DPDP Administrator, The Domain Guy

    @netomx said:
    OOS in the 512... :C

    Franta stopped doing the 512s since 2 years ago or so :smiley:

    Thanked by 2Xrmaddness netomx
  • @DP said:

    @netomx said:
    OOS in the 512... :C

    Franta stopped doing the 512s since 2 years ago or so :smiley:

    I've still got one of the forbidden fruits in Luxembourg <3

  • noisycodenoisycode Member
    edited February 8

    Any plan of restocking DA reseller plans in Las Vegas? It's solely missed.

  • FranciscoFrancisco Top Host, Host Rep, Veteran

    @noisycode said:

    Any plan of restocking DA reseller plans in Las Vegas? It's solely missed.

    I’ll see if we have much left. We haven’t been adding new nodes yet as we have been trying to get crane stuff done.

    Francisco

    Thanked by 1noisycode
  • @Francisco said: we have been trying to get crane stuff done

    Excellent. B)

  • qpsqps Member, Host Rep

    Discussions of Franta Claus, Lemmiwinks, and forbidden fruit... Not sure when BuyVM ventured into becoming a cheesy porn production house, but congrats.

  • @Francisco said:

    @noisycode said:

    Any plan of restocking DA reseller plans in Las Vegas? It's solely missed.

    I’ll see if we have much left. We haven’t been adding new nodes yet as we have been trying to get crane stuff done.

    Francisco

    Where are you up to on the timeline with Namecrane?

  • @JosephF said:

    @Francisco said:

    @noisycode said:

    Any plan of restocking DA reseller plans in Las Vegas? It's solely missed.

    I’ll see if we have much left. We haven’t been adding new nodes yet as we have been trying to get crane stuff done.

    Francisco

    Where are you up to on the timeline with Namecrane?

    Soon (tm)

    Thanked by 1JosephF
Sign In or Register to comment.