博客统计信息

用户名:xiangjally
文章数:7
评论数:18
访问量:8898
无忧币:20
博客积分:106
博客等级:1
注册日期:2008-08-26

载地址:
[url]http://file.mofile.com/[/url]
输入以上网址,将相应的提取码输入后点击提取文件按钮




1


点击链接下载:



2





不同型号的路由器对应的不同提取码:
 
路由器类型         提取码
  2691         6293390068303731
  7200         6986524697871820
  3640         3876223667411356
  3620         2526671284901590
  3660         8820394158989283
  3725         5082460372607185
  3745         4988800091818906
 
DynamipsGUI_2.8.ar 中文版下载
[url]http://www.hyzzc.cn/flycisco/DynamipsGUI28.rar[/url]本文出自 51CTO.COM技术博客[/img]..
有关详细的信息
EIGRP协议主页,其网址为[url]www.cisco.com/go/eigrp[/url]
 
一、Eigrp路由协议简介:
 
 是个距离矢量路由协议。收敛很快,不会出现环路。路由信息的传输采用增量更新,减少了路由信息交换对网络带宽的占用。它和igrp是cisco私有的路由协议,支持在不等代价路径上支持负载均衡,这是其他路由协议所不具备的。网络设计更灵活,路由的汇总可在任何路由的任何端口上进行。
 
二、在eigrp路由协议中存在三张表:
Eigrp邻居表,拓扑表,和路由表。在邻居表中,存在两个参数:fd(feasible di..
一、静态路由
     1.什么时候最适合使用静态路由
▇ 链路的带宽较低(如拨号路由),不希望它们传输动态路由选择更新。
▇ 管理员想完全控制路由器使用的路由。
▇ 需要为动态路由提供一条备用路由。
▇ 前往只有一条路尽可以到达的网络(末节网络)是。
▇ 路由器不够强大,没有足够的CPU或内存资源来运行动态路由协议。
▇ 需要让路由器看来路又是一个直连网络。
 
 
 
  2.浮动静态路由
 仅当主路由不可用时才被加入到路由选择表中的静态路由,被称为浮动静态路由。
..
             华为S2403   
   HCNE实验指导书上看到的,原来可以这样简单实现多个VLAN之间某些端口互相访问。
 
    在划分VLAN 后,我们已经可以实现不同VLAN 之间物理上的隔离,但是公司里的某些资源如打印机,服务器等,要求可以被两个VLAN 所共享。例如:某公司有一台打印机,要求两个部门之间不能通讯的情况下可以共享打印机。
基本思路:
   把公司的财务部和其他部门划分成两个VLAN,财务部有三个主机接到1,2,..
2008-11-04 13:28:11
 





 





1 配置静态NAT
R1配置:
(1)设置内部接口地址
R1(config)#int f0/0
R1(config-if)#ip address 192.168.1.254 255.255.255.0
R1(config-if)#no shutdown
(2)设置外部接口地址
R1(config)#int s1/0
R1(config-if)#ip address 1.1.1.1 255.255.255.252
R1(config-if)#no shutdown
(3)在内部局部和内部全局地址之间建立静态地址转换
R1(config)#ip nat inside source static 192.168.1.1 172.16.1.1
R1(config)#ip nat inside source static 192.168.1.2 172.16.1.2
(4)在内部接口和外部接口上启用NAT
R1(config)#int f0/0
R1(config-if)#ip nat inside
R1(config-if)#exit
R1(config)#int s1/0
R1(config-if)#ip nat outside
(5)启用默认路由
R1(config)#ip route 0.0.0.0 0.0.0.0 1.1.1.2
R2配置:
R2>en
R2#conf t
R2(config)#int s1/1
R2(config-if)#ip address 1.1.1.2 255.255.255.252
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#int f0/0
R2(config-if)#ip address 2.2.2.1 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#ip route 0.0.0.0 0.0.0.0 1.1.1.1
(6)验证
PC1:
PC1#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 = 168/254/336 ms
R1:
R1#show ip nat translations
Pro Inside global      Inside local       Outside local      Outside global
icmp 172.16.1.1:7      192.168.1.1:7      2.2.2.2:7          2.2.2.2:7
--- 172.16.1.1         192.168.1.1        ---                ---
--- 172.16.1.2         192.168.1.2        ---                ---
当PC1对PC3执行了PING命令之后,我们在R1上show ip nat translations后可以发现已经成功执行了NAT转换
内部局部地址192.168.1.1到达路由器后执行NAT转换,转换成内部全局地址172.16.1.1。在PC3看来,与自己通信的是172.16.1.1。
R1#debug ip nat
IP NAT debugging is on
R1#
*Mar  1 01:13:06.659: NAT*: s=192.168.1.2->172.16.1.2, d=2.2.2.2 [25]
*Mar  1 01:13:06.803: NAT*: s=2.2.2.2, d=172.16.1.2->192.168.1.2 [25]
*Mar  1 01:13:06.995: NAT*: s=192.168.1.2->172.16.1.2, d=2.2.2.2 [26]
*Mar  1 01:13:07.163: NAT*: s=2.2.2.2, d=172.16.1.2->192.168.1.2 [26]
*Mar  1 01:13:07.235: NAT*: s=192.168.1.2->172.16.1.2, d=2.2.2.2 [27]
*Mar  1 01:13:07.395: NAT*: s=2.2.2.2, d=172.16.1.2->192.168.1.2 [27]
*Mar  1 01:13:07.443: NAT*: s=192.168.1.2->172.16.1.2, d=2.2.2.2 [28]
*Mar  1 01:13:07.575: NAT*: s=2.2.2.2, d=172.16.1.2->192.168.1.2 [28]
*Mar  1 01:13:07.603: NAT*: s=192.168.1.2->172.16.1.2, d=2.2.2.2 [29]
*Mar  1 01:13:07.735: NAT*: s=2.2.2.2, d=172.16.1.2->192.168.1.2 [29]
当PC2对PC3执行PING命令之后,我在R1上运行dubug ip nat后,可以看到更加详细的转换。源地址192.168.2.2到达路由器之后转换成172.16.1.2与PC3 2.2.2.2进行通信。
2 配置动态NAT
配置之前,下将任务1中配置的静态NAT删除掉
R1:
R1(config)#no ip nat inside source static 192.168.1.1 172.16.1.1
R1(config)#no ip nat inside source static 192.168.1.2 172.16.1.2
R1(config)#int f0/0
R1(config-if)#no ip nat inside
R1(config-if)#exit
R1(config)#int s1/0
R1(config-if)#no ip nat outside
(1)设置内部接口地址
R1(config)#int f0/0
R1(config-if)#ip address 192.168.1.254 255.255.255.0
R1(config-if)#no shutdown
(2)设置外部接口地址
R1(config)#int s1/0
R1(config-if)#ip address 1.1.1.1 255.255.255.252
R1(config-if)#no shutdown
(3)定义内部网络中允许访问外部网络的访问控制列表
R1(config)#access-list 1 permit 192.168.1.0 0.0.0.255
(4)定义合法IP地址池
R1(config)#ip nat pool test1 10.0.0.1 10.0.0.3 netmask 255.255.255.0
(5)实现网络地址转换
R1(config)#ip nat inside source list 1 pool test1
(6)在内部和外部接口启用NAT
R1(config)#int f0/0
R1(config-if)#ip nat inside
R1(config-if)#exit
R1(config)#int s1/0
R1(config-if)#ip nat outside
(7)验证:
PC1:
PC1#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 = 264/298/332 ms
PC2:
PC2#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 = 228/280/384 ms
R1:
R1#show ip nat translations
Pro Inside global      Inside local       Outside local      Outside global
icmp 10.0.0.1:10       192.168.1.1:10     2.2.2.2:10         2.2.2.2:10
--- 10.0.0.1           192.168.1.1        ---                ---
icmp 10.0.0.2:7        192.168.1.2:7      2.2.2.2:7          2.2.2.2:7
--- 10.0.0.2           192.168.1.2        ---                ---
3 配置PAT
  一 提供内部全局地址为:10.10.10.10/24
R1#conf t
R1(config)#no ip nat inside source list 1 pool test1       
R1(config)#no access-list 1         
R1(config)#no ip nat pool test1                   
R1(config)#int f0/0
R1(config-if)#no ip nat inside
R1(config)#int s1/0
R1(config-if)#no ip nat outside
R1(config-if)#end
(1)设置内部接口地址
R1(config)#int f0/0
R1(config-if)#ip address 192.168.1.254 255.255.255.0
R1(config-if)#no shutdown
(2)设置外部接口地址
R1(config)#int s1/0
R1(config-if)#ip address 1.1.1.1 255.255.255.252
R1(config-if)#no shutdown
(3)定义内部网络中允许访问外部网络的访问控制列表
R1(config)#access-list 1 permit 192.168.1.0 0.0.0.255
(4)定义合法IP地址池
R1(config)#ip nat pool test2 10.10.10.10 10.10.10.10 netmask 255.255.255.0
(5)设置复用动态IP地址转换
R1(config)#ip nat inside source list 1 pool test2 overload
(6)在内部和外部端口上启用NAT
R1(config)#int s1/0
R1(config-if)#ip nat outside
R1(config-if)#exit
R1(config)#int f0/0
R1(config-if)#ip nat inside
(7)验证:
PC1:
PC1#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 = 140/289/500 ms
PC2:
PC2#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 = 144/270/492 ms
R1:
R1#show ip nat translations
Pro Inside global      Inside local       Outside local      Outside global
icmp 10.10.10.10:11    192.168.1.1:11     2.2.2.2:11         2.2.2.2:11
icmp 10.10.10.10:8     192.168.1.2:8      2.2.2.2:8          2.2.2.2:8
可见,局域网内部的IP地址都复用了内部全局地址10.10.10.10
   二 复用路由器外部接口地址
R1:
R1#conf t
R1(config)#no ip nat inside source list 1 pool test2
R1(config)#no access-list 1
R1(config)#no ip nat pool test2
R1(config)#int f0/0
R1(config-if)#no ip nat inside
R1(config-if)#exit
R1(config)#int s1/0
R1(config-if)#no ip nat outside
R1(config-if)#end
(1)设置内部接口地址
R1(config)#int f0/0
R1(config-if)#ip address 192.168.1.254 255.255.255.0
R1(config-if)#no shutdown
(2)设置外部接口地址
R1(config)#int s1/0
R1(config-if)#ip address 1.1.1.1 255.255.255.252
R1(config-if)#no shutdown
(3)定义内部网络中允许访问外部网络的访问控制列表
R1(config)#access-list 2 permit 192.168.1.0 0.0.0.255
(4)由于使用外部接口地址,所以不用再定义IP地址池了
(5)设置复用动态IP地址转换
R1(config)#ip nat inside source list 2 interface s1/0 overload
(6)在内部和外部端口上启用NAT
R1(config)#int f0/0
R1(config-if)#ip nat inside
R1(config-if)#exit
R1(config)#int s1/0
R1(config-if)#ip nat outside
(7)验证
PC1:
PC1#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 = 232/316/424 ms
PC2:
PC2#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 = 240/297/356 ms
R1:
R1#show ip nat translations
Pro Inside global      Inside local       Outside local      Outside global
icmp 1.1.1.1:13        192.168.1.1:13     2.2.2.2:13         2.2.2.2:13
icmp 1.1.1.1:9         192.168.1.2:9      2.2.2.2:9          2.2.2.2:9
可见,局域网内部的IP地址都复用了路由器外部接口地址1.1.1.1
 
本文出自 “甜蜜的T007之家” 博客,转载请与作者联系!本文出自 51CTO.COM技术博客
[/img]..
2008-10-30 13:08:43
         从刚开始备考网络工程师开始,我就开始喜欢上网络技术了,特别是现在,已经着迷了。 
        前不久,发现了51CTO这个很不错的地方,有点相见恨晚的感觉。要学的东西实在太多了,~···········
                               努力~·
    ..






(更新中...)
Linux常见的文件系统介绍
支持十多种:JFS,ReiserFS,Ext,Ext2,Ext3,ISO9660,XFS,Minx,MSDOS,UMSDOS,VFAT,
NTFS,HPFS,NFS,SMB,SysV,PROC等
Linux文件介绍
1.LINUX文件均为无结构的字符流形式,文件名是文件的标识,由字母,数字,下划线和圆点组成的字符串构成.
2.LINUX系统中有三种基本文件类型:
   普通文件:是用户最熟悉的最常用的文件,分为文本文件和二进制文件两种.
    目录文件:主要的目的是用于管理和组织系统中的大量文件,其存储一组相关文件的位置,大小等与文件有关的信..