Page 1 of 1

Firewall Config?

Posted: Sat Mar 03, 2018 2:13 pm
by jimm1432
anyone know the difference between remote_accept and just making a rule? Is there any functionality difference between these two rules?

config remote_accept 'Transmission_Peers'
option zone 'wan'
option local_port '51413'
option remote_port '51413'
option proto 'tcpudp'

And.....

config rule
option name 'Transmission_Peers'
option src 'wan'
option dest_port '51413'
option target 'ACCEPT'
option proto 'tcpudp'

Thanks for any Info.

Re: Firewall Config?

Posted: Fri Mar 09, 2018 3:04 pm
by ispyisail
probably a better question for openwrt?

Re: Firewall Config?

Posted: Sat Mar 24, 2018 1:34 pm
by jimm1432
After having a dig in the config file it seems that remote_accept is a gargoyle feature. The script /usr/lib/gargoyle_firewall_util/gargoyle_firewall_util. sh,
Turns remote_accept rules into iptable rules.
Just incase anyone else wonders about remote_accept rules.