思科路由器2600配置

作者&投稿:龙褚 (若有异议请与网页底部的电邮联系)
思科路由器2600的配置方法~

路由器是计算机网络的桥梁,是连接IP网的核心设备。它不仅可以连通不同的网络,还能选择数据传送的路径,并能阻隔非法访问。对初学者来说,路由器的配置并不是一件易事。现以Cisco 2600路由器为例,将Cisco路由器配置的常识介绍给大家。

一、连接

1.用Cisco 2600路由器自带的一条串行电缆将路由器的Console口与1台计算机串口相连。

2.启动Windows 2000后,执行以下操作:“开始→程序→附件→通讯→超级终端”,在“连接描述”对话框的名称一栏中输入超级终端名,点击“确定”。

3.在“连接到”窗体中的“连接时使用”栏选择“COM1”,单击确定。在弹出的“COM1属性”窗体中进行端口设置。

设置结束,打开路由器电源,就会出现路由器的启动信息。这时就可以像在终端一样对路由器进行操作了。

二、配置

路由器的配置操作都必须连接到路由器的终端上,在Cisco路由器操作系统IOS的提示符下进行操作。

常用配置方法如下:

1.配置以太网络接口的IP地址

Router> enable '进入特权模式
Password:��������� '特权用户口令
Router# configure terminal '进入配置模式
Enter configuration commands� one per line. End with CNTL/Z.
Routerconfig # interface Ethernet 0 '进入外部以太网口配置
Routerconfig-if # ip address 192.168.0.11 255.255.255.0 '进入AUI0接口的IP地址配置为192.168.0.11,子网掩码为255.255.255.0。
2.配置静态路由表

Router> enable
Password:���������
Router# config terminal
Enter configuration commands� one per line. End with CNTL/Z.
Routerconfig # ip route 192.168.2.0 255.255.255.0 192.168.0.1 '配置进入AUI0接口的IP地址。

3.配置动态OSPF路由

Router> enable
Password:���������
Router# config terminal
Enter configuration commands� one per line. End with CNTL/Z.
Routerconfig # router ospf 1
Routerconfig-router # network 192.168.0.0 0.0.0.255 area 0.0.0.0

其中的192.168.0.0是子网的地址,也可以是路由器上的接口的IP地址或OSPF路由器所用接口的网络地址;而0.0.0.255掩码后面为OSPF所用的域。

4.查看以太网接口0的状态

Router> enable
Password:���������
Router# show interface Ethernet 0 '显示以太网接口0的状态。
5.查看路由器的当前配置
Router> enable
Password:���������
Router# show run '显示路由器的当前配置

上述内容只是一些常见的路由器配置方法,要想全面掌握路由器的配置,还需要有扎实的知识和丰富的实际经验。初学者可以通过使用模拟软件来学习配置,如《电脑报》第13期的《打造自己的“模拟路由交换平台”》一文介绍的RouterSim就是很好的模拟软件,想试试身手的朋友可以去下载来用用。

连接计算机和路由器,以及路由器和外网接口,应注意级联线和直通线的用法。
首先确定f0/0与f0/1哪个是外网接口 哪个是内网接口
基本路由器配置命令

1.配置f0/0和f0/1的ip地址
Router>en 进入
Password: 输入密码 输入后看不见
Router#config t 进入特权配置模式
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#interface f0/0 进入f0/0接口
Router(config-if)#no shut 激活f0/0接口
Router(config-if)#ip address 172.16.0.246 255.255.255.0 配置IP地址
Router(config-if)#exit 退出
Router(config)#interface f0/1 进入f0/1接口
Router(config-if)#ip address 192.168.0.1 255.255.255.0 配置IP地址
Router(config-if)#no shut 激活f0/1接口
Router(config-if)#exit 退出
Router(config)#exit 退出
Router#
00:58:42: %SYS-5-CONFIG_I: Configured from console by console
Router#show run 查看运行状态
Building configuration...
==========================================================================
Current configuration : 850 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Router
!
logging console notifications
enable password cheng
!
ip subnet-zero
!
!
!
ip inspect audit-trail
ip audit notify log
ip audit po max-events 100
!
!
!
!
interface FastEthernet0/0 --------------------------------------
ip address 172.16.0.246 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.0.1 255.255.255.0
duplex auto
speed auto
!
interface Ethernet1/0
no ip address 注意每次查看的这些不同之处
ip broadcast-address 0.0.0.0
shutdown
half-duplex
!
ip classless
ip http server
ip pim bidir-enable
!
logging facility local3
logging 172.18.1.3
tacacs-server host 172.18.1.2
!
line con 0
line aux 0
line vty 0 4
login
! -------------------------------------
end
========================================================

---------------------------------------------------------------------------------------------------------------
2,配置路由和配置NAT内外接口(此包含了NAT转换的一些内容)

Router# 输入的en和密码就省去了 ~_~
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#ip route 0.0.0.0 0.0.0.0 172.16.0.254 配置路由信息 (此是一条缺省路由)
Router(config)#interface f0/0 进入F0/0接口
Router(config-if)#ip nat inside 把F0/0设置为接入口(inside)
Router(config-if)#exit
Router(config)#interface f0/1 进入F0/1接口
Router(config-if)#ip nat outside 把F0/1设置为接出口
Router(config-if)#exit
Router(config)#exit
Router#sho -----------------你一定?呵呵这里你只要输入show run 不用管他 只要不输错 就会成功
01:21:25: %SYS-5-CONFIG_I: Configured from console by consolew run
Building configuration...
---------------------------------------------------------
Current configuration : 797 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Router
!
logging console notifications
enable password cheng
!
ip subnet-zero
!
!
!
ip inspect audit-trail
ip audit notify log
ip audit po max-events 100
!
!
!
interface FastEthernet0/0 --------------------------------------
ip address 172.16.0.246 255.255.255.0
ip nat inside ------->注意~0~ 这里
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.0.1 255.255.255.0
ip nat outside ------->注意~0~ 这里
duplex auto
speed auto
!
interface Ethernet1/0
no ip address
ip broadcast-address 0.0.0.0
shutdown
half-duplex
!
ip classless
ip route 0.0.0.0 0.0.0.0 172.16.0.254 ------->注意 这里是缺省路由
ip http server
ip pim bidir-enable
!
!
logging facility local3
logging 172.18.1.3
tacacs-server host 172.18.1.2
!
line con 0
line aux 0
line vty 0 4
login
! -------------------------------------------
end
========================================================

3,配置NAT 转换的重要一句静态路由:
ip route-static {interface number|nexthop}[value][reject|blackhole]

Router# 输入的en和密码就省去了 ~_~
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#ip nat inside source static 192.168.1.2 172.16.0.246 配置NAT地址的转换信息
Router(config)#exit
Router#show run 查看
01:21:25: %SYS-5-CONFIG_I: Configured from console by console
Building configuration...
---------------------------------------------------------
Current configuration : 797 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Router
!
logging console notifications
enable password cheng
!
ip subnet-zero
!
!
!
ip inspect audit-trail
ip audit notify log
ip audit po max-events 100
!
!
!
interface FastEthernet0/0
ip address 172.16.0.246 255.255.255.0
ip nat outside
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.0.1 255.255.255.0
ip nat inside
duplex auto
speed auto
!
interface Ethernet1/0
no ip address
ip broadcast-address 0.0.0.0
shutdown
half-duplex
!
ip nat inside source static 192.168.1.2 172.16.0.246 ------------>配好了
ip classless
ip route 0.0.0.0 0.0.0.0 172.16.0.254
ip http server
ip pim bidir-enable
!
logging facility local3
logging 172.18.1.3
tacacs-server host 172.18.1.2
!
line con 0
line aux 0
line vty 0 4
login
!
end

老老实实看书吧,可以先看个ccna学习指南。

随便举几个指令例子给你好了:

Route> 你进来是这个样子
Route>en 打个en回车 进入特权模式
Route# 就是这个样子
Router#conf t 打完这个
Enter configuration commands, one per line. End with CNTL/Z. 这个是自动显示出来的,别打
Router(config)# 就进入全局配置模式
Router(config)#hostname R1 打这个就改名
R1(config)# 现在名字叫r1 了
R1(config)#exit 打这个就退出全局配置模式了
%SYS-5-CONFIG_I: Configured from console by console

R1#show run 打这个就看配置了
Building configuration...

Current configuration : 510 bytes
!
version 12.2
no service password-encryption
!
hostname R1
!
!
!
!
!
ip ssh version 1
!
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
shutdown

下面一大堆就不显示了,先教你进端口配ip

R1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#interface FastEthernet0/0 这样就是进端口f0/0 你自己对应你的端口
R1(config-if)#ip add 192.168.1.1 255.255.255.0 这个就是配ip了
R1(config-if)#no sh 这个是up端口

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

这个时候你拿台电脑,连上配好的口
电脑的ip 配 192.168.1.2 255.255.255.0

路由器上的灯该闪了,路由器界面上会显示类似
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
的信息。

配到这,你在电脑上ping 192.168.1.1 是通的。

其实找本书翻翻一上午足够了。有问题留言我。

第1步,怎么去设置IP;
右键单击网上邻居选择属性,本地连接同样选属性,在常规项选择INTERNET协议(TCP/IP)同样是属性,有自动获得IP地址和使用下面的IP地址,一般选择自动获得,选择使用下面的IP地址
设置IP地址:(I)192.168.1.101或者192.168.1.102以此类推至199(最后三位数).
子网掩码(U):不用管一点自动获得。
默认网关(D):
192.168.1.1这个地址一般路由器底下都有。
使用下面的DNS服务器地址(E),首选DNS服务器(P)192.168.1.1这个地址一般路由器底下都有。
第2步,设置路由器;
登陆路由器,选择DHCP服务器,选择DHCP服务。地址租期:默认120分钟,选择最大值,需要重启路由器,不急!
转发规则UONP设置-开启
其余不用管了。
选择系统工具重启路由器。OK。
告诉你一个公开的秘密:
下载P2P终结者控制流量,http://www.netsoft2005.com/安装成功后,配置软件:
软件配置项有个网卡设置,请选择检测所使用的网卡。
系统设置:发现新主机时自动对其进行控制前打钩。
网络控制台:启动网络控制服务。OK
网络主机扫描 :刷新网络,右键对其进行控制。
网络应用管理:详细对其进行控制。
建议不要使用破解版,官方最好。试用期30天,快到30天的时候用完美卸载2008卸载,重装P2P
满意吗?

找台电脑,用全反线RJ-45接CONSLE口,DB-9串口的接计算机上的串口,
电脑上 开始菜单——附件——通讯工具——超级终端———选你接的那个串口(比如com1)——点恢复默认设置

如果连上了就会出现下面的:

System Bootstrap, Version 12.1(3r)T2, RELEASE SOFTWARE (fc1)
Copyright (c) 2000 by cisco Systems, Inc.
cisco 2620 (MPC860) processor (revision 0x200) with 60416K/5120K bytes of memory

Self decompressing the image :
########################################################################## [OK]

Restricted Rights Legend

Use, duplication, or disclosure by the Government is
subject to restrictions as set forth in subparagraph
(c) of the Commercial Computer Software - Restricted
Rights clause at FAR sec. 52.227-19 and subparagraph
(c) (1) (ii) of the Rights in Technical Data and Computer
Software clause at DFARS sec. 252.227-7013.

cisco Systems, Inc.
170 West Tasman Drive
San Jose, California 95134-1706

Cisco Internetwork Operating System Software
IOS (tm) C2600 Software (C2600-I-M), Version 12.2(28), RELEASE SOFTWARE (fc5)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2005 by cisco Systems, Inc.
Compiled Wed 27-Apr-04 19:01 by miwang

cisco 2620 (MPC860) processor (revision 0x200) with 60416K/5120K bytes of memory
.
Processor board ID JAD05190MTZ (4292891495)
M860 processor: part number 0, mask 49
Bridging software.
X.25 software, Version 3.0.0.
1 FastEthernet/IEEE 802.3 interface(s)
32K bytes of non-volatile configuration memory.
16384K bytes of processor board System flash (Read/Write)

--- System Configuration Dialog ---

Continue with configuration dialog? [yes/no]: no (这里问是否要用对话配置模式)
Router>en (进特权模式)
Router#show ip interface brief (看路由器上端口的基本状况)

Interface IP-Address OK? Method Status Protocol

FastEthernet0/0 unassigned YES manual administratively down down

Serial0/0 unassigned YES manual administratively down down

Serial0/1 unassigned YES manual administratively down down

FastEthernet1/0 unassigned YES manual administratively down down

FastEthernet1/1 unassigned YES manual administratively down down

Modem1/0 unassigned YES manual administratively down down

Modem1/1 unassigned YES manual administratively down down

(从上面可以看到有多少个口,每个口的ip和状态)

(配置一个接口的IP,以 FastEthernet0/0 为例)
Router#conf t (进全局模式)
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname r2 (给路由命名 R2 是名字)

r2(config)#interface f0/0 (进入FastEthernet0/0 接口)

r2(config-if)#ip address 192.168.1.3 255.255.255.0 (给接口配置IP,前面是IP,后面是子网掩码。)

r2(config-if)#no shutdown (使上面的配置立即生效)

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
r2(config-if)#end (END 直接退出到用户模式)
%SYS-5-CONFIG_I: Configured from console by console

r2#show ip interface f0/0 (用这个命令可以查看FastEthernet0/0 的所有信息)

FastEthernet0/0 is up, line protocol is down (disabled) (这行表示FastEthernet0/0 没接通线)
Internet address is 192.168.1.3/24
Broadcast address is 255.255.255.255
Address determined by setup command
MTU is 1500 bytes
Helper address is not set
Directed broadcast forwarding is disabled
Outgoing access list is not set
Inbound access list is not set
Proxy ARP is enabled
Security level is default
Split horizon is enabled
ICMP redirects are always sent
ICMP unreachables are always sent
ICMP mask replies are never sent
IP fast switching is disabled
IP fast switching on the same interface is disabled
IP Flow switching is disabled
IP Fast switching turbo vector
IP multicast fast switching is disabled
IP multicast distributed fast switching is disabled
Router Discovery is disabled
IP output packet accounting is disabled

r2#show ip interface brief (用这命令可以查看接口的简单信息)

Interface IP-Address OK? Method Status Protocol

FastEthernet0/0 192.168.1.3 YES manual up down

Serial0/0 unassigned YES manual administratively down down

Serial0/1 unassigned YES manual administratively down down

FastEthernet1/0 unassigned YES manual administratively down down

FastEthernet1/1 unassigned YES manual administratively down down

Modem1/0 unassigned YES manual administratively down down

Modem1/1 unassigned YES manual administratively down down

(从第2行可以看到FastEthernet0/0 的IP已经配置好了,其他接口的配置也和上面的基本一样)
r2#writer (最后别忘了保存下配置)

呵呵
希望对你有,我也是刚学的
路由器是 思科的2620XM

你不是有说明书吗 真是的


简述入侵检测常用的四种方法
入侵检测系统所采用的技术可分为特征检测与异常检测两种。1、特征检测 特征检测(Signature-based detection) 又称Misuse detection ,这一检测假设入侵者活动可以用一种模式来表示,系统的目标是检测主体活动是否符合这些模式。它可以将已有的入侵方法检查出来,但对新的入侵方法无能为力。其难点在于如何设计...

数字经济概念板块股一览
业绩预告:预计21年1-12月归属于上市公司股东的净利润为:-2600万元至-3900万元。机构评级:22年第一季度报告:每股收益:-0.06元,营业收入:6807.81万元,营业...该等产品已经广泛应用于手机、笔记本电脑、台式电脑、平板电脑(Pad)、无线路由器、数码相机、游戏机、3G、4G移动通信基站、精密医疗设备,以及“神舟”系列...

展会邀请函
拓达拨码室外无线网桥、监控专用交换机、路由器、poe交换机等 拓达拨码网桥: 三、展会号: 二楼D区T42 四、参展时间: 20xx.3.26-20xx.3.28 五、地点:...自20xx年苏州家具展览会横空出世之后,先后为2600多家参展商、近70万观展客商 提供 品牌展示、供需对接、行业交流机会,并达成44多亿元交易,深受二三四级市...

ax5400路由器怎么样
机身侧面一周和底部都设置了散热用的格栅,同时机身内部配备了铝硅&铝镁合金双层覆盖散热片,以及石墨烯散热涂层,保证机身散热效率,让路由器长久稳定且高效地运行。ax5400是新一代wifi协议,俗称wifi6,wifi6网络速度更快,带机量更大,但是价格相对比较贵一些。ax5400和ac2600对比 AX5400的速度和性能...

思科路由器2600 如何查看那个内网机子在下载东西和占用带宽?
1:电脑插到路由器的一个接口上,安装wireshark或者其他抓包工具。2:在2600上配置端口映射,将你怀疑的端口映射到电脑连接的接口上,然后抓包。3:看到大量的TCP,UDP报文的,就是这个机器在下载东西,然后根据TCP,UDP报文的IP地址,很容易判断出是哪个机器。这个是最科学的方法。还有一种,不知道2600...

磊科NRN2600-06基本参数
在内存方面,该路由器配备了16MB的大容量Flash内存,可以存储大量的系统数据和配置信息,保证了设备的持久性和稳定性。而128MB的DRAM内存则提供了充足的临时数据处理能力,使得路由器在处理多任务时更加流畅。在网络协议支持上,NRN2600-06兼容了多种标准,包括IEEE 802.3(以太网),IEEE 802.3u(快速...

如何用SecureCRT配置cisco路由器啊
点快速链接 然后有协议 有telnet和Serial一般用这两种方式,你如果用控制线连的就选后者,不是就选前者用telnet,不过前提是你路由器开启了telnet 本回答被提问者采纳 亚里士不是缺德 | 推荐于2017-12-16 18:43:41 举报| 评论 0 0 快速连接- choujiao65 | 发布于2011-07-19 举报| 评论 0 0 为...

cicso2600路由器如何重装IOS?
A.在连接运行tftp server的PC 机至路由器时,必需使用路由器的第一个以太口,即Ethernt0(对2500系列等),Ethernet0\/0(对2600系列等),其它系列略有差别,可根据使用手册进行确定。B.在使用连接电缆时,一定要用交叉线,因这种情况属DTE与DCE之间的连接。C.在运行tftp server的PC 机上,一定要有相应的路由器的IOS...

电竞游戏神器 捷稀金刚狼路由器上手体验
JHR-AC876M是一款全千兆路由,它配置了1个千兆WAN口和4个千兆LAN口,全部采用满足千兆光纤网络的标准的1000Mbps端口设计,配合双重滤波新技术,将有线传输距离提升约50%,达到150米的网络覆盖范围。WAN口和LAN口采用颜色区分,并且每个网口都配有LED状态指示灯,链接状态一目了然。 JHR-AC876M的网线口设计在路由器底部...

穿透力强的路由器有哪些 穿透力强的路由器排名介绍【详解】
搭配四根5dBi高增益无线天线,RTA2600的无线覆盖范围进一步扩大,可以轻松满足家庭用户的使用需求。这款无线路由器还配备了一个USB2.0接口和一个USB3.0接口,高速的无线传输可以将移动存储设备中的文件轻松与家庭中的其他设备共享。以上四款路由器便是2016年度最热销的产品,同时也是好评最高的产品。我们在...

屯留县13342209552: 思科路由器2600的配置方法 -
连平解热: 路由器是计算机网络的桥梁,是连接IP网的核心设备.它不仅可以连通不同的网络,还能选择数据传送的路径,并能阻隔非法访问.对初学者来说,路由器的配置并不是一件易事.现以Cisco 2600路由器为例,将Cisco路由器配置的常识介绍给...

屯留县13342209552: 以Cisco2600路由器为例,简述路由器有哪五种配置方式 -
连平解热: 1.Console口接终端或运行终端仿真软件的微机; 2.AUX口接MODEM,通过电话线与远方的终端或运行终端仿真软件的微机相连; 3.通过Ethernet上的TFTP服务器; 4.通过Ethernet上的TELNET程序; 5.通过Ethernet上的SNMP网管工作站.

屯留县13342209552: Cisco2600系列路由器怎么配置?
连平解热: 需要配置的,如果第一种方式,需要配置PPPOE拨号,第2种方式直接配置地址,然后在另一个口上配上一个内网网络的地址,这个地址作为下面机器的网关.如果他们只给你们一个公网地址,那么最后还要做NAT,即网络地址转换,如果是拨号的话那更要做NAT,所以,建议你用他们给你的静态地址,配合NAT OVER LOAD(NAT超载)来实现共享上网

屯留县13342209552: Cisco2620路由器的基本配置? -
连平解热: 1. 初始安装 第一次安装时系统会自动进入Dialog Setup,依屏幕提示,分别回答路由器名称、加密超级登录密码、超级登录密码、远程登录密码、动态路由协议以及各个接口的配置后,保存配置.在出现路由器名称后,打入enable命令,键入超级登录密码,出现路由器名称(这里假设路由器名称为Cisco2620),待出现Cisco2620#提示符后,表示已经进入特权模式,此时就可以进行路由器的配置了. 2. 配置路由器 键入config terminal,出现提示符Cisco2620(config)#,进入配置模式. (1) 设置密码

屯留县13342209552: cisco路由器如何配置域名解析 -
连平解热: 一般来说,从初始状态开始设置,有以下几步: 1.定义路由器机器名 ----比如要将路由器机器名定义为cisco2600,使用以下命令: ----router> enable ----password:****** ----router# config terminal ----router(config)# hostname cisco2600 2.设置特权...

屯留县13342209552: 以cisco2600路由器为例简述路由器有哪五种配置方式?
连平解热: “配置方式”要怎么理解? 我想应该"配置模式"吧?细想起来是大概算友种吧. 首先开启路由器之后当前模式 叫做“用户模式” 你输入 enable 之后进入的是“特权模式”再输入用户名、密码之后进入的是“配置模式”再输入interface+端口号 后是 “接口配置模式”.还有一种是再“接口配置模式”之下的“子接口配置模式”. 如果我理解得对就好了,如果不对还请吧问题说得更清楚些.

屯留县13342209552: cisco2600的配置参数
连平解热: enable conf 进入全局配置模式.接下来就看你要配什么了.对了,不知道要配什么就按'?'

屯留县13342209552: cisco2600路由器配置
连平解热: 哥们你的需求有问题啊 第二网段的网关怎么会是10.141网段的 . 你可以在内口上设置第二地址解决.至于服务器用静态NAT做就可以了.看你只有一个公网IP只能用端口映射了.

屯留县13342209552: 路由器配置 -
连平解热: 那就不用设置了!` 你拿路由器当交换机使用吧!~ 把从别人家的那根网线直接接入到路由器的后一个孔就行,千万别接在WAN口上就行了!~ 把路由器当交换机使用就行了

屯留县13342209552: 路由器怎样配置
连平解热: 路由器是计算机网络的桥梁,是连接IP网的核心设备.它不仅可以连通不同的网络,还能选择数据传送的路径,并能阻隔非法访问.对初学者来说,路由器的配置并不是一件易事.现以Cisco 2600路由器为例,将Cisco路由器配置的常识介绍给大家. 一、连接 1.用Cisco 2600路由器自带的一条串行电缆将路由器的Console口与1台计算机串口相连. 2.启动Windows 2000后,执行以下操作:“开始→程序→附件→通讯→超级终端”,在“连接描述”对话框的名称一栏中输入超级终端名,点击“确定”.

本站内容来自于网友发表,不代表本站立场,仅表示其个人看法,不对其真实性、正确性、有效性作任何的担保
相关事宜请发邮件给我们
© 星空见康网