This commit is contained in:
bbruns 2014-04-13 16:38:08 +00:00
父節點 13f378819c
當前提交 64198528a7
共有 2 個檔案被更改,包括 8 行新增2 行删除

查看文件

@ -7,7 +7,13 @@
IPv6 is particularly difficult regarding ICMPv6 - had to put in quite a few IPv6 is particularly difficult regarding ICMPv6 - had to put in quite a few
allows by default to make it happy. Going to have to go through the list allows by default to make it happy. Going to have to go through the list
and prune it once the code stabilizes. and prune it once the code stabilizes.
- rule-save/rule-save6 scripts as beginning of work to be able to cache scripts
may switch to normal iptables-save/iptables-restore if it works better
once I've had time to work on it.
- script finally has most features of firewall/sosdg v1.1, meaning it can
successfully replace firewall/sosdg in most setups, provided you are
willing to redo the config.
- Added config examples here: http://www.sosdg.org/software/srfirewall/examples
2.00 Alpha 2 - 04/12/2014 2.00 Alpha 2 - 04/12/2014
- Slightly better documentation - Slightly better documentation
- Kernel module loading - 4/11/2014 - Kernel module loading - 4/11/2014

查看文件

@ -5,7 +5,7 @@ all: # Nothing here
install: install:
mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/lib/srfirewall \ mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/lib/srfirewall \
$(DESTDIR)$(PREFIX)/etc/srfirewall $(DESTDIR)$(PREFIX)/etc/srfirewall
cp -r bin/* $(DESTDIR)$(PREFIX)/bin/ cp -r bin/srfirewall $(DESTDIR)$(PREFIX)/bin/
cp -r lib/* $(DESTDIR)$(PREFIX)/lib/srfirewall/ cp -r lib/* $(DESTDIR)$(PREFIX)/lib/srfirewall/
if [ ! -e $(DESTDIR)$(PREFIX)/etc/srfirewall/main.conf ]; then cp -r etc/* $(DESTDIR)$(PREFIX)/etc/srfirewall/; fi if [ ! -e $(DESTDIR)$(PREFIX)/etc/srfirewall/main.conf ]; then cp -r etc/* $(DESTDIR)$(PREFIX)/etc/srfirewall/; fi