思科单臂路由与VTP综合配置

拓扑图:

一、配置交换机vtp

SW1:

SW1>enable
SW1#config t
Enter configuration commands, one per line.  End with CNTL/Z.
SW1(config)#hostname SW1
SW1(config)#vlan 10
SW1(config-vlan)#exit
SW1(config)#vlan 20
SW1(config-vlan)#exit
SW1(config)#vtp mode server      //配置sw1为服务器端
Device mode already VTP SERVER.
SW1(config)#vtp domain cisco       //配置vtp 的域名为Cisco
Domain name already set to cisco.
SW1(config)#vtp password cisco123  //配置密码
Password already set to cisco123
SW1(config)#service password-encryption   //明文密码加密
SW1(config)#interface f0/1
SW1(config-if)#switchport mode trunk  //配置两交换机间链路模式为trunk
SW1(config-if)#switchport trunk allowed vlan all
SW1(config-if)#no shutdown
SW1(config-if)#exit
SW1(config)#interface f0/2
SW1(config-if)#switchport mode access
SW1(config-if)#switchport access vlan 10
SW1(config-if)#no shutdown
SW1(config-if)#exit
SW1(config)#interface f0/3
SW1(config-if)#switchport mode trunk  //配置路由器与交换机相连链路为trunk
SW1(config-if)#switchport trunk allowed vlan all
SW1(config-if)#no shutdown
SW1(config-if)#exit
SW1(config)#

sw2:

SW2>enable
SW2#config t
Enter configuration commands, one per line.  End with CNTL/Z.
SW2(config)#hostname SW2
SW2(config)#vtp mode client
Device mode already VTP CLIENT.
SW2(config)#vtp domain cisco    //配置sw2为vtp客户端模式
Domain name already set to cisco.
SW2(config)#vtp password cisco123  //配置密码
Password already set to cisco123
SW2(config)#service password-encryption  //明文密码加密
SW2(config)#interface f0/1
SW2(config-if)#switchport mode trunk
SW2(config-if)#switchport trunk allowed vlan all
SW2(config-if)#no shutdown
SW2(config-if)#exit
SW2(config)#interface f0/2
SW2(config-if)#switchport mode access
SW2(config-if)#switchport access vlan 20
SW2(config-if)#no shutdown
SW2(config-if)#exit
SW2(config)#

二、在SW2上查看,是否学习到相应的VLAN

SW2(config)#do show vlan

VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
1    default                          active    Fa0/3, Fa0/4, Fa0/5, Fa0/6
                                                Fa0/7, Fa0/8, Fa0/9, Fa0/10
                                                Fa0/11, Fa0/12, Fa0/13, Fa0/14
                                                Fa0/15, Fa0/16, Fa0/17, Fa0/18
                                                Fa0/19, Fa0/20, Fa0/21, Fa0/22
                                                Fa0/23, Fa0/24, Gig1/1, Gig1/2
10   VLAN0010                         active
20   VLAN0020                         active    Fa0/2
1002 fddi-default                     act/unsup
1003 token-ring-default               act/unsup
1004 fddinet-default                  act/unsup
1005 trnet-default                    act/unsup 

VLAN Type  SAID       MTU   Parent RingNo BridgeNo Stp  BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1    enet  100001     1500  -      -      -        -    -        0      0
10   enet  100010     1500  -      -      -        -    -        0      0
20   enet  100020     1500  -      -      -        -    -        0      0
1002 fddi  101002     1500  -      -      -        -    -        0      0
1003 tr    101003     1500  -      -      -        -    -        0      0
1004 fdnet 101004     1500  -      -      -        ieee -        0      0
1005 trnet 101005     1500  -      -      -        ibm  -        0      0   

Remote SPAN VLANs
------------------------------------------------------------------------------

Primary Secondary Type              Ports
------- --------- ----------------- ------------------------------------------
SW2(config)#

由查看结果可知,SW2交换机已从SW1交换机学习到了VLAN 10和VLAN 20。

三、配置路由器子接口

AR1:

AR1>enable
AR1#config t
Enter configuration commands, one per line.  End with CNTL/Z.
AR1(config)#hostname AR1
AR1(config)#interface g0/0   //进入物理接口
AR1(config-if)#no shutdown  //启用该接口
AR1(config-if)#interface g0/0.10  //进入子接口
AR1(config-subif)#encapsulation dot1q 10  // 将子接口封装到VLAN 10中
AR1(config-subif)#ip address 192.168.10.254 255.255.255.0
//配置IP地址
AR1(config-subif)#no shutdown   //启用子接口
AR1(config-subif)#exit
AR1(config)#interface g0/0.20
AR1(config-subif)#encapsulation dot1q 20   //将子接口封装到VLAN 20中
AR1(config-subif)#ip address 192.168.20.254 255.255.255.0
AR1(config-subif)#no shutdown
AR1(config-subif)#exit
AR1(config)#

四、电脑终端ip地址配置

PC1:
192.168.10.1
255.255.255.0
192.168.10.254

PC2:
192.168.20.1
255.255.255.0
192.168.20.254

五、测试

PC1 ping PC2

PC2 ping PC1

原文地址:http://blog.51cto.com/12184141/2314326

时间: 2024-10-11 23:20:36

思科单臂路由与VTP综合配置的相关文章

单臂路由与三层交换机动态配置

实验01:单臂路由 实验目标:通过单臂路由实现VLAN间通信 实验环境:在Cisco模拟器上开启四台PC机和两台交换机和一台台路由器,实               现原来相互隔离的不同VLAN(虚拟局域网)之间的互联互通 实验拓扑图: 实验步骤: 一. 配置IP地址 1. 配置PC0 IP地址 2. 配置PC1 IP地址 3.配置PC2 IP地址 4. 配置PC3 IP地址 二. 划分vlan 1. 配置交换机1 1) Switch>en 2) Switch#configure termina

单臂路由和VTP

单臂路由就是把路由器的一个物理接口划分为多个逻辑接口,可以实现一个接口为不同的网段之间通信,而划分后的逻辑接口被称为子接口 单臂路由 实验案列:配置单臂路由实现VLAN间通信,并使用路由器配置DHCP,动态分配IP地址 (1)设置链路类型:交换机与路由器相连的端口设置为trunk模式 Switch(config)# int f0/1 Switch(config-if)# switchport  access  vlan 10 Switch(config)# int f0/2 Switch(con

思科--单臂路由+DHCP功能

实验名称:单臂路由+DHCP功能 实验目的: 1实现全网互通 2所有PC机终端实现DHCP自动获取功能 拓扑图: 拓扑讲解 设备分类明细表: 终端设备: 二层设备: SW0 SW1 SW2 * 三层设备 前言: Question:什么是单臂路由?Answer:单臂路由(router-on-a-stick)------------- 是指在路由器的一个接口上通过配置子接口(或"逻辑接口",并不存在真正物理接口)的方式,实现原来相互隔离的不同VLAN(虚拟局域网)之间的互联互通 Quest

实操:华为单臂路由和dhcp服务配置实验,简单有效

华为设备单臂路由实验 实验对象:一台路由器.一台交换机.两台PC机实验环境:eNSP 实验原理: interface eth-trunk 1.10dot1q termination vid 10(该接口属于vlan10)ip add 192.168.10.1 24arp broadcast enable(开启arp广播) 注意:在生产环境中,要先查看版本,保存信息,然后根据当前环境确定是否需要升级系统,这是个好习惯 R1 The device is running! <Huawei>syste

思科设备 单臂路由、DHCP的配置

实验如图所示,今天主要是配置单臂路由和DHCP,让PC机自动获取IP地址并实现全网互通 实验步骤: 1.配置PC机的IP地址和网关 2.为交换机添加不同的vlan,为PC机划分不同网段 3.配置单臂路由 实现全网互通(验证) 4.配置DHCP 验证PC机自动获取是否可以得到IP地址 并保证全网互通(验证) 开始操作: 步骤一:配置PC机,这里对PC0举例说明,其他的PC机除了IP和网关,其他都一样 步骤二:配置交换机switch0,添加vlan(下图1):将PC0和PC1加入不同vlan并将接口

思科单臂路由实验配置,实现跨vlan通讯

配置参数如图: PC1 vlan 20 20.1.1.1 网关20.1.1.254 PC2 vlan 30 20.1.1.1 网关30.1.1.254 PC3 vlan 40 40.1.1.1 网关40.1.1.254 R1配置以下3个子接口地址: g0/0.1 20.1.1.254 g0/0.2 30.1.1.254 g0/0.3 40.1.1.254 -----------------分割线------------------------ 1.首先配置PC1~3 ip及网关 2.对SW1进行

思科单臂路由实验

实验拓扑图: pc1和pc2分别接入同一交换机的不同vlan,交换机一端口配置trunk与路由器一端口对接,路由器开启dhcp功能,pc1和pc2分别能够获取到ip,并且通过路由的网关ip实现pc1和pc2互通. 在交换机做配置 1.配置vlan R2-SW#vlan database R2-SW(vlan)#vlan 10 VLAN 10 modified: R2-SW(vlan)#vlan 20 VLAN 20 modified: R2-SW(vlan)#exit R2-SW#conf t

思科单臂路由实例

Network Map GOAL: PC0 communication with PC1Environment:Cisco Packet Tracer Condition 1.Route 12.Switch 13.PC 3 Connection Switch fa0/1------PC0Switch fa0/2------PC1Switch fa0/3------fa0/0 Route Settings Workstation PC0 STATIC IP: 192.168.1.2        

实验-思科设备划VLAN做单臂路由

思科单臂路由 实验拓扑: 步骤: 一,为PC配置IP地址(使用VPCS) 二,在交换机划VLAN,并以access方式将各接口加入到vlan中 SW1: SW2: 三,在路由器上划分子接口做各vlan的网关做单臂路由 R1: 四,测试各vlan的PC间通信,与C5互通测试 实验完成