I want to create rule for Local Traffic Outbound to internet based on time
in the Chain "Local_Outbound".
i.e. the user from IP 192.168.0.121 granted to access the internet from 9:00 to 17:00 every monday to friday(working full day),
and on saturday the user can access the internet from 9:00 to 12:00
(working half day)
/ ip firewall filter
add chain=Local_Outbound src-address=192.168.0.121 \
time=9h-17h,fri,thu,wed,tue,mon action=accept comment="" \
disabled=no
add chain=Local_Outbound src-address=192.168.0.121 \
time=9h-12h,sat action=accept comment="" \
disabled=no
I had tried to add the rule in "Local_Outbound" chain, but no traffic passing through the rule.
I want to create it with scheduler, but I confuse how to make the script work on specific day and time.
I also had posted in the forum, how i can manage to resolve specific hostname that had several ip address.
i.e.
http://www.google.com resolve to 66.249.89.104, 66.249.89.9
but when I use the :resolve
http://www.google.com
It only return one ip instead.
I want to make it available in Address List, so I can manage which site can be access by user.
Thanks