Skip to main content

A collection of classes that can be used to decom network or PCM based FTI traffic

Summary

  • iNetX : Class for packing and unpacking iNetX objects

  • IENA : Class for packing and unpacking IENA objects

  • SimpleEthernet : A simplified set of classes for Ethernet, IP and UDP packets. These are not fully featured is sufficient for the network systems used in the KAM500 networks

  • Pcap : Class and helper methods for reading pcap files

  • McastSocket : Class to bind to ports to capture multicast packets

Install

Install using the standard setuptools install method

python setup.py install

or clone this repository to your local directory

git clone https://github.com/diarmuidcwc/AcraNetwork.git

Usage

Here are two brief examples on how to create and read a pcap file. Further examples can be viewed in the examples directory or in the unittest folder

To read in a pcap file with multiple ethernet packets all containing an iNetX packet wrapped in UDP

import AcraNetwork.iNetX as inetx
import AcraNetwork.SimpleEthernet as SimpleEthernet
import AcraNetwork.Pcap as pcap

import struct
mypcap = pcap.Pcap("inetx_test.pcap")       # Read the pcap file
for mypcaprecord in mypcap:

        ethpacket = SimpleEthernet.Ethernet()   # Create an Ethernet object
        ethpacket.unpack(mypcaprecord.packet)   # Unpack the pcap record into the eth object
        ippacket =  SimpleEthernet.IP()         # Create an IP packet
        ippacket.unpack(ethpacket.payload)      # Unpack the ethernet payload into the IP packet
        udppacket = SimpleEthernet.UDP()        # Create a UDP packet
        udppacket.unpack(ippacket.payload)      # Unpack the IP payload into the UDP packet
        inetxpacket = inetx.iNetX()             # Create an iNetx object
        inetxpacket.unpack(udppacket.payload)   # Unpack the UDP payload into this iNetX object
        print("INETX: StreamID ={:08X} Sequence = {:8d} PTP Seconds = {}".format(inetxpacket.streamid,inetxpacket.sequence,inetxpacket.ptptimeseconds))

To Make a Distribution

pip  install --upgrade pip wheel setuptools twine
rm dist/*
python ./setup.py sdist bdist_wheel --universal sdist
twine upload dist/*

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

AcraNetwork-0.17.15.tar.gz (105.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

AcraNetwork-0.17.15-py2.py3-none-any.whl (109.3 kB view details)

Uploaded Python 2Python 3

File details

Details for the file AcraNetwork-0.17.15.tar.gz.

File metadata

  • Download URL: AcraNetwork-0.17.15.tar.gz
  • Upload date:
  • Size: 105.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for AcraNetwork-0.17.15.tar.gz
Algorithm Hash digest
SHA256 d198292d844b76761431c8938a3874413eed9321c20b80cae92ae31256cf2443
MD5 daa6d7b849c8188cff020596e71fc934
BLAKE2b-256 02173624bcdfd8aa67550d7b83bf0e0bf710a009e7aad6627f1520b058359db9

See more details on using hashes here.

File details

Details for the file AcraNetwork-0.17.15-py2.py3-none-any.whl.

File metadata

  • Download URL: AcraNetwork-0.17.15-py2.py3-none-any.whl
  • Upload date:
  • Size: 109.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for AcraNetwork-0.17.15-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b122a63a18f12c4bfe6776b2bc61ccf55625bfeb70dbf258d899faea02b766c8
MD5 bf7ba459b489a0057b98b2e20ff961ba
BLAKE2b-256 d4c16750b995f9bc4de999eea876ed2879822405087ca4ec260c5b22176ee366

See more details on using hashes here.

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page