update brief notes of design
[ikiwiki.git] / docs / ipfw2 / index.mdwn
1 [[!meta title="IPFW2 Documentation"]]
2 [[!meta robots="index, follow"]]
3
4 updated 4-Nov-2014 
5
6 bycn82
7
8 v0.1
9
10 ---
11
12 [[!toc  levels=3]]
13
14 # Introduction
15 IPFW is a controlling utility for ipfw/ipacct facilities for FreeBSD 2.0 which released in November, 1994. After 20 years of evolution. it becomes a stateful firewall which supports Layer2 to Layer4. It is comprised of several components: the kernel firewall filter rule processor and its integrated packet accounting facility, the logging facility, NAT, the dummynet(4) traffic shaper, a forward facility, a bridge facility, and an ipstealth facility. It is one of the most advanced opensource firewall.
16
17 I am rewriting IPFW2 from scratch for DragonflyBSD, and IPFW2 will be in modular design. all the functionality are originally from loadable modules and should be not that difficult for normal users/developer to create a module in order to their own requirement.
18 ## Brief notes on design
19 Before user start to use the ipfw utility to add rules, the ipfw kernel should be enable/loaded into the kernel. by running below command
20
21         kldload ipfw
22
23 the basic ipfw module will be loaded into kernel, also the basic functionalities. in order to user more function which is implemented in other modules, users can run below command
24
25         kldload ipfw_layer2
26
27 so the 'layer2' module will be loaded, for example in this scenario, user can start to fire below command 
28
29         ipfw add allow all from any to any layer2
30
31 it means user want to add add rule which allow all the layer2 traffic. when user fire the command in the console, actually in the back-end, it will do below things.
32
33 1. ipfw retrieve the module name list from the kernel
34 2. ipfw load the module accordingly
35 3. ipfw start to parse the parameters 
36 4. inject into the kernel
37
38 In the kernel space, when the traffic comes, it will filter again the rule, in each ipfw_insn has unique module + opcode. it will automatically link to the filter function which will be registered during the module was loaded.
39
40 ## Processing Flow
41 # Configuration
42 # Modules
43 ## Generic Module
44 ## Layer2 Module
45 ## Layer4 Module
46 ## Connection Module
47 # Development
48 ## How to create a module
49 # Roadmap