博客统计信息

51cto专家博客 51cto博客之星
用户名:xuanbo
文章数:207
评论数:393
访问量:437111
无忧币:2339
博客积分:4476
博客等级:7
注册日期:2008-10-08

我最近发表的评论

可购买啦!《高性.. 回复
哥们看了你的目录,很具有实战性和..
BGP路由协议详解(.. 回复
重新上传了 附件
BGP路由协议详解(.. 回复
重新上传了 附件
BGP路由协议详解(.. 回复
重新上传了 附件
BGP路由协议详解(.. 回复
重新上传了 附件

背景音乐

我的音乐

00:00 | 00:00

由于各位工程师在下载以前的BGP路由协议详解(完整篇)时,不能下载附件,所以今天我将这个博再重新发一次。 上个月我写一篇关于BGP协议的博文,曾许诺过要完善这个文档,但因最近的工作和授课很忙,所以没有时间进行完善。为了实现这个承诺,我在去外地出差期间对BGP协议详解博文进行一些修改,其中内容包括了一些实验,以及一些内容的补充和深入阐述,更宜于网友们学习BGP路由协议。因为这个文档出来的很晚,也希望网友们见谅!      此BGP协议的内容也不算太难,一些关于BGP的高级应用,会在以后MPLS 协议和..
类别:未分类|阅读(6267)|回复(10)|(23)阅读全文>>
很多学习网络技术的工程师普遍认为QOS技术很难学习,这主要是来自于内心的学习压力,其实这种技术并不难。举个例子说明,如北京的交通,为了防止交通堵车,对车辆进行限号,这其实就是QOS中的对流量进行分类、标记和监管。比如专用公交车道,这就是使用优先队列的技术。各个路口使用红绿灯,这其实就是对流量进行整形;对交通进行限行,这就是对流量进行尾丢弃等。下面我们通过实验实例来讲解决QOS技术。
当然在进行实验前,还是对理论知识进行理解和消化。
QoS(Qualit of Service)又名服务质量,是保证业务数据在互联网中传输的质..
类别:Router|阅读(2499)|回复(12)|(24)阅读全文>>
随着社会经济的高速发展,现代企业发展规模正从独立企业走向集团化企业,企业管理也从独立化走向集中统一管理模式,在这种需求情况下,信息化建房也成为企业发展的重要环节,为了保障企业业务数据安全的在运营商或internet网络中传输,VPN技术也得到广泛的应用。为了保障网络的高可用性和高可靠性,在部署VPN网络的时候,备份链路是必须考虑到的关键因素。
在部署VPN备份链路时,可以通过两种方面来实现高可靠和高可用性:
? 一种方式是使用两条运营商链路,实现互为备份,并可以实现负载均衡。
? 一种方式就是使用一条运营商链路作..
类别:未分类|阅读(2607)|回复(10)|(12)阅读全文>>
在部署IPSec VPN时,经常会遇到内网地址重叠的现象,比如一家公司将另外一家收购之后,两家公司的内网地址都是同一网段,如果使用普通的方式实现IPSec VPN,那么工程师就需要将兼并公司的内网地址进行重新的规划,这样对于网络管理增加了难度,下面需要使用NAT技术与IPSec技术,在不改变内网地址结构的情况下,实现IPSec VPN。 本文档通过下面的实例来讲述其配置过程,具体网络结构如下拓扑图所示。 clip_image002 在这种网络环境下,需要互联相同地址段的内网,就需要在IPSec VPN隧道中采用NAT对地址做转换,对于总公司来说,需要将分公司的内网网段转换为10.1.1.0/24,对于分公司来说,需要将总公司的内网网段转换为10.2.2.0/24 通过在VPN隧道中启用NAT,当总公司访问分公司的内网资源时,目的IP网段为10.1.1.0/24;当分公司访问总公司的内网资源时,目的IP网段为10.2.2.0/24。 通过在隧道内进行NAT地址转换实现地址重叠环境下的IPSec VPN互联,NAT转换只用在一台路由器上做设置。 ip nat inside source static network 192.168.1.0 10.2.2.0 /24 ip nat outside source static network 192.168.1.0 10.1.1.0 /24 将总公司的内网换成10.2.2.0/24,分公司的内网换成10.1.1.0/24,当总公司访问分公司时,源地址为192.168.1.0/24,目的地址为10.1.1.0/24;当分公司访问分公司时,源地址为192.168.1.0/24,目的地址为10.2.2.0/24。 具体如下所示: RA#sh running-config Building configuration... Current configuration : 1365 bytes ! version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname RA ! boot-start-marker boot-end-marker ! ! no aaa new-model ! resource policy ! ip cef ! ! crypto isakmp policy 110 hash md5 authentication pre-share crypto isakmp key 123 address 99.9.9.10 ! ! crypto ipsec transform-set vpn esp-des esp-md5-hmac ! crypto map map1 10 ipsec-isakmp set peer 99.9.9.10 set transform-set vpn match address 110 ! ! interface FastEthernet0/0 ip address 172.16.1.1 255.255.255.0 ip nat inside ip virtual-reassembly duplex half ! interface Serial1/0 ip address 99.9.9.9 255.255.255.252 ip nat outside ip virtual-reassembly serial restart-delay 0 crypto map map1 ! interface Serial1/1 no ip address shutdown serial restart-delay 0 ! interface Serial1/2 no ip address shutdown serial restart-delay 0 ! interface Serial1/3 no ip address shutdown serial restart-delay 0 ! ip route 10.1.1.0 255.255.255.0 Serial1/0 no ip http server no ip http secure-server ! ! ip nat inside source static network 172.16.1.0 10.2.2.0 /24 ip nat outside source static network 172.16.1.0 10.1.1.0 /24 ! logging alarm informational access-list 110 permit ip 10.2.2.0 0.0.0.255 172.16.1.0 0.0.0.255 ! ! control-plane ! ! line con 0 stopbits 1 line aux 0 line vty 0 4 ! ! end RB#sh running-config Building configuration... Current configuration : 1166 bytes ! version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname RB ! boot-start-marker boot-end-marker ! ! no aaa new-model ! resource policy ! ip cef ! ! crypto isakmp policy 110 hash md5 authentication pre-share crypto isakmp key 123 address 99.9.9.9 ! ! crypto ipsec transform-set vpn esp-des esp-md5-hmac ! crypto map map1 10 ipsec-isakmp set peer 99.9.9.9 set transform-set vpn match address 110 ! ! interface FastEthernet0/0 ip address 172.16.1.1 255.255.255.0 duplex half ! interface Serial1/0 ip address 99.9.9.10 255.255.255.252 serial restart-delay 0 crypto map map1 ! interface Serial1/1 no ip address shutdown serial restart-delay 0 ! interface Serial1/2 no ip address shutdown serial restart-delay 0 ! interface Serial1/3 no ip address shutdown serial restart-delay 0 ! ip route 10.2.2.0 255.255.255.0 Serial1/0 no ip http server no ip http secure-server ! ! ! logging alarm informational access-list 110 permit ip 172.16.1.0 0.0.0.255 10.2.2.0 0.0.0.255 ! ! ! control-plane ! ! line con 0 stopbits 1 line aux 0 line vty 0 4 ! ! end RA#ping 10.1.1.1 source 172.16.1.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.1.1, timeout is 2 seconds: Packet sent with a source address of 172.16.1.1 .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 144/211/272 ms RA#ping 10.1.1.1 source 172.16.1.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.1.1, timeout is 2 seconds: Packet sent with a source address of 172.16.1.1 !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 112/181/308 ms RA#sh crypto isakmp sa IPv4 Crypto ISAKMP SA dst src state conn-id slot status 99.9.9.10 99.9.9.9 QM_IDLE 1001 0 ACTIVE IPv6 Crypto ISAKMP SA RA#sh crypto ipsec sa interface: Serial1/0 Crypto map tag: map1, local addr 99.9.9.9 protected vrf: (none) local ident (addr/mask/prot/port): (10.2.2.0/255.255.255.0/0/0) remote ident (addr/mask/prot/port): (172.16.1.0/255.255.255.0/0/0) current_peer 99.9.9.10 port 500 PERMIT, flags={origin_is_acl,ipsec_sa_request_sent} #pkts encaps: 9, #pkts encrypt: 9, #pkts digest: 9 #pkts decaps: 9, #pkts decrypt: 9, #pkts verify: 9 #pkts compressed: 0, #pkts decompressed: 0 #pkts not compressed: 0, #pkts compr. failed: 0 #pkts not decompressed: 0, #pkts decompress failed: 0 #send errors 1, #recv errors 0 local crypto endpt.: 99.9.9.9, remote crypto endpt.: 99.9.9.10 path mtu 1500, ip mtu 1500, ip mtu idb Serial1/0 current outbound spi: 0x4E5895BC(1314428348) inbound esp sas: spi: 0x7110C730(1896924976) transform: esp-des esp-md5-hmac , in use settings ={Tunnel, } conn id: 1, flow_id: 1, crypto map: map1 sa timing: remaining key lifetime (k/sec): (4424986/3587) IV size: 8 bytes replay detection support: Y Status: ACTIVE inbound ah sas: inbound pcp sas: outbound esp sas: spi: 0x4E5895BC(1314428348) transform: esp-des esp-md5-hmac , in use settings ={Tunnel, } conn id: 2, flow_id: 2, crypto map: map1 sa timing: remaining key lifetime (k/sec): (4424986/3586) IV size: 8 bytes replay detection support: Y Status: ACTIVE outbound ah sas: outbound pcp sas: RB#ping 10.2.2.1 source 172.16.1.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.2.2.1, timeout is 2 seconds: Packet sent with a source address of 172.16.1.1 !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 120/196/224 ms RA#sh ip nat translations Pro Inside global Inside local Outside local Outside global --- --- --- 10.1.1.1 172.16.1.1 --- --- --- 10.1.1.0 172.16.1.0 icmp 10.2.2.1:0 172.16.1.1:0 10.1.1.1:0 172.16.1.1:0 icmp 10.2.2.1:1 172.16.1.1:1 10.1.1.1:1 172.16.1.1:1 icmp 10.2.2.1:2 172.16.1.1:2 10.1.1.1:2 172.16.1.1:2 icmp 10.2.2.1:3 172.16.1.1:3 10.1.1.1:3 172.16.1.1:3 icmp 10.2.2.1:4 172.16.1.1:4 10.1.1.1:4 172.16.1.1:4 icmp 10.2.2.1:5 172.16.1.1:5 10.1.1.1:5 172.16.1.1:5 icmp 10.2.2.1:8 172.16.1.1:8 10.1.1.1:8 172.16.1.1:8 icmp 10.2.2.1:9 172.16.1.1:9 10.1.1.1:9 172.16.1.1:9 icmp10.2.2.1:10 172.16.1.1:10 10.1.1.1:10 172.16.1.1:10 --- 10.2.2.1 172.16.1.1 --- --- --- 10.2.2.0 172.16.1.0 --- -[/img]..
类别:未分类|阅读(1369)|回复(11)|(10)阅读全文>>
 <<   1   2   3   4   5   >>   页数 ( 1/52 )

公告

路由今日汗水,交换明朝辉煌!