Thanks for the info. On Sat, Feb 19, 2022 at 9:54 AM Kumar Ash kumaraish@users.sourceforge.net wrote: First of all, thank you for the wonderful library !!! I don't have permission to create ticket, but in latest version (0.6.0 Nov 05 '21), there is an issue in diameter.py::getPacket()::lineNo1069. It is reading extra 4 bytes. while bytes_recd < msg_len - 4: chunk = existing_connection.recv(min(msg_len - bytes_recd, 2048)) The line should be - while bytes_recd < msg_len - 4: chunk = existing_connection.recv(min(msg_len...
Please check in wireshark dictionary folder if that AVP exist. If not - then you need to add it yourself or update In my dictionary (...wireshark/diameter/dictionary.xml) it is <avp name="Emergency-Services" code="1538" mandatory="mustnot" may-encrypt="no" vendor-bit="must" vendor-id="TGPP"> So you might need to add vendor to the line msg.add("Emergency-Services", 1, "TGPP") or msg.add("Emergency-Services", 1, vendor="TGPP")</avp> Note: AVP is named "Emergency-Services" in my dict (not "Emergncy-Services")....
Please check in wireshark dictionary folder if that AVP exist. If not - then you need to add it yourself or update In my dictionary (...wireshark/diameter/dictionary.xml) it is <avp name="Emergency-Services" code="1538" mandatory="mustnot" may-encrypt="no" vendor-bit="must" vendor-id="TGPP"> So you might need to add vendor to the line msg.add("Emergncy-Services", 1, "TGPP") or msg.add("Emergncy-Services", 1, vendor="TGPP")</avp> On Fri, Jan 7, 2022 at 6:56 PM Naseem Rahman naseemr@users.sourceforge.net...
HSS simulator
HSS sim PUSH
Release
PEP-8 partial
Version bump
ARM (orange pi) eapcalc
DNS DHCP SNMP PCAP
Home
See test_eap in py3/test folder If you are still stuck, explain exactly what you are trying to do (or better yet, send me what you got so far so I can make your test code working) I added the EAP-AKA client demo (EAP-SIM was not needed by OP).
There is python3 version. With python3 there is an eap module you can use to calculate whatever you need See test_eap in py3/test folder If you are still stuck, explain exactly what you are trying to do (or better yet, send me what you got so far so I can make your test code working)
There is python3 version. With python3 there is an eap module you can use to calculate whatever you need See test_eap in py3/test folder If you are still stuck, explain exactly what you are trying to do (or better yet, send me what you got so far so I can make your test code working) On Sun, Oct 31, 2021 at 2:53 AM Naseem Rahman naseemr@users.sourceforge.net wrote: Anyone has any script that calculate EAP SIM in pythonv3? Sent from sourceforge.net because you indicated interest in https://sourceforge.net/p/pyprotosim/wiki/Home/...
documentation update
Are you compiling for linux on windows? Please make sure that you include correct path to python.h in build script (compile.sh) Path is hardcoded for my machine, Change it to match your setup Also check that you have all required programs/packages installed (listed in comments) I'll assume that you work on linux In script, I use python 3.6, so if you use newer python, please adjust path from CFLAGS3="-O2 -Wall -fPIC -I/usr/include/python3.6 -shared" to something matching your setup
It seems to be missing from the repo. I need to check for it on my dev machine. Within a few days, I'll upload the new one (I'll wrote new one if this one does not work) Thanks for finding this problem for me.
New version with included tool is there.
0.5.3 release
documentation update
It seems to be missing from the repo. I need to check for it on my dev machine. Within a few days, I'll upload the new one (I'll wrote new one if this one does not work) Thanks for finding this problem for me. On Mon, Apr 12, 2021 at 11:33 PM Naseem Rahman naseemr@users.sourceforge.net wrote: For Python3 version, Is there a tool_EAP_decode.py ? Sent from sourceforge.net because you indicated interest in https://sourceforge.net/p/pyprotosim/wiki/Home/ To unsubscribe from further messages, please visit...
Old python2 code is not directly compatible with new python 3 code Supported python is clearly marked by folder name in latest release (py2, py3) For a working py3 diameter client, take a look at the source code folder https://sourceforge.net/p/pyprotosim/code-0/ci/default/tree/py3/sample/
eap fixes
getPacket, grouped AVPs
added radius tool
release notes
diameter sample
renaming & fixing
missing files
fixing ceap build
python3 support
Initial push
Something is wrong here. Easiest way is to send me snoop+source whatever you are...
OK. Let me state clearly how I undestood your issue: You have a RADIUS client. Radius...
OK. Let me state clearly how I undestood your issue: You have a RADIUS client. Radius...
Something is wrong here. Easiest way is to send me snoop+source whatever you are...
Something is wrong here. Easiest way is to send me snoop+source whatever you are...
Currently I'm playing with using Wireshark diameter dictionary, but there are several...
Currently I'm playing with using Wireshark diameter dictionary, but there are several...
Currently I'm playing with using Wireshark diameter dictionary, but there are several...
Directly using wireshark dictionary seems less and less a possibility. For example,...
Some thoughts about using Wireshark dictionary as suggested by Yordan Tsolov and...
Some thoughts about using Wireshark dictionary as suggested by Yordan Tsolov and...
Some thoughts about using Wireshark dictionary as suggested by Yordan Tsolov and...
One note about receiving TCP traffic (when you have multiple messages or high load)...
One note about receiving TCP traffic (when you have multiple messages or high load)...
Home
One note about receiving TCP traffic (when you have multiple messages or high load)...
One note about receiving TCP traffic (when you have multiple messages or high load)...
One note about receiving TCP traffic (when you have multiple messages or high load)...
Is it possible to use it in IPv6 environment? I tried, but it failed. Is there something...
PCRF simulator