Changes between Initial Version and Version 1 of Ticket #157
- Timestamp:
- 02/15/16 23:20:31 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #157
-
Property
Status
changed from
new
toassigned
-
Property
Status
changed from
-
Ticket #157 – Description
initial v1 1 1 AFAIU from looking at the source, when you run vuurmuur normally, it enables ip_forward when ipv4 forwarding rules are present, and ip6_forward when ipv6 rules are present. However, when running with --bash, this piece of code runs: 2 2 3 4 {{{ 3 5 /* post rules: enable logging */ 4 6 if(post_rules(debuglvl, &vctx->conf, NULL, &vctx->iptcaps, forward_rules, VRMR_IPV4) < 0) … … 8 10 return(-1); 9 11 #endif 12 }}} 13 10 14 11 15 Since this shares a single forward_rules flag for both ipv4 and ipv6, this causes different behaviour when running with --bash or without --bash.