博客统计信息

用户名:epkings
文章数:32
评论数:29
访问量:18388
无忧币:113
博客积分:188
博客等级:2
注册日期:2008-08-05

我最近发表的评论

租用电信光纤用E1.. 回复
这个博客不错,很真实的东西,写得..
VMware Server 2... 回复
http://bbs.dospy.com/viewthread.p..
郁闷!再次遭遇航.. 回复
是很郁闷呀。。。。7小时的等待。。..
你可怜猪吗? 回复
这个很有趣。。。。 狼=政府,王..
微软的虚拟化仍然.. 回复
张老师说得很好,让我们明白这两个..
 华为S3352三层交换机super密码和新加用户的设置



设备:华为S3352  
软件版本:VRP (R) Software, Version 5.30 (S3352V100R003C00SPC301)
本实验非常简单,只是对华为设备不熟所以写出来。
欢迎微博交流:http://t.sina.com.cn/epkings
1、super密码:



其实就是相当于cisco中的enable密码。



命令格式:[S3352]super password level 3 ciper huawei



其中的3是3级权限,ciper表示密码是密文表示(不建议使用simple明文显示),huawei就



是密码啦。






2、新加用户:



[S3352]aa..
类别:未分类|阅读(456)|回复(0)|(0)阅读全文>>
多VLAN的DHCP配置
IOS:unzip-c3640-js-mz.124-10.bin
模拟器:GUI-2.8.3
需求:1、如拓扑所示,R3和R4模拟PC3和PC4,RT2当SW,RT1当路由器;

      2、R3和R4分别属于VLAN 30,VLAN 40,RT1做为DHCP服务器。

      3、R3和R4成功获取地址,并PING通1.1.1.1
欢迎微博交流:http://t.sina.com.cn/epkings
 
========================================================================================
 
 
Router>en

Router#conf t

Enter configuration commands, one per line.  End with CNTL/Z.

Router(config)#hos PC3       //不同RT改名的不一样

PC3(config)#no ip do lo

PC3(config)#line c 0

PC3(config-line)#exec-t 0 0

PC3(config-line)#logg sy

PC3(config-line)#end

PC3#

以上这段命令为公共命令,所以RT都要输入。
PC3#conf t

PC3(config)#no ip rouing

PC3(config)#int f0/0

PC3(config-if)#no sw

PC3(config-if)#sw

PC3(config-if)#no sw   //第一次no sw后是没有ip address dhcp这个命令的,我也搞不明白。

PC3(config-if)#ip address dhcp

以上为RT3的配置。


PC4#conf t

PC4(config)#no ip routing

PC4(config)#int f0/5

PC4(config-if)#no sw

PC4(config-if)#sw

PC4(config-if)#no sw

PC4(config-if)#ip address dhcp

PC4(config)#end

以上为RT4的配置。


SW#vlan database

SW(vlan)#vlan 30 name VLAN-30

VLAN 30 added:

    Name: VLAN-30

SW(vlan)#vlan 40 name VLAN-40

VLAN 40 added:

    Name: VLAN-40

SW(vlan)#exit

APPLY completed.

Exiting....

SW(config)#int f0/0

SW(config-if)#switchport mode access

SW(config-if)#switchport access vlan 30

SW(config-if)#int f0/5

SW(config-if)#switchport mode access

SW(config-if)#switchport access vlan 40

SW(config-if)#int f0/2

SW(config-if)#switchport trunk encapsulation dot1q

SW(config-if)#switchport mode trunk

SW(config-if)#switchport trunk allowed vlan add 30

SW(config-if)#switchport trunk allowed vlan add 40

以上为RT2的配置。


RT#conf t

RT(config)#ip dhcp pool vlan30                     //新建一个名为vlan30的DHCP

RT(dhcp-config)#network 192.168.30.0 255.255.255.0 //DHCP分配的网段

RT(dhcp-config)#default-router 192.168.30.1        //DHCP的网关

RT(dhcp-config)#dns-server 192.168.30.2            //DHCP的DNS

RT(dhcp-config)#lease 1                            //地址的租赁时间为1天

RT(dhcp-config)#exit

RT(config)#ip dhcp excluded-address 192.168.30.1 192.168.30.10 //要求DHCP不能放出的IP地址
RT(config)#ip dhcp pool vlan40                     //新建一个名为vlan30的DHCP

RT(dhcp-config)#network 192.168.40.0 255.255.255.0 //DHCP分配的网段

RT(dhcp-config)#default-router 192.168.40.1        //DHCP的网关

RT(dhcp-config)#dns-server 192.168.40.2            //DHCP的DNS

RT(dhcp-config)#lease 1                            //地址的租赁时间为1天

RT(dhcp-config)#exit

RT(config)#ip dhcp excluded-address 192.168.40.1 192.168.40.10 //要求DHCP不能放出的IP地址

//到此DHCP配置完毕
RT(config)#int e1/2

RT(config-if)#no ip address

RT(config-if)#no shut

RT(config-if)#int e1/2.3                      //开启子接口

RT(config-subif)#encapsulation dot1Q 30        //子接口封装VLAN 30

RT(config-subif)#ip add 192.168.30.1 255.255.255.0

RT(config-if)#int e1/2.4                      //开启子接口

RT(config-subif)#encapsulation dot1Q 40        //子接口封装VLAN 40

RT(config-subif)#ip add 192.168.40.1 255.255.255.0

RT(config)#int lo0

RT(config-if)#ip add 1.1.1.1 255.255.255.0

以上为RT1的配置。


======================================================================================

RT#show run (节选DHCP部分)

ip dhcp excluded-address 192.168.30.1 192.168.30.10

ip dhcp excluded-address 192.168.40.1 192.168.40.10

!        

ip dhcp pool vlan30

   network 192.168.30.0 255.255.255.0

   default-router 192.168.30.1

   dns-server 192.168.30.2

!        

ip dhcp pool vlan40

   network 192.168.40.0 255.255.255.0

   default-router 192.168.40.1

   dns-server 192.168.40.2


PC4#ping 1.1.1.1

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 16/244/1024 ms
PC4#ping 192.168.30.11

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 192.168.30.11, timeout is 2 seconds:

.!!!!

Success rate is 80 percent (4/5), round-trip min/avg/max = 44/80/108 ms

PC4#
以上为实验效果
The End
 
 
 [/img]..
类别:未分类|阅读(56)|回复(0)|(1)阅读全文>>
单VLAN的DHCP配置(明天会做多VLAN的DHCP)
欢迎微博交流:http://t.sina.com.cn/epkings
IOS:unzip-c3640-js-mz.124-10.bin
模拟器:GUI-2.8.3
需求:1、如拓扑所示,R3和R4模拟PC3和PC4,RT2当SW,RT1当路由器;

      2、R3和R4属于同一个VLAN,RT1做为DHCP服务器。

      3、R3和R4成功获取地址,并PING通2.2.2.2

 
 
 


Router>en

Router#conf t

Enter configuration commands, one per line.  End with CNTL/Z.

Router(config)#hos PC3       //不同RT改名的不一样

PC3(config)#no ip do lo

PC3(config)#line c 0

PC3(config-line)#exec-t 0 0

PC3(config-line)#logg sy

PC3(config-line)#end

PC3#

以上这段命令为公共命令,所以RT都要输入。
PC3#conf t

PC3(config)#no ip rouing

PC3(config)#int f0/0

PC3(config-if)#no sw

PC3(config-if)#sw

PC3(config-if)#no sw   //第一次no sw后是没有ip address dhcp这个命令的,我也搞不明白。

PC3(config-if)#ip address dhcp

以上为RT3的配置。


PC4#conf t

PC4(config)#no ip routing

PC4(config)#int f0/5

PC4(config-if)#no sw

PC4(config-if)#sw

PC4(config-if)#no sw

PC4(config-if)#ip address dhcp

PC4(config)#end

以上为RT4的配置。


SW#vlan database

SW(vlan)#vlan 10 name DHCP

VLAN 10 added:

    Name: DHCP

SW(vlan)#exit

APPLY completed.

Exiting....

SW(config)#int f0/0

SW(config-if)#switchport mode access

SW(config-if)#switchport access vlan 10

SW(config-if)#int f0/5

SW(config-if)#switchport mode access

SW(config-if)#switchport access vlan 10

SW(config-if)#int f0/2

SW(config-if)#switchport trunk encapsulation dot1q

SW(config-if)#switchport mode trunk

SW(config-if)#switchport trunk allowed vlan add 10

以上为RT2的配置。


RT#conf t

RT(config)#ip dhcp pool CCIE                    //新建一个名为CCIE的DHCP

RT(dhcp-config)#network 10.1.1.0 255.255.255.0  //DHCP分配的网段

RT(dhcp-config)#default-router 10.1.1.1         //DHCP的网关

RT(dhcp-config)#dns-server 10.1.1.2             //DHCP的DNS

RT(config)#ip dhcp excluded-address 10.1.1.1 10.1.1.10  //要求DHCP不能放出的IP地址

//到此DHCP配置完毕
RT(config)#int e1/2

RT(config-if)#no ip address

RT(config-if)#no shut

RT(config-if)#int e1/2.1                       //开启子接口

RT(config-subif)#encapsulation dot1Q 10        //子接口封装VLAN 10

RT(config-subif)#ip address 10.1.1.1 255.255.255.0

RT(config)#int lo0

RT(config-if)#ip add 2.2.2.2 255.255.255.0

以上为RT1的配置。
 
PC3#show ip int b

Interface                  IP-Address      OK? Method Status                Protocol

FastEthernet0/0            10.1.1.11       YES DHCP   up                    up


PC3#show ip route

Default gateway is 10.1.1.1

Host               Gateway           Last Use    Total Uses  Interface

ICMP redirect cache is empty


PC3#ping 2.2.2.2

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 16/260/1156 ms

PC3#


以上为实验效果
The End


 
 
 [/img]..
类别:未分类|阅读(48)|回复(1)|(2)阅读全文>>

详细介绍CISCO IOS命名规则
首先说说IOS的运行平台,c2500、c2600、c4500、c2950代表运行此IOS的硬件平台,例如:C2500指2500系列路由器。
其次,看看IOS的版本,IOS有主版本号:11.0、11.1、11.2、11.3、12.0、12.1、12.2、12.3、12.4等,这些主版本号相当于windows的版本有win98、win2000、winxp、win2003。
当Cisco发布了某个主版本号的IOS以后,它会对它进行维护(仅修正bug,不添加新功能),每维护一次,维护版本号加1。例如c2500-is-l.121-27.bin中的“121-27”代表主版本号为12.1,维护了27次。
当一个主版本号的IOS发布..
类别:未分类|阅读(46)|回复(0)|(0)阅读全文>>
 标签:   [推送到技术圈]









 R4、R3、R2通过R1相连,形成hub and spoke网络拓扑,R1为模拟帧中继交换机,R4为hub路由器,R2、R3 为spoke路由器,R4、R3、R2采用点对多点接口。所有路由器均使用物理接口连接并启用OSPF。
 
1、使用R1模拟帧中继交换机:
Router(config)#hostname FRS
FRS(config)#frame-relay switching
FRS(config)#interface Serial1/0
FRS(config-if)#no ip address
FRS(config-if)#encapsulation frame-relay
FRS(config-if)#clock rate 2016000
FRS(config-if)#frame-relay intf-type dce
FRS(config-if)#frame-relay route 201 interface Serial1/3 102
FRS(config-if)#no shutdown
FRS(config-if)#exit
FRS(config)#interface Serial1/2
FRS(config-if)#no ip address
FRS(config-if)#encapsulation frame-relay
FRS(config-if)#no ip route-cache
FRS(config-if)#clock rate 2016000
FRS(config-if)#frame-relay intf-type dce
FRS(config-if)#frame-relay route 301 interface Serial1/3 103
FRS(config-if)#no shutdown
FRS(config-if)#exit
FRS(config)#interface Serial1/3
FRS(config-if)#no ip address
FRS(config-if)#encapsulation frame-relay
FRS(config-if)#no ip route-cache
FRS(config-if)#clock rate 2016000
FRS(config-if)#frame-relay intf-type dce
FRS(config-if)#frame-relay route 102 interface Serial1/0 201
FRS(config-if)#frame-relay route 103 interface Serial1/2 301
FRS(config-if)#no shutdown
FRS(config-if)#exit
 
-----------------------------------------------------------------------------------------------------------------------
 
2、R4的配置如下:
Routerconfig)#hostname HQ
HQ(config)#interface Loopback1
HQ(config-if)#ip address 10.1.1.1 255.255.255.0
HQ(config-if)#ip ospf network point-to-point
HQ(config-if)#exit
HQ(config)#interface Serial1/3
HQ(config-if)#ip address 10.1.123.1 255.255.255.0
HQ(config-if)#encapsulation frame-relay
HQ(config-if)#ip ospf network point-to-multipoint #the default network type is non-broadcast
HQ(config-if)#frame-relay map ip 10.1.123.1 102    #使得HQ可以Ping通自己
HQ(config-if)#frame-relay map ip 10.1.123.2 102 broadcast   #帧中继静态映射
HQ(config-if)#frame-relay map ip 10.1.123.3 103 broadcast
HQ(config-if)#no frame-relay inverse-arp   #关闭动态ARP映射
HQ(config-if)#no shutdown
HQ(config-if)#exit
HQ(config)#router ospf 1
HQ(config-router)#log-adjacency-changes
HQ(config-router)#network 10.1.1.0 0.0.0.255 area 0
HQ(config-router)#network 10.1.123.0 0.0.0.255 area 0
HQ(config-router)#exit
 
-----------------------------------------------------------------------------------------------------------------------
 
3、R2的配置如下:
Router(config)#hostname EAST
EAST(config)#interface Loopback2
EAST(config-if)#ip address 10.1.2.1 255.255.255.0
EAST(config-if)#ip ospf network point-to-point
EAST(config-if)#exit
EAST(config)#interface Serial1/0
EAST(config-if)#ip address 10.1.123.2 255.255.255.0
EAST(config-if)#encapsulation frame-relay
EAST(config-if)#ip ospf network point-to-multipoint
EAST(config-if)#frame-relay map ip 10.1.123.2 201
EAST(config-if)#frame-relay map ip 10.1.123.1 201 broadcast
EAST(config-if)#frame-relay map ip 10.1.123.3 201 broadcast
EAST(config-if)#no frame-relay inverse-arp
EAST(config-if)#no shutdown
EAST(config-if)#exit
EAST(config)#interface Serial1/1
EAST(config-if)#ip address 10.1.23.2 255.255.255.0
EAST(config-if)#ip ospf hello-interval 5  #更改定时器timer
EAST(config-if)#ip ospf dead-interval 15
EAST(config-if)#no shutdown
EAST(config-if)#exit
EAST(config)#router ospf 1
EAST(config-router)#network 10.1.2.0 0.0.0.255 area 0
EAST(config-router)#network 10.1.23.0 0.0.0.255 area 0
EAST(config-router)#network 10.1.123.0 0.0.0.255 area 0
EAST(config-router)#exit
 
-----------------------------------------------------------------------------------------------------------------------
 
4、R3的配置如下:
Router(config)#hostname WEST
WEST(config)#interface Loopback3
WEST(config-if)#ip address 10.1.3.1 255.255.255.0
WEST(config-if)#ip ospf network point-to-point
WEST(config-if)#exit
WEST(config)#interface Serial1/1
WEST(config-if)#ip address 10.1.23.3 255.255.255.0
WEST(config-if)#ip ospf hello-interval 5
WEST(config-if)#ip ospf dead-interval 15
WEST(config-if)#no shutdown
WEST(config-if)#exit
WEST(config)#interface Serial1/2
WEST(config-if)#ip address 10.1.123.3 255.255.255.0
WEST(config-if)#encapsulation frame-relay
WEST(config-if)#ip ospf network point-to-multipoint
WEST(config-if)#frame-relay map ip 10.1.123.3 301
WEST(config-if)#frame-relay map ip 10.1.123.1 301 broadcast
WEST(config-if)#frame-relay map ip 10.1.123.2 301 broadcast
WEST(config-if)#no frame-relay inverse-arp
WEST(config-if)#no shutdown
WEST(config-if)#exit
WEST(config)#router ospf 1
WEST(config-router)#network 10.1.3.0 255.255.255.0 area 0
WEST(config-router)#network 10.1.23.0 255.255.255.0 area 0
WEST(config-router)#network 10.1.123.0 255.255.255.0 area 0
WEST(config-router)#exit
 
三、验证配置:
 
EAST:
 
EAST#show ip ospf interface Serial1/0
Serial1/0 is up, line protocol is up
  Internet Address 10.1.123.2/24, Area 0
  Process ID 1, Router ID 10.1.2.1, Network Type POINT_TO_MULTIPOINT, Cost: 64
  Transmit Delay is 1 sec, State POINT_TO_MULTIPOINT
  Timer intervals configured, Hello 30, Dead 120, Wait 120, Retransmit 5
    oob-resync timeout 120
    Hello due in 00:00:10
  Supports Link-local Signaling (LLS)
  Cisco NSF helper support enabled
  IETF NSF helper support enabled
  Index 3/3, flood queue length 0
  Next 0x0(0)/0x0(0)
  Last flood scan length is 1, maximum is 1
  Last flood scan time is 0 msec, maximum is 4 msec
  Neighbor Count is 1, Adjacent neighbor count is 1
    Adjacent with neighbor 10.1.1.1
  Suppress hello for 0 neighbor(s)
 
EAST#show ip ospf neighbor  #无DR、BDR的选举!
Neighbor ID     Pri   State           Dead Time   Address         Interface
10.1.1.1          0   FULL/  -        00:01:54    10.1.123.1      Serial1/0
10.1.3.1          0   FULL/  -        00:00:10    10.1.23.3       Serial1/1
 
EAST#show ip route ospf
     10.0.0.0/8 is variably subnetted, 7 subnets, 2 masks
O       10.1.3.0/24 [110/65] via 10.1.23.3, 00:02:30, Serial1/1
O       10.1.1.0/24 [110/65] via 10.1.123.1, 00:02:30, Serial1/0
O       10.1.123.1/32 [110/64] via 10.1.123.1, 00:02:30, Serial1/0
O       10.1.123.3/32 [110/64] via 10.1.23.3, 00:02:30, Serial1/1
 
WEST:
 
WEST#show ip ospf interface Serial1/2
Serial1/2 is up, line protocol is up
  Internet Address 10.1.123.3/24, Area 0
  Process ID 1, Router ID 10.1.3.1, Network Type POINT_TO_MULTIPOINT, Cost: 64
  Transmit Delay is 1 sec, State POINT_TO_MULTIPOINT
  Timer intervals configured, Hello 30, Dead 120, Wait 120, Retransmit 5
    oob-resync timeout 120
    Hello due in 00:00:07
  Supports Link-local Signaling (LLS)
  Cisco NSF helper support enabled
  IETF NSF helper support enabled
  Index 3/3, flood queue length 0
  Next 0x0(0)/0x0(0)
  Last flood scan length is 1, maximum is 1
  Last flood scan time is 4 msec, maximum is 4 msec
  Neighbor Count is 1, Adjacent neighbor count is 1
    Adjacent with neighbor 10.1.1.1
  Suppress hello for 0 neighbor(s)
 
WEST#show ip ospf neighbor  #无DR、BDR的选举!
Neighbor ID     Pri   State           Dead Time   Address         Interface
10.1.1.1          0   FULL/  -        00:01:46    10.1.123.1      Serial1/2
10.1.2.1          0   FULL/  -        00:00:11    10.1.23.2       Serial1/1
 
WEST#show ip route ospf
     10.0.0.0/8 is variably subnetted, 7 subnets, 2 masks
O       10.1.2.0/24 [110/65] via 10.1.23.2, 00:07:16, Serial1/1
O       10.1.1.0/24 [110/65] via 10.1.123.1, 00:07:16, Serial1/2
O       10.1.123.1/32 [110/64] via 10.1.123.1, 00:07:16, Serial1/2
O       10.1.123.2/32 [110/64] via 10.1.23.2, 00:07:16, Serial1/1
 
 
总结:
帧中继交换机:
1.       全局模式:frame-relay switching
2.       接口模式:
a)         No ip address
b)        Encapsulation frame-relay
c)        Clock + dce
d)        Frame-relay route 配置路由
 
路由器配置:
1.         encapsulation frame-relay
2.         ospf network 类型
3.         frame-relay map ip
4.         全互联情况下,可以不用加no frame-relay inverse-arp[/img]..
类别:未分类|阅读(88)|回复(0)|(0)阅读全文>>





过了好久才想起来写一篇博客填充一下自己的精神生活
毕竟很多记忆都是通过这个博客积累起来的


9.20
一个不错的日子 PASS了CCIE RS
不能说是幸运 只能说我的努力得到了回报
在考试拿到CK的那一刻 我知道我今天应该能PASS了
9.18 原定的考试日期
为了顾阅兵 舍小家顾大家
北京银泰封楼 只是为了那最后一次彩排
原本准备充分的心情被彩排一下子打乱了
什么面试 IE LAB FRANK 感觉又离我好远
难道我实力不济?老天要我延后考期
如果真那样我只能认了
18号晚10点左右 收到了北京思科工作人员的CALL
原来他们补加了我的LAB考试 改到20号 周日
不知道我能不能成为一个星期天诞生的IE呢
心里挺紧张 不过已经不是那么在意考试了
PS.看到了阅兵的坦克 整条建国路的坦克
据说几十公里 直通道长安街
原本能刷成绩的时候现在只能继续安心备考
下意识的看了下cisco lab status
巨晕的是我居然已经能刷成绩了 pending
后面却有个地球 好奇的点进去看
FAIL 不是吧 不让我考试就算了 直接FAIL我
呵呵 可能也是自己太紧张
2小时之后再看LAB被改到20号 EMAIL也直接到了





考试
也许我准备很充分 也许对手太弱 也许FRANK本打算放
考试挺顺利 只是其他考生并不识趣
触犯了几个大忌
当然 之后据我所知 9.20RS应该就PASS了我一个
FRANK 人挺好的
喝水 上厕所 抽烟 都可以
我一愣 从来没听说LAB还能出去抽烟的 至少BJ没听过
也许这是他打算放人的征兆吧
FRANK 考试时候已经是第三面了
也许他记住了我 也许只是个过客
他尽他作为考官的职责
我尽我能力解题
core knowledge 居然是纸上答的
也许美国那边数据库授权的关系
当我们面试答题输入考生ID时都是INVALID
呵呵 纸上写 还是铅笔
FRANK 想挂我随时能帮我擦了改 当时我确确实实想的是这个
完全没考试的紧张
最后他打印了几份给我们 4RS 1SEC
PS.据说SEC那兄弟也过了 WOLF的
呵呵 NO.1 IN CHINA 居然和我同一天诞生
很有幸
那哥们眼圈的确吓人 估计是累的 大家都不容易
LAB还行 考的面挺广 但不深
也许是真的准备充分
至少我CK只用了17分钟 而且能保证全对
而其他仨都要F来催
看来准备不咋充分啊
午饭也与众不同
没有了真功夫 换之KFC
汉堡还行 只是没吃到万元大餐 害的我考完还特地去了对面真功夫品尝
只能说还好考试没吃 不然估计下午要吐了
一塌糊涂 居然还有人吃
trouble没有想象中的可怕
只是我没用一些傻×的命令eg.who这种
显然是改过的IOS
只是做我该做的事
3.30做完之后也是只是按部就班的检查
一些要点 以及backbone
很顺利拿到号
还是自己凑出的号 呵呵 不枉我一片努力



cisco 印象
能进说明英语肯定不差
老外挺多 和善 而且乐观
前台MM有些高傲 虽然见了多面
可总给人不可接近感觉
抽中南海 呵呵 北京超多人抽
思科设施很好
大高清电视1080P IP PHONE 76系列吧 记不清了
人手一台IBM
以及LAB边上收发室
男生统一CISCO LOGO的T恤
很精神 也很轻松
看到了CISCO内部的培训资料
全英文 没有细研究 应该是套软件
有趣的是LAB一整排CISCO设备上我居然瞄到一台白色扁平的JUNIPER
用在哪?不得而知
联想的品牌机还是不错 搭配了罗技多媒体600的键盘
很多人说硬 我倒觉得一切都挺顺利 挺舒服
只是得力的铅笔不敢恭维
害的我画OSPF区域时候整个笔头都掉了下来





北京印象
空气质量真的好差
下飞机是中午 看到就是灰蒙蒙的天
心情沉了一大半 我的LAB之旅从这里开始
苦黄色的天空
银泰的确是个好地段 租金肯定不便宜
下面一个硕大的阿玛尼LOGO
以及直通地铁1号线的便捷
和沿途的高档奢侈品商铺
北京有钱人好多
为什么这么说 因为奥迪
马路上1.8 2.4奥迪比比皆是
我搞不懂为什么有钱不买保时捷 宝马 奔驰 而钟情奥迪?
政府用车?也许吧
一个和我岁数相仿的男生带着女友走出宾馆
一按车钥匙 一辆奥迪
我在想我不适合北京 也许因为他的古老
也许它给我那种感觉
国贸可以算是市区
市区的某个角落 贫富差距太悬殊
有人买阿玛尼
有人为生计奔波
我不评论政治 制度
我只是普通人
只是一个candidate






老婆家人
老婆 我辛苦备考的日子我也知道你很难受
为了不想我 不影响我
你选择努力工作 用压力麻痹自己
我知道 你辛苦了
朝七晚八的日子不好受
更何况你一个女流之辈
只能说 我们都为了将来
我知道你一直在为我祝福 为我加油
当我累趴下的时候鼓励我
当我骄傲时候给我压力
现在的付出 我会给你回报
再说家人
我也很感谢各位的支持
在我2点胃难受之极之时 母亲给我送来一个面包 一碗面
不知道这里该说什么
我无所谓自己
我的努力只是想报答各位 谢谢








也谢谢各位朋友 雁 葛 翔 龙 磊
没有你们的话我估计现在还没考IE的勇气
谢谢你们的鼓励 也谢谢你们的叮嘱

我明白
先谈人 再谈技术

路还长 CCIE只是一个开始....
我们的努力还在继续....
梦还在...
不是嘛...

[/img]..
类别:未分类|阅读(168)|回复(2)|(0)阅读全文>>
2009-09-19 14:18:47
STP (spanning  tree  protocol) IEEE802.1D生成树协议     默认开启
为了避免单点失效(两网段间只有一个物理设备,坏了就是单点失效)→冗余网络(问题多帧复制、MAC地址表翻动、广播风暴)
为了解决冗余网络中的桥接环路问题产生了STP(逻辑Block一条路,关接口)
 
STP采用STA(spanning  tree arithmetic)算法
STA工作原理:会在冗余链路中选择一个参考点(生成树的根),将选择到达要的单条路径,同时阻断其他冗余路径。一旦已选路径失效,将启用其他路径
 
STP 里选举都..
类别:未分类|阅读(148)|回复(0)|(0)阅读全文>>
(1)接口上没有激活ospf
就是在network语句的时候没有匹配清楚,比如配置了错误的反掩码不对,在show ip ospf interface的时候不会显示你希望激活的接口
使用show ip ospf interface来验证
这时候的邻居表是空的
>R2#show ip ospf neighbor
R2#
(2)物理层或者是数据链路层协议down.
使用show ip int brief 或者是 show int type nomber
会导致ospf packet 封装失败。
(3)建立邻居的接口被passive掉






R2#show ip ospf interface Ethernet 0
Ethernet0 is up, line protocol is up
Internet Address 131.108.1.2/24, Area..
类别:未分类|阅读(131)|回复(1)|(0)阅读全文>>
 <<   1   2   3   4   >>   页数 ( 1/4 )