diff --git a/d41-Wide-Area-Networking.md b/d41-Wide-Area-Networking.md index d5ddfad..a65ecb8 100644 --- a/d41-Wide-Area-Networking.md +++ b/d41-Wide-Area-Networking.md @@ -91,4 +91,17 @@ WAN技术的另一种流行分类,涉及包交换网络(packet-switched netw 在广播网络的情况下,`Layer 3`的解析,使用MAC地址作为`Layer 2`的地址,且MAC地址也必须被解析到IPv4地址。这是通过地址解析协议(Address Resolution Protocol, ARP)完成的。在基于广播的网络中,设备通过指定其想要与其进行通信的设备(通常经由DNS学习到),及询问特定于那些设备的MAC地址,而广播出解析请求。对地址解析请求的响应,是经由单播并包含了所请求的MAC地址(In a Broadcast-based network, the devices broadcast the requests by specifying the devices it wants to communicate with(typically learned via DNS) and asking for the MAC addresses specific to those devices. The reply is via Unicast and includes the requested MAC addresses)。 +在非广播多路访问环境中,仍需要将`Layer 3`地址(IP地址)绑定到`Layer 2`地址(数据链路连接标识符)。这可通过使用反向ARP的一种自动化方式完成(This can be done in an automated fashion using Inverse ARP)。此操作用于将远端的`Layer 3`地址解析到`Layer 2`地址,并仅用于本地。反向ARP可用在帧中继环境中。反向ARP作为一种在非广播多路复用环境中`Layer 3`到`Layer 2`解析的方案,问题在于其受限于直接连接的设备。这就造成在部分网状网络(partial-mesh networks,其中并非所有设备都是直接连接的)中的问题。 + +非广播多路服务的接口有两种 -- 多点与点对点接口,如下图41.2所示。多点接口要求某种`Layer 3`到`Layer 2`的解析方法。顾名思义,多点接口可作为多个`Layer 2`电路的端节点(As its name implies, it can be the termination point of multiple Layer 2 circuits)。 + +![非广播多路访问接口类型](images/4102.png) + +*图 41.2 - 非广播多路访问接口类型* + +在设备的主要物理接口上配置了帧中继时,那个接口将默认成为多点的。而在某个帧中继物理接口上创建了一个子接口时,创建它的选项,就意味着多点存在了(If a subinterface is created on a Frame Relay physical interface, the option of creating it as Multipoint exists)。对于物理接口与子接口(逻辑接口?),都必须配置上`Layer 3`到`Layer 2`的解析。在帧中继中,有两个选项来完成此解析: + +- 反向ARP(Inverse ARP) +- 静态映射(Statically map) + diff --git a/images/4102.png b/images/4102.png new file mode 100644 index 0000000..c0f280b Binary files /dev/null and b/images/4102.png differ