Die heb ik gevonden maar als ik een bestaande forward regel verander in Fastrack gaat het mis.
Ik moet maar even grondig door m'n regels heen...
[code]
/ip firewall filter
add chain=input comment=\
"Allow access to the WAN from the LAN using an adresslist" \
src-address-list=LAN
add action=drop chain=forward comment="Drop invalid connections" \
connection-state=invalid
add chain=forward comment="Allow connections from the LAN" connection-state=new \
in-interface=bridge1
add chain=forward comment="Allow connections from the VPN to the LAN and WAN" \
connection-state=new in-interface=all-ppp
add chain=forward comment="Allow established connections" connection-state=\
established
add chain=forward comment="Allow related connections" connection-state=related
add chain=input comment="Allow established connection to the WAN" \
connection-state=established
add chain=input comment="Allow related connections to the WAN" \
connection-state=related
add chain=forward comment="Allow traffic from WAN to Internal IPs" dst-address=\
192.168.1.1 in-interface=ether1
add chain=forward dst-address=192.168.1.3 in-interface=ether1
add chain=forward dst-address=192.168.1.8 in-interface=ether1
add chain=forward dst-address=192.168.1.100 in-interface=ether1
add action=drop chain=input comment="Drop all other traffic to the WAN" \
in-interface=ether1
add action=drop chain=forward comment=\
"Drop all other conections trough the router"
add action=drop chain=input comment="Block DNS-requests incoming from WAN" \
dst-port=53 in-interface=ether1 protocol=tcp
add action=drop chain=input dst-port=53 in-interface=ether1 protocol=udp
[
Voor 38% gewijzigd door
allure op 15-09-2016 22:00
]