- 博客(17)
- 收藏
- 关注
转载 Prefix-list路由前缀列表
其实说白话讲,和ACL 的做用是一样的,就是能够更加精准的,更加方便的匹配路由条目它同样可以和distribute-list 以及route-map ,做路由重分发策略时使用,角色也是相同的,和distribute-list相结合使用时,prefix占有决定权而和route-map结合使用时,由route-map决定是生是死,再有就是prefix-list相对于acl而言,只有当出现很多很多条路由时,才会显得那么出众,如果一两条而言,完全没有必要的。从这一点看出来,route-m..
2022-04-10 01:31:50 2728
转载 BGP community 属性
BGP communities 属性BGP 的community 属性属于可选可传递属性,不支持该属性的路由器会原封不动的将community 值传递给下游BGP邻居(前提是配置了传递community 属性)。BGP 的community 属性可以简化网络中路由器对相同路由条目的匹配工作,如果在一个大型网络中所有路由器上都需要匹配相同的路由条目,如果用ACL或者前缀列表进行匹配,则工作量比较大,所以可以在一台路由器上为相应的路由条目打上community 属性值,在其他路由器上可以通过匹配com.
2022-04-10 01:29:52 2898
转载 ACL和RouteMap的permit和deny规则在路由重分配时的动作
A –--- B 两台路由器通过E1/1接口直联,运行OSPF。A路由器配置3条静态路由:ip route 7.0.0.0 255.0.0.0 Ethernet1/1ip route 8.0.0.0 255.0.0.0 Ethernet1/1ip route 9.0.0.0 255.0.0.0 Ethernet1/1A路由器ospf的配置如下:router ospf 1log-adjacency-changesredistribute static route-map testnetwor
2022-04-10 01:27:01 13860
转载 路由协议的重分布Redistribute
<路由协议的重分布>重分布是指连接到不同路由选择域的边界路由器在不同自主系统之间交换和通告路由选择信息的能力。重分布原则:路由必须位于路由选择表中才能被重分发在重分发时设定种子metric协议 Seed MetricRIP 16(无限大了) 必须手工指定 EIGRP 无限大 也必须手工指定OSPF 20 如果重分布进来的是BGP的话,Metri...
2022-04-08 22:38:05 2891
转载 Python3 序列解包
关于序列解包非常好的文章,通俗易懂,转载于此,一起学习。Python 中有很多很实用的语法糖,这些语法糖可以帮助我们简化代码、更易理解等优点,接下里再看一个 Python3 中特别实用的语法序列解包(序列解包是 Python 3.0 之后才有的语法)。那什么是序列解包呢?先看一个例子:>>> a, b, c = 1, 2, 3>>> a1>>> b2>>> c3>>> 这种方法并不限于列
2022-03-19 03:44:17 118
转载 Python装饰器的通俗理解
看了这篇文章终于搞懂了装饰器,原文有少许错误,但无伤大雅,改正后转载于此,一起学习。在学习Python的过程中,我相信有很多人和我一样,对Python的装饰器一直觉得很困惑,我也是困惑了好久,并通过思考和查阅才能略有领悟,我希望以下的内容会对你有帮助,我也努力通过通俗的方式使得对Python装饰器的理解更加的透彻。在文中如有遗漏和不足,欢迎交流和指点。允许转载并注明出处:http://blog.csdn.net/u013471155很多人对装饰器难以理解,原因是由于以下三点内容没有搞清楚:
2022-03-18 23:49:33 8075 4
原创 DDL, DML, DCL, DQL, DTL
Generally SQL is classified into three types: DDL, DML, DCL.Some times we can also hear DQL, DTL(TCL). Let's look at the differences.Data Definition Language (DDL)refers to the CREATE, ALTER and DROP statements.DDL or Data Definition Language actua.
2022-02-26 23:23:10 141
原创 DELETE vs TRUNCATE
DDL(Data Definition Language, like create, drop, alter, truncate, add, modify, change, rename...) is commited when executed anyway.DML(Data Manipulation Language, like insert, delete, add, update, select...) is commited when executed by default. If autoc
2022-02-26 23:13:50 234
原创 Juniper Netscreen Route-based S2S IPSec Setup
Route-based site-to-site IPSecto establish connection firstly between two sites. And the routing is also pre-defined between two sites. When there's a route available, the local private network can access remote private one.1.Create the virtual t..
2022-02-24 04:29:42 152
原创 Juniper Netscreen Policy-based S2S Virtual-Private-Network Setup
Step by step to show how to setup policy based s2s vpn for Juniper Netscreen SSG520
2022-02-24 02:26:15 439
原创 Virtual Private Network technologies - Types
Remote-Access VPN and Site-to-Site VPN
2022-02-21 01:31:41 100
原创 SQL查询基本原理(过程)
SQL查询是我们用得最多的语句,掌握其工作原理可以帮助我们理解SQL语法结构。基本上有6大步骤:1. 获取数据 - FROM, JOIN2. 行过滤 - WHERE3. 分组 -GROUP BY4. 分组过滤 - HA...
2022-02-19 08:46:35 823
原创 How a SQL SELECT statement works
In this topic, I'll talk about the procedure of execution for a SQL SELECT statement.Basically there're 6 steps for a query:1. GetData - FROM, JOIN2. Filter Row - WHERE3. Group ...
2022-02-19 02:38:33 356
原创 How Failover Works on the Cisco PIX Firewall
This topic shows how to configure failover on PIX.
2022-02-18 23:51:35 201
原创 How to configure Cisco firewall PIX 525 (2)
IIn this session we'll will add an internal OSPF network and configure on PIX to let OSPF network to access external and dmz, based on the work of How to configure Cisco firewall PIX 525 (1)
2022-02-17 23:10:50 2942
原创 How to configure Cisco firewall PIX 525 (1)
Step by step to configure PIX 525 firewall to demonstrate NAT, Static mapping, routing, access control
2022-02-17 10:12:13 515
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人