- 1、本文档共9页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
uniper_OS操作基础
模拟器
运行
组件
JUNOS8.5
VMwarews602中文绿色精简版
pipe proxy.exe
SecureCRT
运行
WM - pipe proxy.exe(需配置) –SecureCRT
虚拟机基本配置
创建虚拟路由器
gaozy# set logical-routers r1
gaozy# set logical-routers r2
创建接口
gaozy# set interfaces em1 vlan-tagging //使能接口的vlan tag封装
gaozy# set interfaces em2 vlan-tagging
为路由器分配接口
gaozy# set interfaces em1 unit 12 vlan-id 12 family inet address 9.9.12.1/24
这里unit类似子接口号;family是协议集
注意配置完成后要 commit 才能生效
Junos基础
RSR-E的表
RSR路由器包含5个路由表:
inet.0 单播路由表
inet.1 多播路由表
inet.2多协议BGP路由进行反向路径转发检测使用
inet.3 MPLS路径信息
inet6.0 IPV6路由
mpls.0 MPLS下一跳
路由优先级
Direct = 0
Local = 0
Static = 5
RSVP = 7
LDP = 9
OSPF = 10
OSPF External = 150
ISIS(L1) =15
ISIS(L2) = 18
RIP = 100
Aggregate = 130
BGP = 170
模式
监控模式
# 配置模式 (eidt/configure 从模式切换过来)
各子层之间移动
edit chassis alarm ethernet //edit有点类似cd
up 返回上一级
top 返回顶部
CONFIG
基本命令
全局命令
Show //后面可接层次名
Show log messages
Delete 删除命令
commit 提交配置,如果10分钟内没有输入commit命令,就会自动回退到之前的配置
save 保存当前层次下的命令
run request system halt 注意一定要先使用此条命令关机,然后方可关闭电源
run request system reboot 重启
run show interface terse 查看接口
rollback (或rollback 0)命令将准备提交的命令重置到当前正在生效的命令(最后一次commit生效的命令)
更改用户名、密码
hanfy# set system login user gaozy class super-user authentication plain-text-password [回车]
New password:gaozy123
Retype new password:gaozy123
[edit]
hanfy# commit
commit complete
[edit]
静态路由
set logical-routers r1 routing-options static route 1.1.1.0/24 next-hop xxx
浮动
routing-options {
static {
route 2.2.2.2/32 {
qualified-next-hop 12.1.1.2 {
preference 10;
}
qualified-next-hop 21.1.1.2 {
preference 20;
}
}
}
}
也就是 ……目的地址 qualified-next-hop 2.2.2.2 preference 110
Policy-options (有点类似route-map)
基本配置
policy-options {
policy-statement policy-name {
term term-name { //可以有多个term
from { //若from内多个条件,需同时匹配
match-conditions;
}
then {
action;
}
}
}
}
例子:
policy-options {
policy-statement advertise-ospf { 策略名
term pick-ospf { term名
from protocol ospf;
then accept;
}
}
}
文档评论(0)