Greetings,
'ip tcp intercept-list ACL' is a global command. The ACL is a standard ACL, so traffic flowing through the router that matches you ACL will be "intercepted".
To watch your server 1.1.1.1, use
access-list extended ACL
permit tcp any host 1.1.1.1
Watch mode will keep an eye on sessions and send a reset if the three-way handshake doesn't complete within the specified period.
Intercept mode is far more intensive on the router and actually handles the full TCP setup, then "knits" the TCP sessions together once the 3way shake has completed.
->If you're router isn't very grunt, don't use intercept.
Regards,
Dave Seddon