符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
创新互联建站客户idc服务中心,提供西部信息机房、成都服务器、成都主机托管、成都双线服务器等业务的一站式服务。通过各地的服务中心,我们向成都用户提供优质廉价的产品以及开放、透明、稳定、高性价比的服务,资深网络工程师在机房提供7*24小时标准级技术保障。
1. 实验要求
PC1属于vlan10,PC2属于vlan20,PC3属于vlan30,PC4属于vlan10。
使用dhcp自动获取IP地址。
使用单臂路由技术实现全网互通。
2. 实验步骤
R1:
R1#conf t
Enterconfiguration commands, one per line. End with CNTL/Z.
R1(config)#intfa0/0
R1(config-if)#noshutdown 将接口fa0/0开启
R1(config-if)#intfa0/0.10 进子接口
R1(config-subif)#encapsulationdot1Q 10 改变接口的封装类型,做vlan10的网关
R1(config-subif)#ipadd 192.168.10.1 255.255.255.0 配置IP地址
R1(config-subif)#noshut
R1(config-subif)#intfa0/0.20
R1(config-subif)#encapsulationdot1Q 20
R1(config-subif)#ipadd 192.168.20.1 255.255.255.0
R1(config-subif)#noshut
R1(config-subif)#intfa0/0.30
R1(config-subif)#encapsulationdot1Q 30
R1(config-subif)#ipadd 192.168.30.1 255.255.255.0
R1(config-subif)#noshut
R1(config-subif)#exit
R1(config)#ipdhcp pool v10 建立dhcp地址池
R1(dhcp-config)#network192.168.10.0 /24
R1(dhcp-config)#default-router192.168.10.1
R1(dhcp-config)#DNS-server1.1.1.1
R1(dhcp-config)#exit
R1(config)#ipdhcp pool v20 建立dhcp地址池
R1(dhcp-config)#network192.168.20.0 /24
R1(dhcp-config)#default-router192.168.20.1
R1(dhcp-config)#dns-server2.2.2.2
R1(dhcp-config)#exit
R1(config)#ipdhcp pool v30 建立dhcp地址池
R1(dhcp-config)#network192.168.30.0 /24
R1(dhcp-config)#default-router192.168.30.1
R1(dhcp-config)#dns-server3.3.3.3
R1(dhcp-config)#exit
Sw1:
sw1#conft
sw1(config)#no ip routing 关闭路由功能
sw1(config)#vlan 10,20,30 建立vlan10,20,30,
sw1(config-vlan)#int fa1/0
sw1(config-if)#switchport access vlan 10 将接口加入VLAN中
sw1(config-if)#int fa1/1
sw1(config-if)#switchport access vlan 20
sw1(config-if)#int fa1/15
sw1(config-if)#switchport mode trunk 将接口变为中继口
sw1(config-if)#int fa1/4
sw1(config-if)#switchport mode trunk 将接口变为中继口
sw2:
sw2#conft
sw2(config)#no ip routing 关闭路由功能
sw2(config-vlan)#vlan 10,20,30 建立vlan10,20,30
sw2(config-vlan)#int fa1/2
sw2(config-if)#switchport access vlan 30 将接口加入VLAN中
sw2(config-if)#int fa1/3
sw2(config-if)#switchport access vlan 10
sw2(config-if)#int fa1/15
sw2(config-if)#switchport mode trunk 将接口变为中继口
3. 实验验证结果