复习NA。。单臂路由+DHCP+Vlan实验

拓扑
R(fa0/0)--------(fa0/1)SW-----------PC1(vlan2,连sw24端口)和PC2(vlan3,连sw23端口)
 
 
方法:
SW划两个vlan,R两个子接口做单臂路由,并建立两个DHCP池分别是两个网段分给vlan1 和vlan2;;;;;
 
交换机和路由器的基本命令:
en
conf  t
no ip domain-lookup
line con 0
exec-timeout 0 0
logging syn
exit
 
SW上的命令:
SW:
 
en
conf t
vlan 2
name 2
vlan 3
name 3
exit
int fa 0/24
switchport mode access
switchport access vlan 2
int fa 0/23
switchport mode access
switchport access vlan 3
int fa 0/1
switchport mode trunk
 
 
R路由器上的命令:
R:
en
conf t
int fa 0/0.1
encap dot1q 2
ip add 192.168.1.1 255.255.255.0
int fa 0/0.2
encap dot1q 3
ip add 192.168.2.1 255.255.255.0
exit
int fa 0/0
no sh
no ip add
ip dhcp exc 192.168.1.1                / /保留的地址
ip dhcp exc 192.168.2.1 192.168.2.4      //保留的地址从.1到.4
ip dhcp pool vlan2                //这里的vlan2只是个名字
network 192.168.1.0 255.255.255.0
default-getway    192.168.1.1              //这个池里的默认网关,如果需要还可以配dns等
exit
ip dhcp pool vlan3
network 192.168.2.0 255.255.255.0
default-getway    192.168.2.1
exit
 
 
然后把PC的IP改为自动获取。。。
 
 
 
                
 
 

你可能感兴趣的:(路由,DHCP,VLAN,CCNA,单臂路由)