单臂路由小型实验

单臂路由小型实验        利用vlan

操作方法

  • 01

    打开软件选择两台PC+1台交换机+1台路由器,PC与交换机用直通线连接,交换机与路由器用直通线连接

  • 02

    配置交换机: Switch>en Switch#config Configuring from terminal, memory, or network [terminal]? Enter configuration commands, one per line.  End with CNTL/Z. Switch(config)#exit Switch# %SYS-5-CONFIG_I: Configured from console by console Switch#vlan da Switch#vlan database % Warning: It is recommended to configure VLAN from config mode, as VLAN database mode is being deprecated. Please consult user documentation for configuring VTP/VLAN in config mode. Switch(vlan)#vlan 2 VLAN 2 added: Name: VLAN0002 Switch(vlan)#vlan 3 VLAN 3 added: Name: VLAN0003 Switch(vlan)#exit APPLY completed. Exiting.... Switch#config Configuring from terminal, memory, or network [terminal]? Enter configuration commands, one per line.  End with CNTL/Z. Switch(config)# interface fastEthernet 0/2 Switch(config-if)#switchport access vlan 2 Switch(config-if)#no shutdown Switch(config-if)#exit Switch(config)#interface fastEthernet 0/3 Switch(config-if)#switchport access vlan 3 Switch(config-if)#no shutdown Switch(config-if)#exit Switch(config)#interface fastEthernet 0/1 Switch(config-if)#switchport mode trunk Switch(config-if)#no shutdown Switch(config-if)#exit

  • 03

    配置路由器: Router>en Router#config Configuring from terminal, memory, or network [terminal]? Enter configuration commands, one per line.  End with CNTL/Z. Router(config)#interface fastEthernet 0/0 Router(config-if)#no shutdown Router(config-if)#exit Router(config)#interface fastEthernet 0/0.1 Router(config-subif)#encapsulation dot1Q 2 Router(config-subif)#ip address 192.168.2.1 255.255.255.0 Router(config-subif)#no shutdown Router(config-subif)#exit Router(config)#interface fastEthernet 0/0.2 Router(config-subif)#encapsulation dot1Q 3 Router(config-subif)#ip add 192.168.3.1 255.255.255.0 Router(config-subif)#no shutdown Router(config)#end Router# write Building configuration... [OK]

  • 04

    分别给两台PC配置IP地址和网关 PC1:192.168.2.10    255.255.255.0    192.168.2.1 PC2:192.168.3.10     255.255.255.0    192.168.3.1

(0)

相关推荐

  • vlan间路由单臂路由的配置

    在交换机上划分VLAN后,vlan间的计算机就无法通信了,vlan间的通信需要借助三层设备,我们可以使用路由器来实现这个功能.如果使用路由器我们通常会使用单臂路由,这里介绍单臂路由的配置,实验拓扑图如 ...

  • 华为设备单臂路由配置

    部署了VLAN的交换机可以实现在同一广播域内不同主机之间的通信,但是要想实现不同VLAN间主机通信,就要引入路由技术,可以通过二层交换机配合路由器来实现路由转发. 操作方法 01 首先利用华为模拟器e ...

  • Cisco单臂路由配置 图文实例详解

    单臂路由,即在路由器上设置多个逻辑子接口,每个子接口对应一个vlan。在每个子接口的数据在物理链路上传递都要标记封装。Cisco设备支持ISL和802.1q(dot1Q)协议。华为只支持802.1q。 ...

  • 思科路由器交换机单臂路由连接方式

    CISCO路由器实现单臂路由的配置方法,连接如图,ROUTET的F1/0与SWITCH的F0/0相连,SWITCH的F0/1,F0/2,F0/3分别与PC1,PC2,PC3相连接,PC1分到VLAN1 ...

  • VLAN(单臂路由,三层路由功能)的概况详细介绍

    VLAN(单臂路由,三层路由功能)的概况详细介绍

  • 用Cisco Packet Tracer Student实现单臂路由

    不通vlan之间的通信需要借助三层交换.这个时候就需要用到路由器.这里简单介绍单臂路由的实现. 操作方法 01 打开Cisco Packet Tracer Student 02 用模拟交换机和模拟PC ...

  • 在思科模拟器上怎样搭建“单臂路由”

    单臂路由是指在路由器的一个接口上通过配置子接口并的方式,实现原来相互隔离的不同虚拟局域网之间的互联互通.单臂路由用到路由器子接口.ISL协议和802.1Q协议,实现通信.所以单臂路由也节省了很多开支, ...

  • 思科单臂路由教程

    Cisco单臂路由配置 单臂路由,即在路由器上设置多个逻辑子接口,每个子接口对应一个vlan.在每个子接口的数据在物理链路上传递都要标记封装.Cisco设备支持ISL和802.1q(dot1Q)协议. ...

  • 怎么样配置Cisco单臂路由

    在网络工程师中Cisco设备是我们经常用到的一门技术,这门技术也是每位网络工程师的必修课. 这里我们将以下图开始教大家一步一步配置单臂路由器. 操作方法 01 第一步我们创建vlan: Switch# ...