forked from KroMignon/enc28j60-rpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ethertest.py
98 lines (88 loc) · 3.75 KB
/
ethertest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#! /usr/bin/python
# -*- coding: utf-8 -*-
#=============================================================================
# Name: ethertest.py
# Purpose: Microchip ENC28J60 Ethernet Interface test
#
# Author: Fabrice MOUSSET
#
# Created: 2013/01/13
# Licence: GPLv3 or newer
#=============================================================================
# Last commit info:
#
# $LastChangedDate:: xxxx/xx/xx xx:xx:xx $
# $Rev:: $
# $Author:: $
#=============================================================================
# Revision list :
#
# Date By Changes
#
#=============================================================================
"Microchip ENC28J60 Ethernet Interface test"
__version__ = "1.0.0"
__versionTime__ = "xx/xx/xxxx"
__author__ = "Fabrice MOUSSET <[email protected]>"
from enc28j60 import Enc28j60
from ethernet import EthernetFrame
from arp import ArpFrame
from ip import IpFrame
from icmp import IcmpFrame
from udp import UdpFrame
import argparse
import logging
# Création du parseur de paramètres en ligne de commande
parser = argparse.ArgumentParser(description='Programme de test du ENC68J60')
parser.add_argument('-i', '--ip', default='192.168.2.55', help='Adresse IP local au format x.x.x.x')
parser.add_argument('-m', '--mac', default='00:90:3f:00:00:01', help='Adresse MAC local au format xx:xx:xx:xx:xx:xx')
parser.add_argument('-v', '--verbose', default=False, help='Pour afficher les message de debug')
# Gestion des message de debug
logger = logging.getLogger()
logger.setLevel(logging.DEBUG)
steam_handler = logging.StreamHandler()
steam_handler.setLevel(logging.DEBUG)
logger.addHandler(steam_handler)
args = parser.parse_args()
mac = [int(m,16) for m in args.mac.split(':')]
my_ip = args.ip
logger.info('Adresse MAC %s', ":".join('%02x' % m for m in mac))
logger.info('Adresse IP %s', my_ip)
enet = Enc28j60(0,0)
rev_id = enet.Initialize(mac)
logger.info('ENC28J60 Rev ID %d', rev_id)
linkup = enet.isLinkUp
while 1:
if linkup != enet.isLinkUp:
linkup = enet.isLinkUp
logger.info("Link changed")
buf = enet.PacketReceive()
if buf:
frame = EthernetFrame(buf)
logger.info("Type is " + str(frame))
logger.info("Eth source %s - Eth target %s" % (frame.srcMAC, frame.destMAC))
if(frame.isARP):
arp = ArpFrame(frame.payload)
logger.info("ARP Command = %d" % arp.Command)
if(arp.isIP):
logger.info("ARP Source MAC %s" % arp.SenderHarwareAddress)
logger.info("ARP Source IP %s" % arp.SenderProtocolAddress)
logger.info("ARP Target MAC %s" % arp.TargetHarwareAddress)
logger.info("ARP Target IP %s" % arp.TargetProtocolAddress)
if(arp.TargetProtocolAddress == my_ip):
logger.info("My IP !!!!!")
my_reply = frame.make_reply(arp.make_reply(enet.MacAddress), enet.MacAddress)
logger.info("Request = %s" % " ".join('%02x' % b for b in buf))
logger.info("Reply = %s" % " ".join('%02x' % b for b in my_reply))
enet.PacketSend(my_reply)
if(frame.isIPv4):
ipv4 = IpFrame(frame.payload)
logger.info('Type is' + str(ipv4))
if ipv4.isICMP:
icmp = IcmpFrame(ipv4.payload)
if(icmp.isEchoRequest):
logger.info("Send Echo reply")
logger.info("Request = %s" % " ".join('%02x' % b for b in buf))
my_reply = frame.make_reply(ipv4.make_reply(icmp.make_reply()), enet.MacAddress)
logger.info("Reply = %s" % " ".join('%02x' % b for b in my_reply))
enet.PacketSend(my_reply)