You have a problem with your access-lists that you are using to define traffic that is seen to be "interesting" and so will pick up the line!
On the working router (.9 subnet) you have the following access list ..
access-list 100 deny ip any host 255.255.255.255
access-list 100 deny udp any any eq rip
access-list 100 deny udp any any eq snmp
access-list 100 deny udp any any eq snmptrap
access-list 100 deny udp any any eq syslog
access-list 100 deny udp any any eq netbios-dgm
access-list 100 deny udp any any eq netbios-ns
access-list 100 deny eigrp any any
access-list 100 permit ip any any
This defines what isn't allowed to bring up the line and then allows anything else to bring up the line (ie. ip any any).
However, on your .200 router you have this rather bizzare access list:
access-list 100 deny ip any host 255.255.255.255
access-list 100 deny udp any any eq rip
access-list 100 deny udp any any eq snmp
access-list 100 deny udp any any eq snmptrap
access-list 100 deny udp any any eq syslog
access-list 100 deny udp any any eq netbios-dgm
access-list 100 deny udp any any eq netbios-ns
access-list 100 deny eigrp any any
Remember that at the end of any ACL there is a default deny any any statement. So, this ACL says deny traffic from host 255.255.255.255, rip, snmp smnptrap, syslog, netbios-dgm, netbios-nm, eigrp and then deny everything else!! In other words .. no traffic of any kind is allowed!! Therefore no traffic will be allowed to bring the line up. You need a permit ip any any command at the end to allow anything that isn't denied by the list.
To debug your access-lists just put "log" at the end of the statement that you want to monitor. Either log this to a syslog server or enter the command "logging buffered 5000". You can then use the command "sh logging" to look at logged messages from the console. If you are on the console you can see log messages as they are generated using the "logging console" command.
Good luck!
Chris.
************************
Chris Andrew, CCNA
chrisac@gmx.co.uk
************************