Iptables for restricting access by time of day
Recently I was asked to control access to couple of services based upon day and time. For example ftp server should be only available from Monday to Friday between 9 AM to 6 PM only. It is true that many services and daemons have in built facility for day and time based access control. For example xinetd offers data and time based access control. Iptables also allows such control via time patch/module. It matches if the packet arrival time/date is within a given range. This is very handy when you want a service to be available only at certain times of day or even certain days.
General syntax:
iptables RULE -m time --timestart TIME --timestop TIME --days DAYS -j ACTION
Where,
- --timestart TIME : Time start value . Format is 00:00-23:59 (24 hours format)
- --timestop TIME : Time stop value.
- --days DAYS : Match only if today is one of the given days. (format: Mon,Tue,Wed,Thu,Fri,Sat,Sun ; default everyday)
An example
Suppose you would like to allow incoming ssh access only available from Monday to Friday between 9 AM to 6. Then you need to use iptables as follows:
Input rule:
iptables -A INPUT -p tcp -s 0/0 --sport 513:65535 -d 202.54.1.20 --dport 22 -m state --state NEW,ESTABLISHED -m time --timestart 09:00 --timestop 18:00 -days Mon,Tue,Wed,Thu,Fri -j ACCEPT
Output rule:
iptables -A OUTPUT -p tcp -s 202.54.1.20 --sport 22 -d 0/0 --dport 513:65535 -m state --state ESTABLISHED -m time --timestart 09:00 --timestop 18:00 -days Mon,Tue,Wed,Thu,Fri -j ACCEPT
References:
- Please note time module is not part of standard kernel, you need to download and apply patch from Patch-O-Matic
- Read iptables man page for more information.
Want to stay up to date with the latest Linux tips, news and announcements? Subscribe to our free e-mail newsletter or full RSS feed to get all updates.
You can Email this page to a friend.
You may also be interested in...
- Linux Iptables block outgoing access to selected or specific ip address
- Iptables mac address filtering
- Linux : Iptables # 4 Block all incoming traffic but allow ssh
- Linux Iptables allow LDAP server incoming client request
- Linux: Iptables Allow PostgreSQL server incoming request
Discussion on This Article:
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
~ Last updated on: November 9, 2006


Good tips, thanks I linked to it from one of my articles… if you dont mind…
//flosse
flosse,
Heh no problem.
Appreciate your post.
time option is not working with ubuntu 7.04. The time library is missing , may I have to recompile the whole Kernel ?
Ranto