学习笔记-PPP and PPPoE基本概念

PPP and PPPoE基本概念



网络地址的概念

网络是分层的。对等层之间的通讯要靠地址标识。

Data link layer: MAC address or ATM address

IP layer: IP address

TCP: protocol port number



PPPoE 报文结构中的关键字段



| Ethernet Header | PPPoE Header | PPP |



Ethernet Header {

Type; // Specify prococal type, 0x8863 or 0x8864 means PPPoE packet

}



PPPoE Header {

Code; // 标识报文的类型,PADIPADR discoery阶段的报文,或者是Session阶段的报文

SessionId;

}



PPP {

Porotocol; // PPP报文中承载的协议报文类型. LCP, NCP, IP etc.

Code; // 进一步标示协议报文的类别,如LCP中的Configure request

Data; // 数据以单元组的形式出现。每个单元的格式是:type+lenght+data

}



PPPPPPoE的关系

PPP 的建链过程有以下几个步骤:

Establisth --> LCP --> NCP --> Authetication



PPPoEPPP的基础上,多了一层控制。PPPoEDiscoverty Session两个阶段。上述的PPP建链过程发生在Session阶段。



你可能感兴趣的:(通信网络,header,session,layer,网络,通讯,tcp)