#
# predefined rules for EasyFirewall version 2
#

#
# put here explanations for the operator 
# the first word is the language to show (according to the easyfw setup)
# or the keyword 'ANY' which is shown if no corresponding language was found .
#
Section comment

GB No exchange between inside and outside networks
GB outside access is limited to httpd

FR Pas d'change entre rseau interne et externe
FR l'accs externe est limit  httpd 

ANY No exchange between inside and outside networks
ANY outside access is limited to httpd

#
# predefined rules syntax :
#
# Section (input|output|forward)
#     show the chain
#
# Default (accept|deny|reject|masquerade)
#     show the default policy
#
# (Accept|Deny|Reject|Masq) [-src ip_source] [-dest ip_destination] [-prot (tcp|udp)]
#     show an ipfwadm/ipchain rule
#     -src, -dest, -prot will be replaced vy the corresponding ipfwadm/ipchains flag 
#     'IPINSIDE' and 'IPOUTSIDE' will be replaced with the addresses specified 
#                                in EasyFirewall
#

#
# default rules for input frames
#
Section input 
Default deny
Accept -src IPINSIDE 
Accept -prot tcp -src IPOUTSIDE -dest 0.0.0.0/0 80

#
# default rules for output frames
#
Section output
Default deny
Accept -dest IPINSIDE 
Accept -prot tcp -src 0.0.0.0/0 80 -dest IPOUTSIDE

#
# default rules for forwarding frames
#
Section forward
Default deny

