- 论坛徽章:
- 0
|
Recipe 1.6. 配置的语法核实
Problem
核实配置的语法确认没有错误或者丢失的语句。
Solution
核实配置的语法:
[edit]
aviva@router1# commit check
configuration check succeeds
[edit]
aviva@router1#
Discussion
配置路由器的时候,如果你输错了JUNOS配置语句或命令,CLI会立即反应并提醒你知道输入正确。然而,这并不能保证你变量名拼写的正确,或者你尚未省略的语句。有时使用commit check命令来检查配置的语法。这个命令只检查语法,不激活配置。
如果没有语法错误,你会看到配置检查成功的信息。
如果在配置中有任何错误,有会一个消息报告错误所在的层次结构和问题的描述。下面的例子说明了一个RIP邻居路由器在两个组里面的不正确配置。
[edit]
aviva@router1# commit check
[edit protocols rip group alpha-rip-group]
'neighbor fe-0/0/0.0'
Failed to configure neighbor fe-0/0/0.0: already in group alpha-rip-group
error: configuration check-out failed
这是个错误,因为一个RIP邻居只能在一个组中。从输出信息中可以看到,错误位于配置层次的[edit protocols rip group alpha-rip-grou]中。
即使配置的语法是正确的,也不能保证配置会向预期的那样工作。
Recipe 1.7. 激活路由器配置
Problem
使用CLI创建或者修改路由器的配置并且想让配置生效。
Solution
使用下面的命令激活路由器的配置:
[edit]
aviva@router1# commit
commit complete
[edit]
aviva@router1#
Discussion
当你在路由器上修改配置,你就是在编辑一份路由器配置的拷贝。这份拷贝称为候选配置。你对配置任何改动只是记录在配置的拷贝中,并不会对路由器的操作产生任何要想。当你想要配置生效时,你必须激活,或者提交配置。当你这样做的时候,你的配置文件被检查,以确认没有语法问题。然后才被激活,称为正在运行的配置。
Commit过程是一个批处理模式的操作。当你处于配置模式中,你可以做很多修改,但这些改动只出现在候选配置中而且不会生效。你甚至可以检查语法而不激活修改(使用commit check命令;见Recipe1.6).commit命令批处理所有的修改(和所有其他任何处于配置模式的人所做的修改)并且理解激活它们。这意味着相互依赖的配置片段在同一时间生效,因此你没有必要担心你添加到配置中的语句的顺序。
当你激活配置时,JUNOS软件在路由器上保存一份拷贝。这会在稍后的Recipe1.14中讨论。
路由器可以接受通过commit命令重复激活配置让它生效。一个常见的错误是忘记提交修改,因此在路由器上调试一个问题时,检查常常是首要的问题。去看这个是否出现其实很简单。你可能在配置中做了一个改动,并且立即使用run命令提交一个操作模式命令来验证与配置改动相匹配的路由器行为,或者当配置或执行一个命令由于打扰而没有提交时。
如果你还没有提交你的改动,当你退出配置模式并返回操作模式式,你会被警告:
aviva@router1# exit
The configuration has been changed but not committed
Exit with uncommitted changes? [yes,no] (yes)
如果你选择退出而没有提交改动或者输入回车或yes,改动会保留在候选配置中但不会被激活。当你再次进入配置模式,无提交配置会提醒你:
aviva@router1> configure
Entering configuration mode
The configuration has been changed but not committed
[edit]
aviva@router1#
如果你还没有决定退出配置模式,你通过比较候选配置和激活的正在运行的配置,查看你(和任何配置模式中的人)的改动。
[edit]
aviva@router1# exit
The configuration has been changed but not committed
Exit with uncommitted changes? [yes,no] (yes) no
Exit aborted
[edit]
aviva@router1# show | compare
[edit system services]
+ telnet;
如果你没有在配置的顶层,就使用下面命令:
[edit system services]
aviva@router1# top show | compare
[edit system services]
+ telnet;
对于有两个RE的路由器,使用comit synchronize命令同时在两个RE上提交配置。(见 Recipe 1.30).
See Also
Recipes 1.6, 1.11, 1.14, 1.15, 1.17, and 1.30
Recipe 1.8. 调试一个失败的提交
Problem
你试图激活一个配置,commit命令连续失败。
Solution
观察commit操作的每一步:
[edit]
aviva@router1# commit | display detail
2005-02-24 11:49:49 PST: exporting juniper.conf
2005-02-24 11:49:49 PST: expanding groups
2005-02-24 11:49:49 PST: finished expanding groups
2005-02-24 11:49:49 PST: setup foreign files
2005-02-24 11:49:49 PST: propagating foreign files
2005-02-24 11:49:49 PST: complete foreign files
2005-02-24 11:49:50 PST: dropping unchanged foreign files
2005-02-24 11:49:50 PST: daemons checking new configuration
2005-02-24 11:49:50 PST: commit wrapup…
2005-02-24 11:49:50 PST: updating '/var/etc/filters/filter-define.conf'
2005-02-24 11:49:50 PST: activating '/var/etc/keyadmin.conf'
2005-02-24 11:49:50 PST: activating '/var/etc/gtpcd.conf'
2005-02-24 11:49:50 PST: activating '/var/etc/certs'
2005-02-24 11:49:50 PST: executing foreign_commands
2005-02-24 11:49:50 PST: /bin/sh /etc/rc.ui ui_setup_users (sh)
2005-02-24 11:49:50 PST: executing ui_commit in rc.ui
2005-02-24 11:49:51 PST: copying configuration to juniper.save
2005-02-24 11:49:51 PST: activating '/var/run/db/juniper.data'
2005-02-24 11:49:51 PST: notifying daemons of new configuration
2005-02-24 11:49:51 PST: signaling 'Routing protocol daemon', pid 2884, signal1,
status 0 with notification errors enabled
commit complete
Discussion
aviva@router1# commit | display detail
2005-02-24 13:46:03 PST: exporting juniper.conf
2005-02-24 13:46:03 PST: expanding groups
2005-02-24 13:46:03 PST: finished expanding groups
2005-02-24 13:46:03 PST: setup foreign files
2005-02-24 13:46:03 PST: propagating foreign files
2005-02-24 13:46:03 PST: complete foreign files
2005-02-24 13:46:03 PST: dropping unchanged foreign files
2005-02-24 13:46:03 PST: daemons checking new configuration
[edit protocols rip group alpha-rip-group]
'neighbor fe-0/0/0.0'
Failed to configure neighbor fe-0/0/0.0: already in group alpha-rip-group
error: configuration check-out failed
在这个例子中,在RIP路由协议中有错误,而且这个错误被检查配置软件进程所标识(UNIX后台进程的JUNOS术语)
Recipe 1.9. 退出配置模式
Problem
当你修改完配置后,需要激活配置并贩货操作模式。
Solution
从顶层激活配置并退出配置模式:
[edit]
aviva@router1# commit
aviva@router1# quit
aviva@router1>
从较低层提交并退出配置模式:
[edit system]
aviva@router1# commit
aviva@router1# top
[edit]
aviva@router1# quit
aviva@router1>
下面的命令是一个快速变异:
[edit system]
aviva@router1# commit
aviva@router1# exit configuration-mode
aviva@router1>
从任何层次,通过一个单一命令激活配置并退出配置模式:
[edit system]
aviva@router1# commit and-quit
aviva@router1>
Discussion
这个recipe中的命令显示了几种提供配置后,退出配置模式的变化。如果你使用分离的commit和quit(或exit)命令,你必须在配置模式的顶层使用exit命令退出配置模式。从一个较低的层次,使用top命令迅速返回[edit]层。如果你在较低层次使用exit命令,会从你先前使用edit命令的层次退到最高层次。
这个例子显示了edit和exit命令的顺序:
[edit]
aviva@router1# edit protocols
[edit protocols]
aviva@router1# edit ospf
[edit protocols ospf]
aviva@router1# edit area 0.0.0.1
[edit protocols ospf area 0.0.0.1]
aviva@router1# exit
[edit protocols ospf]
aviva@router1# exit
[edit protocols]
aviva@router1# exit
[edit]
aviva@router1# exit
退出配置模式
aviva@router1>
从较低层次提交并退出配置模式的更迅速的方法就是使用commit命令并跟exit配置模式命令。
也许提交并返回配置模式的最快方式是使用commit and-quit命令。你可以在任何层次使用这个命令。值得注意的是,这个命令仅在没有错误或语法错误的配置中会成功。如果提供失败,CLI会显示一个错误信息,而且你然后会在配置模式中。
转自:杜松之家 |
|