summaryrefslogtreecommitdiffstats
path: root/network/ufw/README
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2011-03-14 16:15:25 -0500
committer Robby Workman <rworkman@slackbuilds.org>2011-03-14 16:15:25 -0500
commita7ea463fff1c1d11c4d6596bfa7b56f96c78dc95 (patch)
tree945d1cd80648af3932ba9bcf61ff2ceabc306adc /network/ufw/README
parent780c6943a41428ff6ff0a10dcb2df62d03c5056f (diff)
downloadslackbuilds-a7ea463fff1c1d11c4d6596bfa7b56f96c78dc95.tar.gz
slackbuilds-a7ea463fff1c1d11c4d6596bfa7b56f96c78dc95.tar.xz
network/ufw: Removed (unmaintained)
Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2010-November/006660.html Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/ufw/README')
-rw-r--r--network/ufw/README28
1 files changed, 0 insertions, 28 deletions
diff --git a/network/ufw/README b/network/ufw/README
deleted file mode 100644
index 2b700eefe6..0000000000
--- a/network/ufw/README
+++ /dev/null
@@ -1,28 +0,0 @@
-Ufw (Uncomplicated Firewall) is program for managing a netfilter firewall.
-It provides a command line interface and aims to be uncomplicated and easy
-to use. It is not intended to provide a complete firewall functionality via
-its command interface, but provides an easy way to add or remove simple rules.
-
-To run ufw at boot you can add the following code to rc.local file:
-
-if [ -x /etc/init.d/ufw ]; then
-/etc/init.d/ufw start
-fi
-
-Rules can be added with ports, services or application names. To specify an
-application you need a profile stored under /etc/ufw/applications.d directory.
-
-To add a profile create a app_name.INI file as the following:
-
-[Samba]
-title=File/printer server for Unix
-description=Samba is a collection of programs that implements the SMB/CIFS protocol for unix systems.
-ports=137,138/udp|139,445/tcp
-
-Then, for example you can run:
-ufw allow from xx.xx.xx.xx app samba
-
-
-
-
-