Routing

last person joined: 3 days ago 

Ask questions and share experiences about ACX Series, CTP Series, MX Series, PTX Series, SSR Series, JRR Series, and all things routing, including portfolios and protocols.
  • 1.  Regarding command "show configuration | save Post"

    Posted 12-16-2016 07:42

    Hi, Regarding command "show configuration | save Post", it is to save configutation for review or something else? Does it have any function else? Thank you



  • 2.  RE: Regarding command "show configuration | save Post"

     
    Posted 12-16-2016 07:46

    Yes, it is to review the configuration, and also for saving pieces of configuration that you can re-load later on using the command:  # load set $filename$



  • 3.  RE: Regarding command "show configuration | save Post"

    Posted 12-16-2016 07:55

    Thank you for your reply. What is difference between below two sets of commands for rollback?

     

    First is:

    show configuration | save Filename

    load set Filename

     

    Second is

    commit

    rollback 0



  • 4.  RE: Regarding command "show configuration | save Post"
    Best Answer

     
    Posted 12-16-2016 08:07

    'Load set' can be used not just for rollback but for other purposes as well . Most commonly if you need to deploy an high number of configuration lines.

    The rollback command on the other hand is only for rollback - 'rollback 0' will actually delete the candidate configuration, so you can start configuring from scratch.

    Hope this helps 🙂



  • 5.  RE: Regarding command "show configuration | save Post"

    Posted 12-16-2016 09:00

    Right, Thank you