不同VLAN间通信是靠路由来实现的
VLAN控制广播域但是不同的VLAN间无法通信
一个VLAN = 一个网段 --> 不同网段通过路由器转发
conf t
int f0/0.1
encapsulation dot1q 10
ip add 10.1.1.254 255.255.255.0
no shut
exitint f0/0.2
encapsulation dot1q 20
ip add 20.1.1.254 255.255.255.0
no shut
exitint f0/0
no shut
conf t
ip dhcp excluded - address 10.1.1.1 10.1.1.99
ip dhcp pool v10
network 10.1.1.0 255.255.255.0
default-router 10.1.1.254
dns-server 40.1.1.1
lease 1 0 0
exit
1)网络瓶颈
2)容易发生单点物理故障(所有的子接口依赖于总物理接口)
3)VLAN间通信的每一个帧都进行单独路由
ICMP没有端口号
网络探测与回馈机制
1)网络探测
2)路由跟踪
Windows:tracert IP地址
Linux或路由:traceroute IP地址
ICMP类型、代码
8:ping请求
0:ping应答
3:目标主机不可达
11、TTL超时
帧头
IP包头
ICMP头
数据
帧尾