范文无忧网范文学习范文大全

Cisco路由器基本配置命令

07月29日 编辑 fanwen51.com

[cisco 2600系列路由器的配置文件startupconfig保存在哪个文件里]flash:/ 放的是cisco的IOS系统文件 nvram:/ 放的是启动时自动加载的配置文件,也就是startup-config system:/ 也就是交换机/路由器的内存ram,放的是当前运行的配置文件,即running-...+阅读

Cisco路由器基本配置命令

pc1 192.168.1.1 /24

R1与PC 192.168.1.254/24

R1与R2 10.10.10.1/30

R2与R1 10.10.10.2/30

R2与PC 192.168.2.254/24

pc2 192.168.2.1 /24

R1

conf t

int f0/0

ip add 192.168.1.254 255.255.255.0

int f0/1

ip add 10.10.10.1 255.255.255.252

ip rou 192.168.2.0 255.255.255.0 10.10.10.2

R1

conf t

int f0/0

ip add 192.168.2.254 255.255.255.0

int f0/1

ip add 10.10.10.2 255.255.255.252

ip rou 192.168.1.0 255.255.255.0 10.10.10.1

就样写个静态就可以通了

跪思科路由器配置代码

主机0

配IP:192.168.1.100 255.255.255.0

网关:192.168.1.1

路由器2的配置

ena

conf t

int f0/0

ip add 192.168.1.1 255.255.255.0

no shu

exit

int s0/0/0

clock rate 64000

ip add 192.168.2.1 255.255.255.0

no shu

exit

conf t

ip route 192.168.6.0 255.255.255.0 192.168.2.2

ip route 192.168.5.0 255.255.255.0 192.168.2.2

exit

wr

路由器0的配置

ena

conf t

int s0/2/0

clock rate 64000

ip add 192.168.2.2 255.255.255.0

no shu

exit

int s0/1/0

clock rate 64000

ip add 192.168.3.1 255.255.255.0

no shu

exit

int s0/0/0

clock rate 64000

ip add 192.168.4.1 255.255.255.0

no shu

exit

wr

路由器1的配置

ena

conf t

int s0/0/0

clock rate 64000

ip add 192.168.4.2 255.255.255.0

no shu

exit

int f0/0

ip add 192.168.5.1 255.255.255.0

no shu

exit

conf t

ip route 192.168.6.0 255.255.255.0 192.168.4.1

ip route 192.168.1.0 255.255.255.0 192.168.4.1

wr

主机2

配ip:192.168.5.2 255.255.255.0

网关:192.168.5.1

路由器3的配置

ena

conf t

int s0/0/0

clock rate 64000

ip add 192.168.3.2 255.255.255.0

no shu

exit

int f0/0

ip add 192.168.6.1 255.255.255.0

no shu

exit

conf t

ip route 192.168.5.0 255.255.255.0 192.168.3.1

ip route 192.168.1.0 255.255.255.0 192.168.3.1

wr

主机1的配置

配ip:192.168.6.2 255.255.255.0

网关:192.168.1.1

cisco路由器配置

这个图是 典型的单臂路由

大概思路是

把所有PC机放在相同VLAN 笔记本放在相同VLAN 这个我相信你一定会

现在开始说路由器的配置,这里要用到一个子接口的概念 比如一个f0/0端口 他的子接口就是f0/0.X 这个X可以是任何数字 我们可以给它封装DOT1Q协议和指定VLAN 然后配置IP 来让他可以充当VLAN中计算机的网关

比如你switch0 的F0/10 和Router1的F0/0口连接 配置命令如下 首先是路由器

Router>en

Router#conf t

Router(config)#interface f0/0

Router(config-if)#no sh

Router(config-if)#int f0/0.1

Router(config-subif)#encapsulation dot1Q 2 (封装协议 后面的2 代表Vlan号 这里2是代表PC的vlan)

Router(config-subif)#ip address 192.168.1.1 255.255.255.0

Router(config-subif)#int f0/0.2

Router(config-subif)#encapsulation dot1Q 3 (为vlan3 也就是笔记本的vlan 封装)

Router(config-subif)#ip address 192.168.2.1 255.255.255.0

在把PC机与笔记本所在的VLAN封装好并配置IP后 路由器的配置就完毕了

需要注意的是 1,交换机与路由器相连的线路必须为Trunk线路

2,PC机的网关和笔记本的网管必须是对应的子接口的IP地址 例如我这里的Vlan2 网关是192.168.1.1

好了 还有什么问题 再问我 打很多很累的 谢谢给分吧!

延伸阅读:

Cisco路由器基本设置过程步骤enable configure terminal no ip domain-lookup line console 0 logging synchronous exec-timeout 0 0 no login line aux 0 logging synchronous exec-timeout 0 0 no lo...

如何用SecureCRT配置cisco路由器啊设置步骤: 1. 2个网线,一个网口转串口, 一个串口转USB,网口一定要连接AP CONSOLE 口 2. 打开 SecureCRT ,参数如下: port对应 设备管理--》端口,如下图: 然后进行连接, 在里面敲入...

Cisco路由器拨号上网设置注:ISP和客户端相连的端口需要启用PPPOE、PPPOE enable、no ip address ISP路由器配置如下: vpdn enable vpdn-group 1 accept-dialin protocol pppoe virtual-template 1 (调...

思科路由器配置这个利用了Cisco路由器静态路由优先级高于动态路由的特点。(假设metric=1优先级最高) 1、 在路由器4.1上增加一条静态路由:ip route 192.168.3.2/32 0.0.0.0 metric 1(黑洞路由),...

思科路由器全网配置看题应该是技能大赛的练习题PC IP就不说了 不会再问。 题错了 R1配置 ena (时间长了记不住了 用Tab补齐。) con ter (时间长了记不住了 用Tab补齐。) int f0 (看路由器端口是几就...

cisco路由器配置这个图是 典型的单臂路由 大概思路是 把所有PC机放在相同VLAN 笔记本放在相同VLAN 这个我相信你一定会 现在开始说路由器的配置,这里要用到一个子接口的概念 比如一个f0/0端...

Cisco路由器一般同时接入的用户不是太多的话,可以选用CISCO2610路由器和NM-8AM模块。CISCO2610有一个网络插槽和两个WIC槽,自带一个10M的以太网口。NM-8AM是一个网络模块提供8个电话的接...

如何进入cisco路由器设置如何进入cisco路由器设置,Cisco路由器如何设置DHCP作用域???从安全的角度考虑,cisco IOS 软件将EXEC会话分为用户(USER)模式和特权(privileged)模式。 USER模式的特性: 用户模式仅允许...

路由器怎么配置路由器怎么配置,如何设置无线路由器网络连接:2501,2522的详细配置 CISCO 路 由 器 的 一 般 配 置 -- 路 由 器 是 计 算 机 网 络 的 桥 梁, 通 过 它 不 仅 可 以 连 通 不...

推荐阅读
图文推荐
栏目列表