emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#57351: closed ([PATCH] gnu: Add vpn-slice.)


From: GNU bug Tracking System
Subject: bug#57351: closed ([PATCH] gnu: Add vpn-slice.)
Date: Wed, 31 Aug 2022 13:16:01 +0000

Your message dated Wed, 31 Aug 2022 18:45:34 +0530
with message-id <875yi8y2o9.fsf@systemreboot.net>
and subject line Re: [PATCH v2] gnu: Add vpn-slice.
has caused the debbugs.gnu.org bug report #57351,
regarding [PATCH] gnu: Add vpn-slice.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
57351: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=57351
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add vpn-slice. Date: Tue, 23 Aug 2022 14:14:47 +0530
* gnu/packages/vpn.scm (vpn-slice): New variable.
---
 gnu/packages/vpn.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index 1ec619b0c2..c68511e04b 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -1197,3 +1197,31 @@ (define-public xl2tpd
      "xl2tpd is an implementation of the Layer 2 Tunnelling Protocol (RFC 
2661).
 L2TP allows you to tunnel PPP over UDP.")
     (license license:gpl2)))
+
+(define-public vpn-slice
+  (package
+    (name "vpn-slice")
+    (version "0.16.1")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "vpn-slice" version))
+              (sha256
+               (base32
+                "1anfx4hn2ggm6sbwqmqx68s3l2rjcy4z4l038xqb440jnk8jvl18"))))
+    (build-system python-build-system)
+    (inputs (list python-dnspython python-setproctitle))
+    (home-page "https://github.com/dlenski/vpn-slice";)
+    (synopsis "Split tunneling replacement for vpnc-script")
+    (description "vpn-slice is a replacement for the vpnc-script used by
+OpenConnect and vpnc.  Instead of trying to copy the behavior of standard
+corporate VPN clients, which normally reroute all your network traffic through
+the VPN, vpn-slice tries to minimize your contact with an intrusive VPN.  This
+is also known as a split-tunnel VPN, since it splits your traffic between the
+VPN tunnel and your normal network interfaces.
+
+By default, vpn-slice only routes traffic for specific hosts or subnets
+through the VPN.  It automatically looks up named hosts, using the VPN's DNS
+servers, and adds entries for them to your /etc/hosts (which it cleans up
+after VPN disconnection), however it does not otherwise alter your
+/etc/resolv.conf at all.")
+    (license license:gpl3+)))
-- 
2.37.1




--- End Message ---
--- Begin Message --- Subject: Re: [PATCH v2] gnu: Add vpn-slice. Date: Wed, 31 Aug 2022 18:45:34 +0530
Pushed, thanks for the review!


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]