【网络工程师】单臂路由与ICMP协议

一、单臂路由

1、单臂路由概述

不同VLAN间通信是靠路由来实现的

VLAN控制广播域但是不同的VLAN间无法通信

一个VLAN = 一个网段 --> 不同网段通过路由器转发

2、单臂路由的配置

conf t
int f0/0.1
encapsulation dot1q 10
ip add 10.1.1.254 255.255.255.0
no shut
exit

int f0/0.2
encapsulation dot1q 20
ip add 20.1.1.254 255.255.255.0
no shut
exit

int f0/0
no shut

3、在三层路由器上部署DHCP服务器

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

4、单臂路由缺点

1)网络瓶颈

2)容易发生单点物理故障(所有的子接口依赖于总物理接口)

3)VLAN间通信的每一个帧都进行单独路由

二、ICMP协议

1、端口号

ICMP没有端口号

2、ICMP作用

网络探测与回馈机制

1)网络探测

2)路由跟踪

Windows:tracert IP地址

Linux或路由:traceroute IP地址

3、错误反馈

1)ICMP头

ICMP类型、代码

2)ICMP类型字段

8:ping请求

0:ping应答

3:目标主机不可达

11、TTL超时

3)ICMP协议封装格式

帧头
IP包头
ICMP头
数据
帧尾

你可能感兴趣的:(网络)