From 31d95ae0e979ad73953b7ebadba7855f1bb3896d Mon Sep 17 00:00:00 2001 From: poma poma@gmail.com Date: Mon, 6 Mar 2017 11:00:45 +0100 Subject: [PATCH] Adds Point-to-Point Tunneling Protocol (PPTP) as a service. By enabling service, specific helpers modules will be attached, to achieve the operational state of service.
--- config/Makefile.am | 1 + config/services/pptp.xml | 8 ++++++++ po/POTFILES.in | 1 + 3 files changed, 10 insertions(+) create mode 100644 config/services/pptp.xml
diff --git a/config/Makefile.am b/config/Makefile.am index f05caf6..bb33846 100644 --- a/config/Makefile.am +++ b/config/Makefile.am @@ -181,6 +181,7 @@ CONFIG_FILES = \ services/pop3s.xml \ services/pop3.xml \ services/postgresql.xml \ + services/pptp.xml \ services/privoxy.xml \ services/proxy-dhcp.xml \ services/ptp.xml \ diff --git a/config/services/pptp.xml b/config/services/pptp.xml new file mode 100644 index 0000000..c055973 --- /dev/null +++ b/config/services/pptp.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8"?> +<service> + <short>PPTP</short> + <description>Point-to-Point Tunneling Protocol (PPTP) is a method for implementing Virtual Private Network (VPN). If you plan to allow compatible Microsoft VPN clients to connect to an internal firewalled network, enable this option. You need the pptpd package installed for this option to be useful.</description> + <port protocol="tcp" port="1723"/> + <port protocol="udp" port="1723"/> + <module name="nf_conntrack_pptp"/> +</service> diff --git a/po/POTFILES.in b/po/POTFILES.in index 12cdbf2..fd9137d 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -31,6 +31,7 @@ config/services/nfs.xml config/services/ntp.xml config/services/openvpn.xml config/services/pop3s.xml +config/services/pptp.xml config/services/radius.xml config/services/samba-client.xml config/services/samba.xml
I personally dislike PPTP soooo much I am philosophically opposed to this :)
But there is that M$ crowd that need this...
Nice work, Poma.
On 03/06/2017 08:15 AM, poma wrote:
From 31d95ae0e979ad73953b7ebadba7855f1bb3896d Mon Sep 17 00:00:00 2001 From: poma poma@gmail.com Date: Mon, 6 Mar 2017 11:00:45 +0100 Subject: [PATCH] Adds Point-to-Point Tunneling Protocol (PPTP) as a service. By enabling service, specific helpers modules will be attached, to achieve the operational state of service.
firewalld-users@lists.fedorahosted.org