toufiq wrote: » Dear all, I have configured ISIS protocol on my seven routers according to JNCIP Book Lab(page#287).I have configured every thing related to ISIS protocol but during adjacency verification, some links were fluctuating (some time up, some time goes into initialization and some time goes down). Then I confirmed from JNCIE experts and they have asked me that point-to-point configuration is missing in your configuration. when i configured point-to-point configuration then found No Adjacency even a single on any router out of seven routers. one of my friend told me that I need to perform some configurations on my olive on which network adopter bridging need to changed into custom configurations.after applying this configuration then the adjacency made successful. Is this fine to configure olive like this for ISIS proper communication. and why we need to configure point-to-point interfaces as adjacency goes down after this configuration and when we remove it then adjacency again made successful. please guide, why this is happening!
kronicklez wrote: » Hi Salman Aziz, I try play with isis in olive but not face problem as you mention. Are you use a logical router in olive?
Salman Aziz wrote: » Dear kronicklez The problem is resolved now as i added the interfaces under different vmnets rather then under custom specific option. Now neighborships are stable. Can you please tell me how to use serial connection with vmware to connect olives. Or can we make one olive a terminal server and access all routers by acccessing the terminal server through secure crt. Thanks & Regards
powercharme wrote: » WITH VMware ,you can work it out with the mini software Named Pipe TCP Proxy. check it on VMware Communities: Access VM Serial Console - Named Pipe ... and you can dl it onNamed Pipe TCP Proxy Utility or search it on Google
Salman Aziz wrote: » Thanks alot man Between what do you think abt the policy below. Given the following policy, what happens when the 1.1/17 route is evaluated? [edit policy-options] policy-statement test { from { route-filter 0/0 orlonger accept; route-filter 1.1/17 upto /24 reject; route-filter 1.1/18 exact; } then { metric 6; accept; } } A. The route does not match the policy. B. The route is accepted. C. The route is rejected. D. The route is accepted with a metric of 6. please answer and explain as well, why? awaiting ur answer. Thanks & Regards Salman
juniper> test policy test 1.1/17 Policy test: 0 prefix accepted, 1 prefix rejected juniper> test policy test 5.5/16 inet.0: 4 destinations, 4 routes (2 active, 0 holddown, 2 hidden) + = Active Route, - = Last Active, * = Both 5.5.0.0/16 *[Static/5] 00:05:36 Discard Policy test: 1 prefix accepted, 0 prefix rejected juniper> test policy test 1.1/18 inet.0: 4 destinations, 4 routes (2 active, 0 holddown, 2 hidden) + = Active Route, - = Last Active, * = Both 1.1.0.0/18 *[Static/5] 00:00:11 Discard Policy test: 1 prefix accepted, 0 prefix rejected juniper>
zoidberg wrote: » Welcome to the forum darry9502. I am going to need to disagree with you on this answer though and go with C. The route-filters are not necessarily evaluated in a sequential order, but by the most specific match. In this case, 1.1/17 will hit the route-filter 1.1/17 upto /24 reject and be rejected. If the prefix was 5.5/16, then yes, 0/0 would catch it and the route would be immediately accepted without the prefix adjustment in the then clause.