Skip to content

_Standard:Ethernet

Cody Robinson edited this page Oct 26, 2017 · 2 revisions

Ethernet

The Ethernet frame is broken up into the following:

Destination MAC Source MAC Type Payload
Where the frame's destination is (MAC) The sending MAC What the frame includes Payload of the frame (the data)

This frame is super simple and you can create a frame in OpenComputers as follows:

local ethernetPacket = {
    "MAC-ADDRESS",
    "MAC-ADDRESS",
    2048,
    "OUR DATA HERE!",
}

-- Now send the Ethernet packet, A.K.A table

Here are the following Types allowed for the 'Type' field

Code Description
31 Routing Information Protocol
2048 InZernet Protocol Version 2
2054 ARP

Other applications can take advantage of (official) code types by submitting an issue.

IPv2 Standards

Ethernet

InZernet Protocol version 2

Protocols

Clone this wiki locally