Hmm, thats not possible, it will block all other ip traffic.
Do this
c2600-1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
c2600-1(config)#
c2600-1(config)#access-list 15 permit any
c2600-1(config)#int "put your int HERE"
c2600-1(config-if)#ip access-group 15 in
c2600-1(config-if)#ip access-group 15 out
c2600-1(config-if)#ex
c2600-1(config)#logging on
c2600-1(config)#logging host x.x.x.x
c2600-1(config)#logging trap informational
c2600-1(config)#logging buffered
c2600-1#debug ip packet 15
That should allow you to capture all ip traffic, thus not interrupting any type of traffic movement, then send all that information to a syslog server where you can sift through it till you find what you want. the logging buffered prevents the router from displaying the debug info on the screen, so your router doesn't explode.
-mike