load merge terminal

mumuloxmumulox Member Posts: 31 ■■□□□□□□□□
Hello,

I'm trying to use load merge terminal to paste a simple ospf config :

Config to paste:

protocols {
ospf {
area 0.0.0.0 {
interface em0.0 {
hello-interval 10;
dead-interval 40;
}
}
}
}


root@juniper9.6# load merge terminal
[Type ^D at a new line to end input]
protocols {
ospf {
area 0.0.0.0 {
interface em0.0 {
hello-interval 10;


Any ideea why it stops after "hello-interval 10;" line?

Thanks

Comments

  • hoogen82hoogen82 Member Posts: 272
    That's kind of strange... Never seen it... Also.. just a general suggestion.. You could always use load merge terminal relative... Always helpful
    IS-IS Sleeps.
    BGP peers are quiet.
    Something must be wrong.
  • mumuloxmumulox Member Posts: 31 ■■□□□□□□□□
    I tried also with load merge terminal relative and I had the same result. Can someone try the same config ? (I used Junos 8.3 and 9.6)
  • hoogen82hoogen82 Member Posts: 272
    It has got nothing to do with how Junos works, the above config should work... Maybe its some terminal issue or paste issue

    Here you go..

    lab@r3# load merge terminal
    [Type ^D at a new line to end input]
    protocols {
    ospf {
    area 0.0.0.0 {
    interface em0.0 {
    hello-interval 10;
    dead-interval 40;
    }
    }
    }
    }
    load complete

    [edit]
    lab@r3# load merge terminal relative
    [Type ^D at a new line to end input]
    protocols {
    ospf {
    area 0.0.0.0 {
    interface em0.0 {
    hello-interval 10;
    dead-interval 40;
    }
    }
    }
    }
    load complete

    [edit]
    lab@r3#
    IS-IS Sleeps.
    BGP peers are quiet.
    Something must be wrong.
  • mumuloxmumulox Member Posts: 31 ■■□□□□□□□□
    The test was made in olive, connected to serial port. After I logged with ssh the problem is gone :) (when I think I beat my head an hour for that...doh!)
    Thank you!
Sign In or Register to comment.