4129 links
740 private links
  • Doo's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Jouer les vidéos
Links per page: 20 50 100
◄Older
page 1 / 2
23 results tagged openvpn x
  • OpenVPN, NETMAP et masquerading - La Lanterne Rouge

    TIL iptables NETMAP, feature intéressante!

    April 26, 2021 01:49:01 PM GMT+02:00 * - permalink -
    QRCode
    - http://lanterne-rouge.over-blog.org/article-openvpn-netmap-et-masquerading-65731501.html
    openvpn netmap iptables
  • Note: MultiHoming avec OpenVPN pour extension Vrack entre OVH et Online

    petite note pour mémoire et partage :

    • Étendre le broadcast domain du VRACK d'ovh sur le RPNv2 d'online c'est assez simple avec OpenVPN, il suffit de passer le serveur en net bridge
    • Penser à activer le proxying ARP sur les interfaces private (lartc.org/howto/lartc.bridging.proxy-arp.html) internes aux vrack/rpn
    • Pour augmenter la taille de la bande passante disponible et assurer le failover sans problème, une single AS BGP (ou OSPF, j'ai pas été trop loin sur mes tests) avec des annonces rapides fait le taf, j'ai mis chaque routeur au même niveau de poids
    • Les neighbors BGP qui partagent leurs plages d'adresses (BGP et statique) sont au sein du même vlan privé, les interco 1:1 openvpn sont uniquement destinées à assurer le transport

    Au final j'ai ~60Mbps de bande passante entre chaque routeur, pour un total dépassant les 100Mbps, la stack réseau agit comme un switch transparent entre les deux réseaux. Les performances en 1:1 sont correctes, mais tributaires de la bande passante d'un seul routeur (sadly, j'ai pas réussi à faire de multipath sur ça). Par contre, la stack exprime tout son potentiel sur les transferts many:many

    April 12, 2017 02:37:39 PM GMT+02:00 * - permalink -
    QRCode
    - https://dooby.fr/shaare/GzxEfw
    vpn openvpn quagga bgp
  • Pseudo-bridges with Proxy-ARP

    la bonne vieille technique pour faire du networking PROPRE :-) comme disent les gens d'openvpn "c'est pas facile le réseau, alors plutôt que d'essayer de prendre des raccourcis, essayez d'apprendre à pratiquer correctement"

    April 3, 2017 05:32:22 PM GMT+02:00 * - permalink -
    QRCode
    - http://lartc.org/howto/lartc.bridging.proxy-arp.html
    arp openvpn
  • thumbnail
    Getting disconnected from OpenVPN server each hour - Server Fault
    you can try to reneg-sec 0 in your server.conf:
    
    https://duo.com/docs/openvpn
    
    https://tldrify.com/m80
    

    j'ai essayé différents éléments de configuration dans openvpn pour arriver à cette conclusion là finalement, ça a été un gros GROS calvaire de résoudre ce pb parce que l'option n'est pas beaucoup utilisée ni documentée, et que peu de gens ont un setup 3FA sur openvpn ...

    February 17, 2017 02:29:25 PM GMT+01:00 * - permalink -
    QRCode
    - https://serverfault.com/questions/436333/getting-disconnected-from-openvpn-server-each-hour
    openvpn
  • OpenVPN Client – Applications Android sur Google Play

    vu ici :https://upandclear.org/2017/01/26/client-openvpn-android-complet/
    que c'est un client openvpn @ android audité

    February 10, 2017 10:06:45 AM GMT+01:00 * - permalink -
    QRCode
    - https://play.google.com/store/apps/details?id=it.colucciweb.openvpn&hl=fr
    openvpn android
  • multifactor authentication for distributed VPN mesh - part 2, token configuration, local OTP | Florin's blog
    January 30, 2017 11:42:59 AM GMT+01:00 * - permalink -
    QRCode
    - http://florin.myip.org/blog/multifactor-authentication-distributed-vpn-mesh-part-2-token-configuration-local-otp
    vpn openvpn
  • Sharing a Port with OpenVPN and a Web Server - PFSenseDocs
    January 27, 2017 10:20:31 AM GMT+01:00 * - permalink -
    QRCode
    - https://doc.pfsense.org/index.php/Sharing_a_Port_with_OpenVPN_and_a_Web_Server
    openvpn 443
  • Yubico Forum • View topic - [HOW TO] Redundant VPN servers w/ multifactor authentication

    putain ENFIN quelqu'un qui a pris le temps de détailler son processus, promis je fias un blogpost ou quelque chose quand j'aurais fini

    January 25, 2017 02:35:57 PM GMT+01:00 * - permalink -
    QRCode
    - https://forum.yubico.com/viewtopic.php?f=31&t=1462
    yubikey openvpn
  • thumbnail
    Angristan/OpenVPN-install: Improved OpenVPN installer for Debian, Ubuntu, CentOS and Arch Linux
    December 5, 2016 10:15:04 AM GMT+01:00 * - permalink -
    QRCode
    - https://github.com/Angristan/OpenVPN-install
    openvpn
  • OpenVPN sur le port 443 partagé avec un serveur web | memo-linux.com

    via https://ecirtam.net/links/?mVxTUA

    Partager le port 443 entre OpenVPN et un serveur web
    
    Éditer le fichier de configuration du serveur, exemple un OpenVPN sous Yunohost :
    nano /etc/openvpn/yunohost.conf
    Modifier le protocole UDP part TCP :
    proto tcp
    Indiquer le port :
    port 443
    Ajouter la directive port-share :
    port-share 127.0.0.1 1443
    Éditer le fichier de configuration du client VPN (toujours dans le cas de Yunohost) :
    nano var/www/openvpn/domaine.tld.ovpn 
    Changer le port d’écoute :
    remote domaine.tld 443
    Changer le port d’écoute pour le serveur web :
    Nginx :
    sed -i -e "s/443/1443/g" /etc/nginx/conf.d/*.conf
    Apache2 :
    sed -i -e "s/443/1443/g" /etc/apache2/ports.conf
    Relancer les services :
    Serveur web Nginx :
    systemctl restart nginx
    Serveur web Apache2 :
    systemctl restart apache2
    Serveur OpenVPN :
    systemctl restart openvpn
    ou pour Yunohost :
    systemctl restart openvpn@yunohost.service
    Test de connexion du serveur OpenVPN et du serveur web sur le port 443
    
    Test du serveur OpenVPN :
    sudo openvpn domaine.tld.ovpn
    October 5, 2016 09:51:29 AM GMT+02:00 * - permalink -
    QRCode
    - https://memo-linux.com/openvpn-sur-le-port-443-partage-avec-un-serveur-web/
    openvpn https
  • thumbnail
    jlund/streisand: Streisand sets up a new server running L2TP/IPsec, OpenConnect, OpenSSH, OpenVPN, Shadowsocks, sslh, Stunnel, and a Tor bridge. It also generates custom configuration instructions for all of these services. At the end of the run you are given an HTML file with instructions that can be shared with friends, family members, and fellow activists.

    Interesting! via Oros links

    February 24, 2016 10:08:54 AM GMT+01:00 * - permalink -
    QRCode
    - https://github.com/jlund/streisand
    openvpn tor
  • Note:

    Petite update de mon vpn pour le rendre un peu plus bulletproof, c'est assez fou de voir ce qu'on peut faire avec openvpn, très simplement!

    February 21, 2016 11:26:04 AM GMT+01:00 * - permalink -
    QRCode
    - https://dooby.fr/shaare/IGBPCw
    openvpn
  • Hardening – OpenVPN Community
    February 21, 2016 11:26:00 AM GMT+01:00 * - permalink -
    QRCode
    - https://community.openvpn.net/openvpn/wiki/Hardening
    openvpn
  • OpenVPN for paranoids - blog.dornea.nu
    February 21, 2016 11:25:54 AM GMT+01:00 * - permalink -
    QRCode
    - http://blog.dornea.nu/2015/11/17/openvpn-for-paranoids/
    openvpn
  • thumbnail
    Stouts/Stouts.openvpn · GitHub

    Un role ansible pour openvpn

    April 2, 2015 08:03:20 PM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/Stouts/Stouts.openvpn
    ansible openvpn
  • OpenVPN: Set a static IP Address for a client | Michls Tech Blog
    August 15, 2014 03:08:43 PM GMT+02:00 * - permalink -
    QRCode
    - http://michlstechblog.info/blog/openvpn-set-a-static-ip-address-for-a-client/
    openvpn
  • Which VPN Services Take Your Anonymity Seriously? 2013 / 2014 | TorrentFreak

    Une fois que j'aurais fini mon petit setup a moi j'irias peut être ailleurs :) mais bon le support est super cool compétent et ils rechignent pas à filer des mois gratuits !
    Pour IPredator :

    1. We keep connection logs for debugging purposes, which happens encrypted and off-site. Connection logs contain information for debugging PPTP client issues. We try to store the least amount legally possible anywhere. IP-addresses are encrypted and can only be decrypted by non-support staff to ensure a proper process. For example, to work around issues where the police ruffles up the support staff a bit to get data for an abuse report. In the database we only store the details users give us on sign-up and a limited backlog of payments.

    2. Sweden.

    3. Usually we only receive email, therefore we drop anything that has DMCA in the subject. If they want something they need to send us a letter or a fax or send the police. Most of the time we get complaints for running the TPB proxy or the TOR servers.

    4. PaySafe, BitCoins, PayPal, PaySon, AlertPay

    February 15, 2014 12:35:43 PM GMT+01:00 * - permalink -
    QRCode
    - http://torrentfreak.com/vpn-services-that-take-your-anonymity-seriously-2013-edition/
    vpn openvpn ipredator
  • New Howtos for Linux firewalls on desktops and routers - IPredator - Blog

    Une doc conseillée par le support d'ipredator, a lire et appliquer avant de revenir vers eux :)

    February 5, 2014 09:32:41 AM GMT+01:00 * - permalink -
    QRCode
    - https://blog.ipredator.se/2014/02/new-howtos-%20for-linux-firewalls-routers-and-internet-hosts.html
    ipredator openvpn vpn tdl
  • thumbnail
    Two default routes

    une autre doc que je veux pas perdre pcq elle est bien :)

    January 28, 2014 09:13:40 PM GMT+01:00 - permalink -
    QRCode
    - http://www.rjsystems.nl/en/2100-adv-routing.php
    mindfuck ip-route ip-rule openvpn route réseau
  • thumbnail
    Openvpn23ManPage – OpenVPN Community

    --mark value
    Mark encrypted packets being sent with value. The mark value can be matched in policy routing and packetfilter rules. This option is only supported in Linux and does nothing on other operating systems.

    dispo uniquement en v2.3 du coup .. je l'ai installée !

    January 24, 2014 11:46:02 PM GMT+01:00 - permalink -
    QRCode
    - https://community.openvpn.net/openvpn/wiki/Openvpn23ManPage
    openvpn
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation