-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from bit3725/patch-1
fullcone NAT patch
- Loading branch information
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
--- a/defaults.c | ||
+++ b/defaults.c | ||
@@ -49,6 +49,8 @@ const struct fw3_option fw3_flag_opts[] | ||
FW3_OPT("synflood_rate", limit, defaults, syn_flood_rate), | ||
FW3_OPT("synflood_burst", int, defaults, syn_flood_rate.burst), | ||
|
||
+ FW3_OPT("fullcone", bool, defaults, fullcone), | ||
+ | ||
FW3_OPT("tcp_syncookies", bool, defaults, tcp_syncookies), | ||
FW3_OPT("tcp_ecn", int, defaults, tcp_ecn), | ||
FW3_OPT("tcp_window_scaling", bool, defaults, tcp_window_scaling), | ||
--- a/options.h | ||
+++ b/options.h | ||
@@ -297,6 +297,7 @@ struct fw3_defaults | ||
enum fw3_reject_code any_reject_code; | ||
|
||
bool syn_flood; | ||
+ bool fullcone; | ||
struct fw3_limit syn_flood_rate; | ||
|
||
bool tcp_syncookies; | ||
--- a/zones.c | ||
+++ b/zones.c | ||
@@ -627,6 +627,7 @@ print_zone_rule(struct fw3_ipt_handle *h | ||
struct fw3_address *msrc; | ||
struct fw3_address *mdest; | ||
struct fw3_ipt_rule *r; | ||
+ struct fw3_defaults *defs = &state->defaults; | ||
|
||
if (!fw3_is_family(zone, handle->family)) | ||
return; | ||
@@ -712,8 +713,22 @@ print_zone_rule(struct fw3_ipt_handle *h | ||
{ | ||
r = fw3_ipt_rule_new(handle); | ||
fw3_ipt_rule_src_dest(r, msrc, mdest); | ||
- fw3_ipt_rule_target(r, "MASQUERADE"); | ||
- fw3_ipt_rule_append(r, "zone_%s_postrouting", zone->name); | ||
+ /*FIXME: Workaround for FULLCONE-NAT*/ | ||
+ if(defs->fullcone) | ||
+ { | ||
+ warn("%s will enable FULLCONE-NAT", zone->name); | ||
+ fw3_ipt_rule_target(r, "FULLCONENAT"); | ||
+ fw3_ipt_rule_append(r, "zone_%s_postrouting", zone->name); | ||
+ r = fw3_ipt_rule_new(handle); | ||
+ fw3_ipt_rule_src_dest(r, msrc, mdest); | ||
+ fw3_ipt_rule_target(r, "FULLCONENAT"); | ||
+ fw3_ipt_rule_append(r, "zone_%s_prerouting", zone->name); | ||
+ } | ||
+ else | ||
+ { | ||
+ fw3_ipt_rule_target(r, "MASQUERADE"); | ||
+ fw3_ipt_rule_append(r, "zone_%s_postrouting", zone->name); | ||
+ } | ||
} | ||
} | ||
} |