Juniper路由器
Juniper路由器入门之一:需要子接口的端口配置
set interfaces fe-2/0/1
vlan-tagging
――――在配置接口启用封装VLAN
set interfaces fe-2/0/1 unit 424 vlan-id
424
―――――配置子接口,VLAN 424
set interfaces fe-2/0/1 unit 424 family inet address
192.168.254.146/30 ――配置子接口地址
Juniper路由器入门之二:无需子接口配置
set interfaces fe-2/0/23 unit 0 family inet address
222.60.11.154/29 ――直接配置地址
Juniper路由器入门之三:E1口配置
set interfaces e1-3/0/0 encapsulation ppp
封装链路类型,包含PPP,HDLC,根据实际情况配置
set interfaces e1-3/0/0 e1-options framing unframed
封装帧格式,参数包含unframed,g704, g704-no-crc4
set interfaces e1-3/0/0 unit 0 family inet address 192.168.1.126/30
配置地址
Juniper路由器入门之四:CE1配置
set interfaces ce1-4/0/0 clocking external
set interfaces ce1-4/0/0 e1-options framing g704-no-crc4
set interfaces ce1-4/0/0 partition 1 timeslots
1-31
――――设置信道1及时隙1-31
set interfaces ce1-4/0/0 partition 1 interface-type
ds ――――子接口类型DS
set interfaces ds-4/0/0:1 encapsulation
ppp
―――――配置子接口封装ppp
set interfaces ds-4/0/0:1 unit 0 family inet filter input NYYH
set interfaces ds-4/0/0:1 unit 0 family inet address
10.238.173.197/30 ――――配置地址
Juniper路由器入门之五:策略配置
set firewall filter shigonganjuMAS term 1 from source-address
10.238.173.180/30
set firewall filter shigonganjuMAS term 1 then accept
set firewall filter shigonganjuMAS term 2 from source-address
10.238.173.0/24
set firewall filter shigonganjuMAS term 2 from source-address
10.238.179.0/24
set firewall filter shigonganjuMAS term 2 then discard
set firewall filter shigonganjuMAS term 3 then accept
set interfaces fe-2/0/0 unit 44 family inet filter input
jiaotongyinhangduanxin―――将策略应用至子接口。
本文使用Blog_Backup未注册版本导出,请到soft.pt42.com注册。
Juniper路由器的更多相关文章
- cacti监控juniper路由器
之前也没有写过博客,但是最近一直在做监控.从网上查找很多资料都还是感觉差一点.所以自己添加一份我在cacti监控路由器的步骤. 环境,ubuntu14.04,apt-get install cacti ...
- VRRP协议具体解释
转帖:http://blog.chinaunix.net/space.php?uid=11654074&do=blog&id=2857384 Contents ...
- 【流量】netflow 基础知识
摘要 记录下关于netflow的基础知识以及应用,现状 是什么 一种数据交换方式,NetFlow流量统计数据包括数据流时戳 源IP地址和目的IP地址 源端口号和目的端口号 输入接口号和输出接口号 下一 ...
- 从香港机房引入google/bitbucket路由
首先说这种方法有一个局限性:只适用于非CDN网段的引入,比如Google自己足够大,所以用不到CDN,那在香港解析出来的就是Google在香港自己的AS number,因此不存在CDN干扰的问题.如果 ...
- Central Control Over Distributed Routing阅读笔记
Central Control Over Distributed Routing 0.ABSTRACT1.Introduction2.Flexible Fibbing3.Augmenting Topo ...
- GNS3的使用2
IDE值没算好,巨卡.重新安装,重新算值.速度快了不少 IDE值:选出现次数多,并且数字大的 2960的选256M 另外加了2个模拟器:ASA防火墙.juniper路由器
- 入木三分学网络第一篇--VRRP协议详解第一篇(转)
因为keepalived使用了VRRP协议,所有有必要熟悉一下. 虚拟路由冗余协议(Virtual Router Redundancy Protocol,简称VRRP)是解决局域网中配置静态网关时,静 ...
- Ethernet、VLAN、QinQ
以太网帧格式: 各字段解释: DMAC:目的MAC地址,该字段确定帧的接收者. SMAC:源MAC地址,该字段标识发送帧的工作站. Type:上层协议类型(0x0800:IP;0x0808:ARP;0 ...
- QinQ 技术解析
目录 1. 概述 2. QinQ 的产生背景 3. QinQ的作用及原理 4. QinQ 技术的优点 5. QinQ 的报文结构 6. QinQ的实现方式 (1) 基本QinQ (2) 灵活QinQ ...
随机推荐
- 复习java基础第七天(反射)
一:目标 Ø理解 Class 类 Ø理解 Java 的类加载机制 Ø学会使用 ClassLoader 进行类加载 Ø理解反射的机制 Ø掌握 Constructor.Method.Field 类的用法 ...
- 复习java第五天(枚举、Annotation(注释) 概述)
一.枚举 传统的方式: •在某些情况下,一个类的对象是有限而且固定的.例如季节类,只能有 4 个对象 •手动实现枚举类: —private 修饰构造器. —属性使用 private final 修饰. ...
- 【sqli-labs】 less17 POST - Update Query- Error Based - String (基于错误的更新查询POST注入)
这是一个重置密码界面,查看源码可以看到username作了防注入处理 逻辑是先通过用户名查出数据,在进行密码的update操作 所以要先知道用户名,实际情况中可以注册用户然后实行攻击,这里先用admi ...
- python tips:迭代器与可迭代对象
for循环 for i in s: print(i) 在上述for循环中,不断地将s中的值赋值给i,然后打印出来.这种只针对s中元素的循环称为对s的迭代,能够迭代的s称为可迭代的. python为了实 ...
- Spark中Task,Partition,RDD、节点数、Executor数、core数目的关系和Application,Driver,Job,Task,Stage理解
梳理一下Spark中关于并发度涉及的几个概念File,Block,Split,Task,Partition,RDD以及节点数.Executor数.core数目的关系. 输入可能以多个文件的形式存储在H ...
- 记录:Ubuntu下安装SQL Developer
安装JDK. 用的Ubuntu18.04,已经自带JDK了. 下载SQL Developer. 官网链接:http://www.oracle.com/technetwork/developer-too ...
- ptyhon获取app设备号、包名、activity
直接上代码: import time import os import re import sys #------------------------------------------------- ...
- vue: This relative module was not found
这是今天运行vue项目报的一个错误,特地在此记录一下. 错误信息如下: ERROR Failed to compile with 1 errors This relative module was n ...
- 如何在 vuex action 中获取到 vue 实例
问题:在做运营开发工具的时候 我想要请求后台服务器保存成功后 弹出一个弹框(饿了吗 的 message 弹框), 由于$message 是挂在 Vue原型链上的方法 (Vue.prototype.$m ...
- C++判断质数
using namespace std; bool isPrimeNum(int n) { if(n<2) return true; for(int i=2;i*i<=n;i++) { i ...