单臂路由配置命令

一:思科配置单臂路由 举个例子

第一步:交换机SW1的配置:

(1)在SW1上创建vlan2

SW1(config)#vlan2

SW1(config-vlan)#exit

(2)将SW1的f0/1和f0/2模式设置为access,并分别加入valn1和vlan2

SW1(config)#int f0/1

SW1(config-if)#switchport mode access

SW1(config-if)#switchport access vlan 1

SW1(config)#int f0/2

SW1(config-if)#switchport mode access

SW1(config-if)#switchport access vlan 2

(3)将f0/3的模式设置为trunk并封dot1q

SW1(config)#int f0&#福7;3

SW1(config-if)#switchport trunk encapulation dot1q

SW1(config-if)#switchport mode trunk

第二步:在路由器R1上的配置:

R1(config)#int f0/0

R1(config-if)#no shut

R1(config)#int f0/0.1

R1(config-subif)#encapulation dot1q 1

R1(config-subif)#ip add 192.168.1.1 255.255.255.0

R1(config)#int f0/0.2

R1(config-subif)#encapulation dot1q 2

R1(config-subif)#ip add 192.168.2.1 255.255.255.0

第三步:PC机的配置:

.PC1: IP:192.168.1.2 netmask:255.255.255.0 gateway:192.168.1.1

PC2:IP:192.168.12.2 netmask:255.255.255.0 gateway:192.168.2.1

二:cisco单臂路由命令

你好!

路由器配置:

Router>en

Router#vl da

Router(vlan)#vl 10 na vlan10

Router(vlan)#vl 20 na vlan20

Router(vlan)#vl 30 na vlan30

Router(vlan)#vl 40 na vlan40

Router(vlan)#exit

Router#conf t

Router(config)#in fa 0/0

Router(config-if)#no shut

Router(config-subif)#in fa 0/0.1

Router(config-subif)#encapsulation dot1Q 10

Router(config-subif)#ip add 192.168.1.254 255.255.255.0

Router(config-subif)#no shu

Router(config-subif)#in fa 0/0.2

Router(config-subif)#encapsulation dot1Q 20

Router(config-subif)#ip add 192.168.2.254 255.255.255.0

Router(config-subif)#in fa 0/1

Router(config-if)#no shut

Router(config-subif)#in fa 0/1.1

Router(config-subif)#en do 30

Router(config-subif)#ip add 192.168.3.254 255.255.255.0

Router(config-subif)#in fa 0/1.2

Router(config-subif)#en do 40

Router(config-subif)#ip add 192.168.4.254 255.255.255.0

Router(config-subif)#no shut

左面交换机1:

Switch>en

Switch#vl da

Switch(vlan)#vl 10 name vlan10

Switch(vlan)#vl 20 na vlan20

Switch(vlan)#exit

Switch#conf t

Switch(config)#in fa 0/1

Switch(config-if)#sw mo tr

Switch(config-if)#sw mo acc

Switch(config-if)#sw acc vl 10

Switch(config-if)#in fa 0/3

Switch(config-if)#sw mo acc

Switch(config-if)#sw acc vl 20

右面交换机2:

Switch>en

Switch#vl da

Switch(vlan)#vl 30 na vlan30

Switch(vlan)#vl 40 na vlan40

Switch(vlan)#exit

Switch#conf t

Switch(config)#in fa 0/1

Switch(config-if)#sw mo tr

Switch(config-if)#in fa 0/2

Switch(config-......余下全文>>

三:求这个单臂路由的配置命令

如果是配连通的话,不用那么麻烦,R路由器都直连到交换机. 给路由端口配置两个IP地址就好了.

我用 Cisco packet Tracer 这款模拟软件 思科的. 代码

Router>en

Router#conf t

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

Router(config)#hos

Router(config)#hostname R1

R1(config)#int

R1(config)#interface fa

R1(config)#interface fastEthernet 0/0

R1(config-if)#ip add

R1(config-if)#ip address 192.168.1.1 255.255.255.0

R1(config-if)#no shu

R1(config-if)#no shutdown

R1(config-if)#

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

R1(config-if)#exit

R1(config-if)#exit

R1(config)#int

R1(config)#interface fa

R1(config)#interface fastEthernet 0/1

R1(config-if)#ip ad

R1(config-if)#ip address 192.168.2.1 255.255.255.0

R1(config-if)#no shu

R1(config-if)#no shutdown

R1(config-if)#

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

R1(config-if)#end

R1#

%SYS-5-CONFIG_I: Configured from console by console

R1#wr

Building configuration...

[OK]

R1#

R1#

四:配置单臂路由,交换机上应该怎么配置

按照这个组网拓扑进行配置。

假设:VLAN 1:192.168.1.0/24,GW:192.168.1.1VLAN 2:192.168.2.0/24,GW:192.168.2.1VLAN 3:192.168.3.0/24,GW:192.168.3.1VLAN 4:192.168.4.0/24,GW:192.168.4.1VLAN 5:192.168.5.0/24,GW:192.168.5.1VLAN 6:192.168.6.0/24,GW:192.168.6.1交换机从左边往右边sw1:fa0/1--->pc 1,fa0/2--->p c2 ,fa0/24-->sw2的fa0/24,fa0/23-->R1的fa0/0sw2:fa0/1--->pc 3,fa0/2--->pc 4,fa0/24f-->sw1的fa0/24,fa0/23-->sw3的fa0/23sw3:fa0/1--->pc 5,fa0/2-->pc 6,fa0/23--->sw2的fa0/23配置命令:sw1enablevlan databasevlan 2vlan 3vlan 4vlan 5vlan 6config tint fa0/1switchport mode accessswitchport access vlan 1int fa0/2switchport mode accessswitchport access vlan 2int fa0/24switchport trunk encapsulation dot1qswitchport mode trunkint fa0/23switchport mode trunksw2enablevlan databasevlan 2vlan 3vlan 4vlan 5vlan 6config tint fa0/1switchport mode accessswitchport access vlan 3int fa0/2switchport mode accessswitchport access vlan 4int fa0/24switchport trunk encapsulation dot1qswitchport mode trunkint fa0/23switchport trunk encapsulation dot1qswitchport mode trunksw3enablevlan databasevlan 2vlan 3vlan 4vlan 5vlan 6config tint fa0/1switchport mode accessswitchport access vlan 5int fa0/2switchport mode accessswitchport access vlan 6int fa0/23switchport trunk encapsulation dot1qswitchport mode trunkR1enableconfig tint fa0/0no shutdownint fa0/0.1encapsulation dot1q 1ip address......余下全文>>

五:什么是单臂路由?怎么区别怎么配置?

交换机配置就是创建VLAN,然后更改与路由器相连的接口的模式为trunk 路由配置,比如有两个VLAN:100和200 进入和交换机直连接口的接口配置模式:no shutdown 创建直连接口的子接口,在子接口的接口配置模式下敲命令: encapsulation dot1Q 100(vlan id) ip address X.X.X.X 255.255.255.0 再创建一个子接口 encapsulation dot1Q 200(vlan id) ip address Y.Y.Y.Y 255.255.255.0 在VLAN100的设备的IP就是X.X.X.Z,网关X.X.X.X 如果有更多的VLAN就在继续创建子接口配置就行了

六:单臂路由的vlan下的设置

在一个vlan下,可以通过设置路由接口的secondary ip实现在一个物理网络上两个具有不同网段IP计算机的联通。 [root#PCA root]# ipconfig eth0 10.65.1.1 netmask 255.255.0.0[root#PCB root]# ipconfig eth0 10.66.1.1 netmask 255.255.0.0[root#PCA root]# ping 10.66.1.1 (不通)[root#PCB root]# ping 10.65.1.1 (不通)PCA与PCB是不通的,因为它们在不同的网络段,一个是10.65.0.0/16网络,一个是10.66.0.0/16网络,即netid不同,而不同网络的主机间访问必须通过路由实现。 roa(config)#int f0/0roa(config-if)#ip address 10.65.1.2 255.255.0.0roa(config-if)#no shutroa(config-if)#ip address 10.66.1.2 255.255.0.0 secondaryroa#sh run在显示的信息当中,在FastEthernet0/0的位置,应该能够看到前面设置的两个IP地址。 [root#PCA root]# ping 10.66.1.1 (不通)[root#PCA root]# ping 10.66.1.2 (通)[root#PCB root]# ping 10.65.1.1 (不通)[root#PCB root]# ping 10.65.1.2 (通)为什么PCA和PCB还是不通呢?哦,还没有设置计算机的网关。[root#PCA root]# route add default gw 10.65.1.2[root#PCB root]# route add default gw 10.66.1.2[root#PCA root]# ping 10.66.1.1 (通了)[root#PCB root]# ping 10.65.1.1 (通了) [root#PCA root]# ping 10.66.1.1 (不通了)[root#PCB root]# ping 10.65.1.1 (不通了)由此可以看出,PCA到PCB的发送的数据包是经过路由器的,从路由器f0/0入,再从f0/0出,所以称之为单臂路由。这种情况PCA和PCB在同一个广播域中,对网络带宽不利。如果划分VLAN可以隔离广播域。通过子接口可以实现对不同VLAN的路由。 双击交换机,进入交换机的终端模式:switch>enpassword:switch#conf tswitch(config)#int vlan 1switch(config-if)#ip address 10.65.1.8 255.255.0.0switch(config-if)#exitswitch(config)#ip default-gateway 10.65.1.2switch(config)#endswitch#ping 10.65.1.1 (通)switch#ping 10.66.1.1 (通)断开交换机与路由器的联线,再执行从交换机ping 命令:switch#ping 10.65.1.1 (通)switch#ping 10.66.1.1 (不通)这说明不同网络段IP的联通是要通过路由器的。

七:华为路由器 单臂路由的配置?

在局域网中,通过交换机上配置VLAN可以减少主机通信广播域的范围,当VLAN之间有部分主机需要通信,但交换机不支持三层交换时,可以采用一台 支持802.1Q的路由器实现VLAN的互通.这需要在以太口上建立子接口,分配IP地址作为该VLAN的网关,同时启动802.1Q.

组网:路由器E0端口与交换机的上行trunk端口(第24端口)相连,交换机下行口划分3个VLAN,带若干主机.

1.路由器的配置

[Router]

[Router]inter e0

[Router-Ethernet0]ip add 10.0.0.1 255.255.255.0

[Router-Ethernet0]inter e0. 1 //定义子接口E0.1

[Router-Ethernet0.1]ip add 172.16.1.1 255.255.255.0

[Router-Ethernet0.1]vlan-type dot1q vid 1 //指定以太网子接口属于VLAN1,此命令应用在以太网子接口上。只有配置了该命令之后,以太网子接口才会根据配置的VLAN ID 号在以太网帧头中嵌入VLAN 标签,与该网口相连的交换机接口才能正确处理接收到的帧。

[Router-Ethernet0.1]inter e0. 2 //定义子接口E0.2

[Router-Ethernet0.2]ip add 172.16.2.1 255.255.255.0

[Router-Ethernet0.2]vlan-type dot1q vid 2 //指定以太网子接口属于VLAN2

[Router-Ethernet0.2]inter e0. 3 //定义子接口E0.3

[Router-Ethernet0.3]ip add 172.16.3.1 255.255.255.0

[Router-Ethernet0.3]vlan-type dot1q vid 3 //指定以太网子接口属于VLAN3

[Router-Ethernet0.3]inter e0

[Router-Ethernet0]undo shut

% Interface Ethernet0 is up

[Router-Ethernet0] //用网线将E0端口连到S3026第24端口

%19:46:32: Interface Ethernet0 changed state to UP

%19:46:32: Line protocol ip on interface Ethernet0, changed state to UP

%19:46:32: Line protocol ip on interface Ethernet0.1, changed state to UP

%19:46:32: Line protocol ip on interface Ethernet0.2, changed state to UP

%19:46:32: Line protocol ip on interface Ethernet0.3, changed state to UP

2.交换机(S3026)的配置

sys

Enter syste......余下全文>>

八:请问单臂路由怎样配置?详细配置步骤需要截图

如果是想在两个局域网内连通以及加密的话应该这样配置: 首先在路由上配好ip以及掩码,最好在加一条静态路由,指向对段的路由的外口,下面配置vpn加密以及验证: 首先配置ike协商: 全局配置模式:crypto isakmp policy 1 (1是策略编号)回车进入ike模式:hash md5 (身份验证方式为md5算法) 继续:authentication pre-share (使用预先共享的密钥认证) 继续:crypto isakmp key passwd address x.x.x.x (passwd是预先共享的密码,自己设置,后面是对段的ip地址) 对方的路由器也做相同的配置! 下面是ipsec配置: 全局:crypto access-list 101 permit ip 内网网段 反码 目标网段 反码 (做访问控制列表) 全局:crypto ipsec transform-set(传输模式) 传输模式名字 ah-md5-hmac(身份验证方式) esp-des(加密算法) 对端路由器相同配置! 下面配置端口: 全局:crypto map(容器) 容器名字 ipsec-isakmp 回车进入容器 :match address 101 (匹配访问控制列表101) :set transform-set 传输模式名字 (将加密认证的方式放到容器中) :set peer x.x.x.x(设置对边路由的外口地址) 进入路由外口,使用容器的配置:crypto map 容器名字 至此完成!记住对端路由也要做相同配置!

九:如何在神州数码的交换机上和路由器上配置单臂路由? 请附上命令行。

可以,路由器是采用在端口上开启子接口、给子接口设置ip地址的方式实现单臂路由。而三层交换机是开启虚端口,给虚端口设置ip地址的方式实现单臂路由。单臂路由(router-on-a-stick)是指在路由器的一个接口上通过配置子接口(或“逻辑接口”,并不存在真正物理接口)的方式,实现原来相互隔离的不同VLAN(虚拟局域网)之间的互联互通。

十:配置路由器的时候,静态路由和单臂路由怎么配置?

如果是cisco路由器,静态路由是Route(config)#ip route 目标网段 子网掩码 下一跳地址 单臂路由Route(config)#interface 接口类型 接口号 ——进入接口 Route(config-if)#no shutdown——开启端口 Route(config-if)#interface 接口类型 接口号.子接口号——进入子接口 Route(config-if-sub)#配好ip就行了 然后至少还有一个子接口

扫一扫手机访问

发表评论