I'm not getting any option for forwarding.
I just placed a # before "
depends on FREETZ_AVM_VERSION_06_0X_MIN && FREETZ_AVM_VERSION_06_5X_MAX" in
~/trunk/make/avm-forwarding/Config.in
It will then give me "AVM-forwarding 0.0.1b - EXPERIMENTAL"
Am I supposed to get a webinterface for firewall manipulation????
I want to make a 7490 firmware International 6.8x
It looks as if
FREETZ_AVM_VERSION_06_0X_MIN is actively preventing me from getting a WebIF.
There's FREETZ_AVM_VERSION_05_5X_MAX in
~/trunk/make/avm-firewall/Config.in
I've always been able to use FREETZ_PACKAGE_AVM_FIREWALL
If I can't make the forwardings I need, I have no advantages using Freetz as opposed to the standard firmware.
I know that firewall manipulation always has been a bit unstable, but I can't miss it.
I hell coming to the world if I place a # before that line or is there a better solution?
### Zusammenführung Doppelpost by stoney ###
The culprit was this code in ~/trunk/make/zabbix/Config.in
Code:
select FREETZ_PACKAGE_AVM_FIREWALL if !FREETZ_AVM_HAS_AR7CFG_V12_MIN
select FREETZ_PACKAGE_AVM_FORWARDING if FREETZ_AVM_HAS_AR7CFG_V12_MIN
which I changed into
Code:
select FREETZ_PACKAGE_AVM_FIREWALL if FREETZ_AVM_VERSION_05_5X_MAX
select FREETZ_PACKAGE_AVM_FORWARDING if !FREETZ_AVM_VERSION_05_5X_MAX
It somehow suddenly started to select
FREETZ_PACKAGE_AVM_FIREWALL where it before always selected
FREETZ_PACKAGE_AVM_FORWARDING
I wrote those lines in ~/trunk/make/zabbix/Config.in