Junos OS

last person joined: 2 days ago 

Ask questions and share experiences about Junos OS.
  • 1.  create myself own config on SRX

    Posted 05-29-2014 13:10

    Hello! how to create your own config on juniper srx without violating the  current config?



  • 2.  RE: create myself own config on SRX

    Posted 05-30-2014 04:20

    Hello there,

    Not sure if I follow...

    You can create as many separate configs as You want by using concurrent multiple logins and "edit private".

    Note that "edit private" fails if any 1 user uses global "edit" mode (without "private").

    But only a single config at a time can be actually applied with "commit". All Your other separate configs won't run unless committed one at a time.

    If You want to save them for future perusal, do "save <filename>" when at the top of config hierarchy.

    Is that what You were asking?

    HTH

    Thanks
    Alex

     

     



  • 3.  RE: create myself own config on SRX

    Posted 05-30-2014 06:21

    it seems,it is that i were asking! Thanks/

    at last. Tell me please, according which command can I load my config into CLI ? 



  • 4.  RE: create myself own config on SRX
    Best Answer

    Posted 05-30-2014 07:03

    Hello there,

     


    @vlazarev wrote:

     Tell me please, according which command can I load my config into CLI ? 


    If You want a complete replace of current config with Your own config in "bracketed" format stored in a text file on RE disk, then do:

    edit private
    load overrride <filename>
    commit

     

    If Your stored config is in "set" format, the usage is slightly different:

     

    edit private
    wildcard delete
    load set <filename>
    commit

     

    You can also load config by copy-pasting config in "bracketed" format into terminal window:

     

    edit private
    load override terminal
    commit

     

    More information on different "load" options at the links below

     

    http://www.juniper.net/techpubs/en_US/junos13.3/topics/reference/command-summary/load.html

    http://www.juniper.net/techpubs/en_US/junos13.3/topics/task/configuration/junos-software-configuration-file-loading.html

     

    HTH

    Thanks
    Alex

     



  • 5.  RE: create myself own config on SRX

    Posted 05-30-2014 08:02

    irrefragable answer!!!