updated man page

This commit is contained in:
Vadim Kurland
2008-07-03 22:59:19 +00:00
parent bd91f85ec0
commit 9ba4bbebb2
3 changed files with 41 additions and 10 deletions
+2
View File
@@ -1,5 +1,7 @@
2008-07-03 Vadim Kurland <vadim@vk.crocodile.org> 2008-07-03 Vadim Kurland <vadim@vk.crocodile.org>
* fwbuilder.1: updated man page for fwbuilder GUI.
* ipt.cpp (main): document iptables version settings from the * ipt.cpp (main): document iptables version settings from the
firewall object in generated script (for support and debugging). firewall object in generated script (for support and debugging).
+36 -9
View File
@@ -8,9 +8,13 @@ fwbuilder \- Multiplatform firewall configuration tool
.SH SYNOPSIS .SH SYNOPSIS
.B /usr/bin/fwbuilder .B /usr/bin/fwbuilder
[ .RB [-f file.fwb]
.B -f file.xml .RB [-d]
] .RB [-h]
.RB [-o file]
.RB [-p object_name]
.RB [-v]
.SH "DESCRIPTION" .SH "DESCRIPTION"
@@ -29,19 +33,42 @@ GUI and policy compilers are completely independent,
this provides for a consistent abstract model and the this provides for a consistent abstract model and the
same GUI for different firewall platforms. same GUI for different firewall platforms.
At the moment of this writing Firewall Builder supports firewalls Firewall Builder supports firewalls based on iptables (Linux kernel
based on iptables (available on Linux, kernel 2.4.x, see 2.4.x and 2.6.x, see fwb_ipt(1)), ipfilter (variety of platforms
fwb_ipt(1)), ipfilter (available on a variety of platforms including *BSD, Solaris and others, see fwb_ipf(1)), pf (OpenBSD and
including *BSD, Solaris and others, see fwb_ipf(1)) and pf (available FreeBSD, see fwb_pf(1)), ipfw (FreeBSD and others), Cisco PIX (v6.x
on OpenBSD 3.0, see fwb_pf(1)) and 7.x) and Cisco IOS extended access lists.
.SH OPTIONS .SH OPTIONS
.IP "-f FILE" .IP "-f FILE"
Specify the name of the file to be loaded when program starts. Specify the name of the file to be loaded when program starts.
.IP "-d"
Turns on debug mode. Note that in this mode the program generates
lots of output on standard error. This is used for debugging.
.IP "-h"
Prints brief help message
.IP "-o file"
Specify the name of the file for the print output, see option "-p".
.IP "-p object_name"
Print rules and objects for the firewall object "object_name" and
immediately exit. The program does not go into interactive mode and
does not need X11. Print output will be placed in the file specified
with "-o" option. If file name is not given with option "-o", print
output is stored in the file "print.pdf" in the current directory.
.SH FILES .SH FILES
.IP $HOME/.qt/firewallbuilder2rc .IP $HOME/.qt/firewallbuilder2rc
fwbuilder stores user preferences in this file Fwbuilder v2.1 stores user preferences in this file.
.IP $HOME/.config/netcitadel.com/Firewall\ Builder.conf
Fwbuilder v3.0 stores user preferences in this file.
.SH URL .SH URL
Firewall Builder home page is located at the following URL: Firewall Builder home page is located at the following URL:
+3 -1
View File
@@ -620,7 +620,9 @@ int main( int argc, char ** argv )
#endif #endif
if (pparam) if (pparam)
{ {
FWWindow::printFirewallFromFile(filename,pparamValue,print_output_file_name); FWWindow::printFirewallFromFile(filename,
pparamValue,
print_output_file_name);
return 0; return 0;
} }