I am currently completing an assignment for a Networking course related to parsing PCAP files and outputting some information about the TCP flows. I have pretty much finished but I've been stuck on one part for days. This part of the assignment requires us to estimate the first 3 congestion window sizes in a flow (estimated at the sender) and to comment on how the congestion window size grows. Currently, the congestion window has been described to me as the number of packets sent in one RTT. From this information, I attempted to count the number of transactions from sender to receiver and add it to a list whenever a response was received from the receiver. Though, I seem to be getting a ton of different values even though it seems like I should only be getting a few. Is there anything I'm missing? Any advice or information on how to estimate congestion window sizes in a flow using DPKT in Python 3 would be greatly appreciated. Thanks!
Estimating Congestion Window Sizes in Python using DPKT from pcap file
642 Views Asked by MastermindSS At
0
There are 0 best solutions below
Related Questions in PYTHON
- How to store a date/time in sqlite (or something similar to a date)
- Instagrapi recently showing HTTPError and UnknownError
- How to Retrieve Data from an MySQL Database and Display it in a GUI?
- How to create a regular expression to partition a string that terminates in either ": 45" or ",", without the ": "
- Python Geopandas unable to convert latitude longitude to points
- Influence of Unused FFN on Model Accuracy in PyTorch
- Seeking Python Libraries for Removing Extraneous Characters and Spaces in Text
- Writes to child subprocess.Popen.stdin don't work from within process group?
- Conda has two different python binarys (python and python3) with the same version for a single environment. Why?
- Problem with add new attribute in table with BOTO3 on python
- Can't install packages in python conda environment
- Setting diagonal of a matrix to zero
- List of numbers converted to list of strings to iterate over it. But receiving TypeError messages
- Basic Python Question: Shortening If Statements
- Python and regex, can't understand why some words are left out of the match
Related Questions in TCP
- Java SocketException: Connection reset,. What is the cause?
- How does a server handle multiple requests, and how does is know where to send which response?
- How does pre-allocating a pool of SocketAsyncEventArgs objects upfront improve the performance of a server application in c#
- How to peek or ready to check whether HTTP request or not in TCP proxy?
- How does bash > /dev/tcp/"ip"/"port 0<&1 keep its connection alive?
- Python TCP Server that both sends and or receives data (independently) using asyncio streams?
- Can't remotely connect to my postgresql database on digitalocean
- Why my message doesn't write into the socket when I try to read the response after sending it?
- What makes MQTT a raw tcp connection that we can't run it in the browser?
- ImGui rendering wrong characters (characters received from tcp sockets)
- TCP/IP Server Using sockets Java
- C# tcp socket keepalive I want to visit a website, but the specified time is very slow and I cannot access it
- Java TCP socket want to multiple times input with one connection
- How do I receive TCP messages on an android Emulator from a physcal device
- Getting error while using the MessagePattern to communicate between microservices
Related Questions in CONGESTION-CONTROL
- How to install AQM algorithms in ns3
- How does TCP's slow start handle a send rate below network capacity?
- Mininet TCP Congestion Control Losing Its Fairness Upon Reaching 5 Connections?
- congestion avoidance on tcpgraph
- Whitespace allocation in between a given range
- TCP slow start/congestion control behaviour query
- Why is the sender server sending packets larger than the receiver's current window size?
- How to solve the "R2 invalid mem access 'inv'" error when i try to loading the ebpf file named bpf_cubic.c
- How does unordered, unreliable SCTP implement congestion control in the browser (via webrtc)?
- Get cwnd of my TCP connection from a program
- Estimating Congestion Window Sizes in Python using DPKT from pcap file
- Tcp congestion avoidance at every node
- Can a client and server use different congestion algorithms when communicating?
- OMNeT++ What TCP flavours support ECN?
- Does network congestion occur when we exceed our network capacity?
Related Questions in DPKT
- TypeError: "'str' object cannot be interpreted as integer using" Python's dpkt and socket modules
- How can I convert a can data blf file to a pcap file
- Why can't I use dpkt.http.Response and dpkt.http.Request at the same time?
- Get Application layer Protocol in dpkt
- How to get payload from a packet with dpkt?
- Convert binary/hex encoded string to an integer
- Estimating Congestion Window Sizes in Python using DPKT from pcap file
- How to calculate payload size by using python dpkt library
- Extract email addresses from pcap file with dpkt
- How do I summarise my pcap's parsed info into its different traffic types?
- How can I parse all the packets in my pcap file instead of one?
- pcap parsing in python2.7
- 'ValueError' object has no attribute '_render_traceback_'
- Can I extract Client Hello information using dpkt.ssl.TLSClientHello?
- Check if packet contains Ethernet layer or a Raw IP packet using DPKT python
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?