RawEther Publisher
The RawEther publisher allows sending raw IPv6 packets with IP header.
Note
|
This publisher only runs on Linux with root privileges |
Parameters
-
Interface — IP of interface to bind to (optional)
-
Protocol — Ethernet protocol to use (optional, default is ETH_P_ALL)
-
Timeout — How long to wait in milliseconds for data/connection (optional, default 3,000)
Examples
Sending data
<StateModel name="TheState"> <State name="initial"> <Action type="output"> <DataModel ref="Frame"/> </Action> <Action type="output"> <DataModel ref="IPHeader"/> </Action> <Action type="output"> <DataModel ref="ProtocolPacket"/> </Action> </State> </StateModel> <Test name="Default"> <!-- ... --> <Publisher class="RawEther"> <Param name="Interface" value="192.168.1.1" /> <Param name="Protocol" value="42" /> </Publisher> </Test>