I have the following message in my log:
"user example@example authentication failed - radius timeout"
Only if client router disconnects and tries to reconnect and below is enabled:
Code: Select all
add action=drop chain=input comment="Drop anything else! # DO NOT ENABLE THIS \
RULE BEFORE YOU MAKE SURE ABOUT ALL ACCEPT RULES YOU NEED" disabled=yes
Code: Select all
/radius
add address=192.168.88.2 service=ppp,login
/radius incoming
set accept=yes port=1700
Code: Select all
add action=accept chain=input comment="Accept DNS - UDP" port=53 protocol=udp
add action=accept chain=input comment="Accept DNS - TCP" port=53 protocol=tcp
add action=accept chain=input comment="Accept to established connections" \
connection-state=established
add action=accept chain=input comment="Accept to related connections" \
connection-state=related
add action=accept chain=input comment="Full access to SUPPORT address list" \
src-address-list=support
add action=accept chain=input comment=\
"Accept all connections from local network" in-interface=bridge
add action=accept chain=input comment="Accept WinBox Access from Local" \
dst-port=81 protocol=tcp src-address=192.168.88.0/24
add action=accept chain=input comment="Accept WebFig Access from Local" \
dst-port=80 in-interface=bridge protocol=tcp src-address=192.168.88.0/24
add action=accept chain=forward comment="Accept Radius" connection-nat-state=\
srcnat,dstnat connection-state=related,new dst-address=192.168.88.2 \
dst-port=1812,1813 log=yes protocol=udp src-address=192.168.88.0/24 \
src-address-list=internal_nets
add chain=forward comment="Allow Radius Traffic" dst-address=192.168.88.2 \
dst-port=1812,1813 in-interface=bridge protocol=udp
Your help would be appreciated.
Thanks!