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
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.

MyVPSNetworks.com | Prague, CZ VPS hosting | Special LXC Deals inside!

13»

Comments

  • MaouniqueMaounique Host Rep, Veteran

    @Clanly said:
    My attempt is to unlock a VPN in a certain region. Of course, it is best to have certain network knowledge. :D

    If you need help with that, pm me.

    Thanked by 2Clanly Mumbly
  • @Maounique said:

    @Clanly said:
    My attempt is to unlock a VPN in a certain region. Of course, it is best to have certain network knowledge. :D

    If you need help with that, pm me.

    thanks bro ,I did it via a support ticket, it took me several hours

  • MaouniqueMaounique Host Rep, Veteran
    edited September 2024

    BTW, from Romania, through Czechia, to Luxembourg.

    That is really impressive performance, I am getting lower latency than through Germany and look at that non-existent jitter...

  • tenperatenpera Member
    edited September 2024

    this is on i3, too old., any plant to upgrade?
    Please clear ticket 4531946, very simple request.

  • This is so funny that everything works. I thought otherwise, but it does work, snappy.

  • MaouniqueMaounique Host Rep, Veteran

    @tenpera said:
    This is so funny that everything works. I thought otherwise, but it does work, snappy.

    Told ya!

    Thanked by 1tenpera
  • Vojta702Vojta702 🚩 Patron Provider Tag Suspended

    @tenpera said: this is on i3, too old., any plant to upgrade?

    Might upgrade in future to something more powerful and of course newer, but this is not in our plans at the moment. But we have some servers that are still not deployed, and we will probably do some deals on those too.

    @tenpera said: Please clear ticket 4531946, very simple request.

    Replied :smile:

    Thanked by 1tenpera
  • @Vojta702, check DM

  • Vojta702Vojta702 🚩 Patron Provider Tag Suspended

    @tenpera said:
    @Vojta702, check DM

    Just writing reply, one minute please :wink:

  • @Maounique said:
    BTW, from Romania, through Czechia, to Luxembourg.

    That is really impressive performance, I am getting lower latency than through Germany and look at that non-existent jitter...

    bro why doesnt my custom SSH port work? I can only use the port it specifies and the firewall is turned off.How do you solve the problem of promox system reinstallation?

  • amaeva080amaeva080 Member
    edited September 2024

    @Clanly said:

    @Maounique said:
    BTW, from Romania, through Czechia, to Luxembourg.

    That is really impressive performance, I am getting lower latency than through Germany and look at that non-existent jitter...

    bro why doesnt my custom SSH port work? I can only use the port it specifies and the firewall is turned off.How do you solve the problem of promox system reinstallation?

    I think sshd is listening on the socket and not running as a service. Do below to disable the socket and run it as a service.

    Before doing the below set your desired port for ssh daemon in / etc / ssh / sshd_config

    Steps are for Debian/Ubuntu

    # systemctl disable --now ssh.socket
    # systemctl enable --now ssh.service
    # systemctl daemon-reload
    # systemctl restart ssh
    
  • @amaeva080 said:

    @Clanly said:

    @Maounique said:
    BTW, from Romania, through Czechia, to Luxembourg.

    That is really impressive performance, I am getting lower latency than through Germany and look at that non-existent jitter...

    bro why doesnt my custom SSH port work? I can only use the port it specifies and the firewall is turned off.How do you solve the problem of promox system reinstallation?

    I think sshd is listening on the socket and not running as a service. Do below to disable the socket and run it as a service.

    Before doing the below set your desired port for ssh daemon in / etc / ssh / sshd_config

    # systemctl disable --now ssh.socket
    # systemctl enable --now ssh.service
    # systemctl daemon-reload
    # systemctl restart ssh
    

    THANKS ! After running, the SSH designated port is not affected by the restart. If you want to customize the SSH port, it still cannot work.

  • amaeva080amaeva080 Member
    edited September 2024

    @Clanly said:

    @amaeva080 said:

    @Clanly said:

    @Maounique said:
    BTW, from Romania, through Czechia, to Luxembourg.

    That is really impressive performance, I am getting lower latency than through Germany and look at that non-existent jitter...

    bro why doesnt my custom SSH port work? I can only use the port it specifies and the firewall is turned off.How do you solve the problem of promox system reinstallation?

    I think sshd is listening on the socket and not running as a service. Do below to disable the socket and run it as a service.

    Before doing the below set your desired port for ssh daemon in / etc / ssh / sshd_config

    # systemctl disable --now ssh.socket
    # systemctl enable --now ssh.service
    # systemctl daemon-reload
    # systemctl restart ssh
    

    THANKS ! After running, the SSH designated port is not affected by the restart. If you want to customize the SSH port, it still cannot work.

    You have to use one of the NAT ports allocated to your VPS.
    Let's say in sshd_config you use 24503
    Do the above steps. Verify that the sshd daemon is listening on 24503

    Then you can connect using

    ssh [email protected] -p 24503

    Thanked by 1Clanly
  • ClanlyClanly Member
    edited September 2024

    @amaeva080 said:

    @Clanly said:

    @amaeva080 said:

    @Clanly said:

    @Maounique said:
    BTW, from Romania, through Czechia, to Luxembourg.

    That is really impressive performance, I am getting lower latency than through Germany and look at that non-existent jitter...

    bro why doesnt my custom SSH port work? I can only use the port it specifies and the firewall is turned off.How do you solve the problem of promox system reinstallation?

    I think sshd is listening on the socket and not running as a service. Do below to disable the socket and run it as a service.

    Before doing the below set your desired port for ssh daemon in / etc / ssh / sshd_config

    # systemctl disable --now ssh.socket
    # systemctl enable --now ssh.service
    # systemctl daemon-reload
    # systemctl restart ssh
    

    THANKS ! After running, the SSH designated port is not affected by the restart. If you want to customize the SSH port, it still cannot work.

    You have to use one of the NAT ports allocated to your VPS.
    Let's say in sshd_config you use 24503
    Do the above steps. Verify that the sshd daemon is listening on 24503

    Then you can connect using

    ssh [email protected] -p 24503

    Thank you. the strange thing is,after I changed the custom port, I checked that it was listening and the firewall was turned off, but it just didn’t work.and you can still only use the original specified port :o

  • Vojta702Vojta702 🚩 Patron Provider Tag Suspended

    IPv6 availability

    We are announcing availability of IPv6 for all services across our three DCVega.cz nodes (pve2, pve3, pve5). Each service can receive a /64 IPv6 subnet free of charge.

    In order to request IPv6 to be added to your service, please open a ticket in our billing panel and we will assign you your /64.

    Thanked by 2Clanly Maounique
  • ClanlyClanly Member
    edited September 2024

    6048997 I need ipv6 plz

  • Vojta702Vojta702 🚩 Patron Provider Tag Suspended

    @Clanly said:

    6048997 I need ipv6 plz

    Replied.

  • MaouniqueMaounique Host Rep, Veteran

    @Vojta702 said:

    IPv6 availability

    We are announcing availability of IPv6 for all services across our three DCVega.cz nodes (pve2, pve3, pve5). Each service can receive a /64 IPv6 subnet free of charge.

    In order to request IPv6 to be added to your service, please open a ticket in our billing panel and we will assign you your /64.

    Yeeeehaaaaawwww!
    Running to open a ticket.
    Love you man, can I order another service? Or one per customer?

  • ClanlyClanly Member
    edited September 2024

    @Maounique said:

    @Vojta702 said:

    IPv6 availability

    We are announcing availability of IPv6 for all services across our three DCVega.cz nodes (pve2, pve3, pve5). Each service can receive a /64 IPv6 subnet free of charge.

    In order to request IPv6 to be added to your service, please open a ticket in our billing panel and we will assign you your /64.

    Yeeeehaaaaawwww!
    Running to open a ticket.
    Love you man, can I order another service? Or one per customer?

    Need to configure manually by yourself :D

  • Vojta702Vojta702 🚩 Patron Provider Tag Suspended

    @Maounique said: Love you man, can I order another service? Or one per customer?

    Sure you can! There is no limit per customer.

  • tenperatenpera Member
    edited September 2024

    ipv6 works, very good. 👍

  • This is fun, snappy, good job.

  • MaouniqueMaounique Host Rep, Veteran
    edited September 2024

    @tenpera said:
    This is fun, snappy, good job.

    Also, no interruption. Even a small blip in the network is breaking my stuff, I am testing it and, so far, it ran flawlessly.
    For this type of usage I don't need much traffic, but it must be stable and it is. It runs a kind of game proxy to bypass congestion in some networks which are peering through cogent with a particular datacenter. It does what I wanted it to do and more. At the next server update I will establish the tunnel over IPv6 as well.

    Thanked by 1Frameworks
  • It takes a while to set up as it's done manually, but I highly recommend this provider. Be patient and trust the system :D

  • Vojta702Vojta702 🚩 Patron Provider Tag Suspended

    @eb1995 said:
    It takes a while to set up as it's done manually, but I highly recommend this provider. Be patient and trust the system :D

    Thank you for your positive review :heart:

  • MaouniqueMaounique Host Rep, Veteran

    Morning!

    I have tried to order another but I get HTTP 500 error when I try to pay.

  • @Vojta702 I am trying to renew my LXC VPS, but I can't find PayPal under the payment options?

This discussion has been closed.