Iptables for restricting access by time of day

by LinuxTitli [Last updated: November 9, 2006]

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 read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 3 comments… read them below or add one }

1 Flosse 11.23.06 at 2:09 pm

Good tips, thanks I linked to it from one of my articles… if you dont mind…

//flosse

2 nixcraft 11.23.06 at 2:48 pm

flosse,

Heh no problem.

Appreciate your post.

3 ranto 06.11.07 at 6:51 am

time option is not working with ubuntu 7.04. The time library is missing , may I have to recompile the whole Kernel ?

Ranto

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous post: Download Virtuozzo vps software

Next post: FreeBSD changing pkg_add package ftp site location