Vue normale

Sony envisagerait de renommer PlayStation Network sur PS5

23 mars 2026 à 01:40

Je me souviens avoir tapé mon identifiant PSN pour la première fois sur une manette PS3 maladroite et avoir vu une petite lumière verte me connecter à d’autres personnes. Hier, un e-mail aux développeurs a discrètement annoncé que les lettres PSN seront progressivement supprimées d’ici septembre 2026. Cette minuscule phrase portait le poids étrange d’un […]

Le post Sony envisagerait de renommer PlayStation Network sur PS5 est apparu en premier sur Moyens I/O.

CyberGhost vs ExpressVPN Basique : quel VPN choisir à moins de 3 €/mois ?

En promotion sur leurs abonnements de deux ans, CyberGhost et ExpressVPN Basique s’affichent actuellement à moins de 3 € par mois. Mais lequel offre le meilleur rapport qualité-prix ? Sécurité, performances, fonctionnalités… on fait le point.

Surfshark Starter vs IPVanish Essentiel : quel VPN pour petit budget ?

Vous cherchez un VPN efficace à petit prix ? Surfshark Starter et IPVanish Essentiel figurent parmi les offres les plus accessibles du moment, toutes deux proposées à moins de 2 € par mois. Mais lequel offre le meilleur rapport qualité/prix pour sécuriser votre connexion ? Voici notre comparatif.

Bon plan : à seulement 3,09 €/mois, le forfait NordVPN Basique protège jusqu’à 10 appareils

Avec sa formule Basique, NordVPN permet de sécuriser jusqu’à 10 appareils simultanément dès 3,09 € par mois. Une offre à saisir pour profiter d’une protection VPN premium à moindre coût.

Tinder Unveils AI Matchmaking And New Features At SPARKS 2026 Keynote

15 mars 2026 à 16:00
Tinder held its first product keynote to introduce upcoming features and outline the platform’s future strategy. The event, titled “Tinder SPARKS 2026: Start Something New,” focused on new tools designed to make connections more personalized and less dependent on the traditional swipe-based experience. The keynote took place on Thursday (12) and featured several company executives presenting updates across different areas of the app. The format resembled product events commonly hosted […]

Surfshark VPN avec Calm offert : vrai bonus utile ou simple argument marketing ?

Surfshark inclut désormais l’application de méditation Calm dans ses abonnements de 24 mois. Mais ce bonus apporte-t-il une réelle valeur aux utilisateurs ou s’agit-il surtout d’un argument marketing ? Réponse dans cet article.

Cartoon Network relance une franchise culte qui connaît un regain de popularité

14 mars 2026 à 18:00
Cartoon Network relance une franchise culte qui connaît un regain de popularité
Cartoon Network prépare le retour d’une franchise emblématique, récemment remise au goût du jour. Cette décision marque un tournant pour la chaîne, qui capitalise sur l’engouement renouvelé suscité par cette série auprès des anciennes et nouvelles générations de fans.

NordVPN Plus : le meilleur compromis entre VPN, anti-malware et gestionnaire de mots de passe ?

NordVPN Plus promet une protection numérique complète avec VPN, anti-malware et gestionnaire de mots de passe à partir de 3,59 € par mois. Faut-il craquer pour ce pack ? Réponse dans cet article.

Make docker swarm HA with keepalived |・∀・

5 mars 2026 à 19:10

While having a self-healing, scalable docker swarm is great for availability and scalability, none of that is worth a sausage if nobody can connect to your cluster!

Preparation

Enable IPVS module

On all nodes which will participate in keepalived, we need the "ip_vs" kernel module, in order to permit services to bind to non-local interface addresses.

Set this up once-off for both the primary and secondary nodes, by running:

echo "modprobe ip_vs" >> /etc/modules
modprobe ip_vs

Setup nodes

Assuming your IPs are as per the following example:

192.168.4.1 : Primary
192.168.4.2 : Secondary
192.168.4.3 : Virtual

Run the following on the primary

docker run -d --name keepalived --restart=always \
--cap-add=NET_ADMIN --cap-add=NET_BROADCAST --cap-add=NET_RAW --net=host \
-e KEEPALIVED_UNICAST_PEERS="#PYTHON2BASH:['192.168.4.1', '192.168.4.2']" \
-e KEEPALIVED_VIRTUAL_IPS=192.168.4.3 \
-e KEEPALIVED_PRIORITY=200 \
osixia/keepalived:2.0.20

And on the secondary2:

docker run -d --name keepalived --restart=always \
--cap-add=NET_ADMIN --cap-add=NET_BROADCAST --cap-add=NET_RAW --net=host \
-e KEEPALIVED_UNICAST_PEERS="#PYTHON2BASH:['192.168.4.1', '192.168.4.2']" \
-e KEEPALIVED_VIRTUAL_IPS=192.168.4.3 \
-e KEEPALIVED_PRIORITY=100 \
osixia/keepalived:2.0.20

Serving

That's it. Each node will talk to the other via unicast (no need to un-firewall multicast addresses), and the node with the highest priority gets to be the master. When ingress traffic arrives on the master node via the VIP, docker's routing mesh will deliver it to the appropriate docker node.
Summary

What have we achieved?

Summary

Created:

A Virtual IP to which all cluster traffic can be forwarded externally, making it "Highly Available"

The easy, 5-minute install

I share (with sponsors and patrons) a private "premix" GitHub repository, which includes an ansible playbook for deploying the entire Geek's Cookbook stack, automatically. This means that members can create the entire environment with just a git pull and an ansible-playbook deploy.yml 👍

Chef's notes 📓

Some hosting platforms (OpenStack, for one) won't allow you to simply "claim" a virtual IP. Each node is only able to receive traffic targetted to its unique IP, unless certain security controls are disabled by the cloud administrator. In this case, keepalived is not the right solution, and a platform-specific load-balancing solution should be used. In OpenStack, this is Neutron's "Load Balancer As A Service" (LBAAS) component. AWS, GCP and Azure would likely include similar protections. ↩

More than 2 nodes can participate in keepalived. Simply ensure that each node has the appropriate priority set, and the node with the highest priority will become the master.

Direct link

Ubiquiti Networks : le rêve pour un prosumer

Par : Cédric
24 mai 2022 à 10:20
Je suis un vrai techy, vous le savez, autant professionnellement que personnellement. Depuis des années, je cherche toujours la perle rare pour améliorer mon vLab et améliorer mon installation @home. Aujourd'hui je vais vous parler de la marque Ubiquiti et de sa déclinaison wireless, la gamme Unifi.
❌