udp traffic
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 800
IP Traffic Meter 0.1
IP Traffic Meter is a traffic counter for IPv4 addresses. more>>
IP Traffic Meter is a traffic counter for IPv4 addresses. It uses the DB4 database from Berkeley to keep its counters, the pcap library for monitoring, and the gd library from Boutel to create graphics. The results are displayed in JPEG graphics on an HTML webpage.
Enhancements:
- With ipmeter you can monitor the traffic made by some IPs. It produces daily, weekly, monthly and yearly statistics into jpg graphics. It uses db4 database from Berkeley to keep its internal counters, and gd library from Boutell to create jpg graphic.
<<lessEnhancements:
- With ipmeter you can monitor the traffic made by some IPs. It produces daily, weekly, monthly and yearly statistics into jpg graphics. It uses db4 database from Berkeley to keep its internal counters, and gd library from Boutell to create jpg graphic.
Download (0.068MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1219 downloads
check_tcptraffic 1.1
check_tcptraffic is a simple Nagios plugin to monitor network traffic on Linux systems. more>>
check_tcptraffic is a simple Nagios plugin to monitor network traffic on Linux systems.
Usage:
usage:
-c crit critical
-w warn warning
-i iface network interface
-r initialize
-v verbose
<<lessUsage:
usage:
-c crit critical
-w warn warning
-i iface network interface
-r initialize
-v verbose
Download (0.009MB)
Added: 2007-04-29 License: GPL (GNU General Public License) Price:
911 downloads
UDP Bridge 1.0
UDP-Bridge is a transparent proxy for UDP traffic, designed for use with Linux 2.2.x kernels. more>>
UDP-Bridge is a transparent proxy for UDP traffic, designed for use with Linux 2.2.x kernels. It provides two-way proxying of UDP packets, to avoid the port number mangling that occurs with Linux IP masquerading. This mangle rule causes problems for some online games.
This program was actually developed to solve a problem with handling Playstation 2 network traffic through a Linux firewall. According to testimonials, most games worked fine with this kind of configuration, but the one that I had tried (ATV Offroad Fury 2) would not work. The problem was apparently the UDP port mangling done by Linux IP masquerading, hence the need for this proxy.
To build the proxy, simply run make from within the source directory:
make
To install the proxy, run the following command as root:
make install
This will install the proxy executable (udpbridge) into /usr/local/sbin, and the man page into /usr/local/man/man8.
The last step is to create and install a configuration file. The included example.conf file is a good template for this. The default location for the configuration file is /etc/udpbridge.conf.
<<lessThis program was actually developed to solve a problem with handling Playstation 2 network traffic through a Linux firewall. According to testimonials, most games worked fine with this kind of configuration, but the one that I had tried (ATV Offroad Fury 2) would not work. The problem was apparently the UDP port mangling done by Linux IP masquerading, hence the need for this proxy.
To build the proxy, simply run make from within the source directory:
make
To install the proxy, run the following command as root:
make install
This will install the proxy executable (udpbridge) into /usr/local/sbin, and the man page into /usr/local/man/man8.
The last step is to create and install a configuration file. The included example.conf file is a good template for this. The default location for the configuration file is /etc/udpbridge.conf.
Download (0.019MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1224 downloads
Python Traffic Camera Analyzer
Python Traffic Camera Analyzer is an automated traffic camera congestion analysis tool. more>>
Python Traffic Analyzer is a Python base class and sample driver script written to retrieve and manipulate images from the TrafficLand cameras and calculate a numeric value representing the current traffic flow.
PyTrAn, an example driver script, an image collector and an image mask creator are available for download from the link shown at the bottom. To use the PyTrAn package begin by choosing a camera that you wish to analyze, for this example well use the camera captioned above.
We want to construct a mask over the area of the image that we are interested in, namely the road. In this particular example the road takes up the majority of the image but that is not always the case.
We will apply the mask over captured images to fine tune the area over which we are looking for movement. To create the mask we will first need to collect a sequential series of snapshots from the target camera. The image_collector.py script was written for this task:
$ mkdir mask_200003
$ cd mask_200003
$ ../image_collector.py 200003 30
Collecting 30 images...
30
Done.
The script is hard coded to capture images on a 2-second delay. The delay is necessary to ensure the image has changed. I believe 2-seconds to be the absolute minimum. Once complete, 30 images numbered 1 through 30 will be created in the current directory.
We construct a mask from these captured images by creating a diff-image for each sequential image pair and then adding each diff-image together. Naturally, a script was written to automate this task as well:
$ ../mask_maker.py 1 30
Creating a diff for each sequential image pair.
Diffing 29
Creating the initial mask from the first image pair.
Adding the rest of the diffs to the mask.
Masking 29
Done.
A number of .diff files are generated in this process. These files repesent the movement between individual sequence pairs.
The .diff files are simply intermediary files, the important bit is the mask file, which is generated as the sum of all differences.
The mask file may be dirty (as in this case) and require manual cleanup. The basic shape of the road however is clearly visible, evidence that we can with minimal effort automate the mask generation process. Also, this run was conducted at night, day-time images yield better results.
There are a few final steps we need to take before we can use the example PyTrAn driver script. First we need to convert the mask to ASCII (noraw) format:
$ pnmnoraw mask > mask_200003.ascii
Then we need to open an ImageMagick display window and get its X-window-ID using xwininfo. Finally, update camera_id and window_id in pytran_sampling.py and launch the driver:
$ ../pytran_sampling.py
DEBUG> grabbing frame from camera 200003
DEBUG> rotating image: pytran.this > pytran.last
DEBUG> refreshing image in 3 secs
taking a 5 minute sample at various thresholds.
DEBUG> grabbing frame from camera 200003
DEBUG> generating frame diff on pytran.last, pytran.this
DEBUG> displaying image: pytran.diff
DEBUG> converting pytran.diff to ascii
DEBUG> calculating traffic ratio...
ratio[5]: 55%
DEBUG> calculating traffic ratio...
ratio[10]: 52%
...
...
5 minute sample[5]: 67.88
5 minute sample[10]: 42.66
5 minute sample[15]: 30.57
5 minute sample[20]: 23.03
5 minute sample[25]: 18.39
5 minute sample[30]: 14.79
5 minute sample[35]: 12.42
5 minute sample[40]: 10.53
5 minute sample[45]: 9.06
5 minute sample[50]: 7.85
The sampling script will take 5 minute samples at varying color thresholds. The optimal threshold must be manually chosen. Furthermore, you will need to sample the traffic ratios during both heavy and light traffic times to get a good feel for your acceptable range. Also, keep in mind that the traffic ratio value is simply the percent change detected, or in other words the movement detected within the masked region. This means that a completely empty road will register similar values to a road so congested it looks like a parking lot. The time of day can be combined with the traffic ration to determine the logical truth.
With this task implemented and abstracted more complex systems can be built. When I find the time Id like to create a system that will take multiple potential travel routes and times, and during the travel time e-mail the traveler with the best route to take. Another idea I had would be to record the traffic flow values for each camera, for each day and for each half hour interval. Travelers and other interested parties can then analyze traffic patterns to determine the fastest route dependant on date/time.
<<lessPyTrAn, an example driver script, an image collector and an image mask creator are available for download from the link shown at the bottom. To use the PyTrAn package begin by choosing a camera that you wish to analyze, for this example well use the camera captioned above.
We want to construct a mask over the area of the image that we are interested in, namely the road. In this particular example the road takes up the majority of the image but that is not always the case.
We will apply the mask over captured images to fine tune the area over which we are looking for movement. To create the mask we will first need to collect a sequential series of snapshots from the target camera. The image_collector.py script was written for this task:
$ mkdir mask_200003
$ cd mask_200003
$ ../image_collector.py 200003 30
Collecting 30 images...
30
Done.
The script is hard coded to capture images on a 2-second delay. The delay is necessary to ensure the image has changed. I believe 2-seconds to be the absolute minimum. Once complete, 30 images numbered 1 through 30 will be created in the current directory.
We construct a mask from these captured images by creating a diff-image for each sequential image pair and then adding each diff-image together. Naturally, a script was written to automate this task as well:
$ ../mask_maker.py 1 30
Creating a diff for each sequential image pair.
Diffing 29
Creating the initial mask from the first image pair.
Adding the rest of the diffs to the mask.
Masking 29
Done.
A number of .diff files are generated in this process. These files repesent the movement between individual sequence pairs.
The .diff files are simply intermediary files, the important bit is the mask file, which is generated as the sum of all differences.
The mask file may be dirty (as in this case) and require manual cleanup. The basic shape of the road however is clearly visible, evidence that we can with minimal effort automate the mask generation process. Also, this run was conducted at night, day-time images yield better results.
There are a few final steps we need to take before we can use the example PyTrAn driver script. First we need to convert the mask to ASCII (noraw) format:
$ pnmnoraw mask > mask_200003.ascii
Then we need to open an ImageMagick display window and get its X-window-ID using xwininfo. Finally, update camera_id and window_id in pytran_sampling.py and launch the driver:
$ ../pytran_sampling.py
DEBUG> grabbing frame from camera 200003
DEBUG> rotating image: pytran.this > pytran.last
DEBUG> refreshing image in 3 secs
taking a 5 minute sample at various thresholds.
DEBUG> grabbing frame from camera 200003
DEBUG> generating frame diff on pytran.last, pytran.this
DEBUG> displaying image: pytran.diff
DEBUG> converting pytran.diff to ascii
DEBUG> calculating traffic ratio...
ratio[5]: 55%
DEBUG> calculating traffic ratio...
ratio[10]: 52%
...
...
5 minute sample[5]: 67.88
5 minute sample[10]: 42.66
5 minute sample[15]: 30.57
5 minute sample[20]: 23.03
5 minute sample[25]: 18.39
5 minute sample[30]: 14.79
5 minute sample[35]: 12.42
5 minute sample[40]: 10.53
5 minute sample[45]: 9.06
5 minute sample[50]: 7.85
The sampling script will take 5 minute samples at varying color thresholds. The optimal threshold must be manually chosen. Furthermore, you will need to sample the traffic ratios during both heavy and light traffic times to get a good feel for your acceptable range. Also, keep in mind that the traffic ratio value is simply the percent change detected, or in other words the movement detected within the masked region. This means that a completely empty road will register similar values to a road so congested it looks like a parking lot. The time of day can be combined with the traffic ration to determine the logical truth.
With this task implemented and abstracted more complex systems can be built. When I find the time Id like to create a system that will take multiple potential travel routes and times, and during the travel time e-mail the traveler with the best route to take. Another idea I had would be to record the traffic flow values for each camera, for each day and for each half hour interval. Travelers and other interested parties can then analyze traffic patterns to determine the fastest route dependant on date/time.
Download (0.003MB)
Added: 2005-05-20 License: GPL (GNU General Public License) Price:
1620 downloads
Traffic Prioritizer 0.4
Traffic Prioritizer is designed to run on a Linux router and prioritize users traffic by their bandwidth consumption. more>>
Traffic Prioritizer is designed to run on a Linux router and prioritize users traffic by their bandwidth consumption.
It is aimed to shape the "bandwidth greedy" clients (P2P, YouTube, IPTV, etc.) so that the ones who are just browsing do not lack bandwidth.
<<lessIt is aimed to shape the "bandwidth greedy" clients (P2P, YouTube, IPTV, etc.) so that the ones who are just browsing do not lack bandwidth.
Download (0.009MB)
Added: 2007-08-07 License: GPL v3 Price:
820 downloads
Air Traffic Controller 0.3.3
Air Traffic Controller is an air traffic controller simulation. more>>
Air Traffic Controller project is an air traffic controller simulation.
Airtraffic is a game/simulator that puts you into an air traffic controllers hotseat. Planes come into your airspace from various directions and you have to guide them safely to their destinations. It uses Python, Corba, and GTK.
<<lessAirtraffic is a game/simulator that puts you into an air traffic controllers hotseat. Planes come into your airspace from various directions and you have to guide them safely to their destinations. It uses Python, Corba, and GTK.
Download (0.025MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
716 downloads
Network Traffic Analyzer 1.0
Network Traffic Analyzer analyzes the network traffic on multiple network devices and creates HTML statistics. more>>
Network Traffic Analyzer analyzes the network traffic on multiple network devices and creates HTML statistics with some network usage graphs. Sometimes it is good to know, how the network is used, how many bytes were received and how many bytes were sent.Therefore, here is Network Traffic Analyzer, which creates simple network usage statistics.
Such statistics can tell you, how good your network connection really is (who cares about what Internet provider say, when was the network down, which time is the best time for downloading large packages of data etc. etc. Or with this software you can just better imagine, how many traffic can your home computer generate.
<<lessSuch statistics can tell you, how good your network connection really is (who cares about what Internet provider say, when was the network down, which time is the best time for downloading large packages of data etc. etc. Or with this software you can just better imagine, how many traffic can your home computer generate.
Download (0.026MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
1233 downloads
udpeq 0.1
udpeq is a program that balances UDP traffic over parallel routes. more>>
udpeq is a program that balances UDP traffic over parallel routes. This is useful if you want to connect two endpoints through several slow or unreliable channels. For example, if you have 3 modem lines and a one-way satellite link, you might want to bond all of these together to form a faster, more reliable "virtual" connection.
udpeq by itself just shuttles UDP packets between two endpoints. You will almost certainly want to use a higher-level tunnel on top of udpeq to provide a "real" IP connection. CIPE or OPENVPN are perfect for this job.
Existing solutions of this nature (for example, multi-link ppp) tend to make simplistic assumptions about the bandwidth and availability of the channels. udpeq attempts to dynamically adjust to changing conditions, being as robust as possible while still being able to maximize throughput.
<<lessudpeq by itself just shuttles UDP packets between two endpoints. You will almost certainly want to use a higher-level tunnel on top of udpeq to provide a "real" IP connection. CIPE or OPENVPN are perfect for this job.
Existing solutions of this nature (for example, multi-link ppp) tend to make simplistic assumptions about the bandwidth and availability of the channels. udpeq attempts to dynamically adjust to changing conditions, being as robust as possible while still being able to maximize throughput.
Download (0.048MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1206 downloads
Network Traffic Analyser 0.2.2
Network Traffic Analyser provides a script-driven network traffic monitor. more>>
Network Traffic Analyser provides a script-driven network traffic monitor.
Network Traffic Analyser (formerly known as sniffer) is designed to be an extremely powerful, configurable, and versatile tool for monitoring network traffic.
It can be used as a plain sniffer, as a tool for accounting, dynamic firewall updates, and many more things.
It features scripting support and an event-driven architecture.
The idea behind this project is to create a powerful tool for playing around with network traffic. The basic concepts are simplicity and flexibility. Instead of building tool that does something specific (and does a good job at it), were trying to build a tool that will be able to do whatever you want it to do (and still be good at it :).
To put it very simply, you write a script that will be invoked for every packet that passes through your network. You write your scripts in a Tcl, fully blown, interpreted programming language. That fact guaranties that you wont be constrained in your creativity.
<<lessNetwork Traffic Analyser (formerly known as sniffer) is designed to be an extremely powerful, configurable, and versatile tool for monitoring network traffic.
It can be used as a plain sniffer, as a tool for accounting, dynamic firewall updates, and many more things.
It features scripting support and an event-driven architecture.
The idea behind this project is to create a powerful tool for playing around with network traffic. The basic concepts are simplicity and flexibility. Instead of building tool that does something specific (and does a good job at it), were trying to build a tool that will be able to do whatever you want it to do (and still be good at it :).
To put it very simply, you write a script that will be invoked for every packet that passes through your network. You write your scripts in a Tcl, fully blown, interpreted programming language. That fact guaranties that you wont be constrained in your creativity.
Download (0.11MB)
Added: 2007-02-22 License: GPL (GNU General Public License) Price:
983 downloads
Useful Traffic Accounting Dragon 0.4
Useful Traffic Accounting Dragon is a traffic accounter that actually gives useful information about traffic. more>>
Useful Traffic Accounting Dragon is a traffic accounter that actually gives useful information about traffic instead of stupidly counting incoming/outgoing packets.
Dragon accounts traffic by user, program and timestamp and puts this information into useful correlation.
Dragon is implemented as a Perl script for the backend, using /etc/passwd to automatically get information about user accounts, /proc/net/ to get information about open connections and /proc/ to get information about running processes and which processes currently use which network connection.
All this information can be combined so you can actually see what user caused which traffic using what program and when it happened.
All this information is acquired automatically so the minimal configuration necessary is to tell dragon where it can find its MySQL database.
Enhancements:
Features:
- cleanup on CTRL-C
- add patch for Linux Kernel 2.6.17.7
- for now, graphs are disabled in the webfrontend
- webfrontend has now Total, User and Program tabs
Bugfixes:
- forgot to close a filedescriptor fixed
- use leading zeroes on port numbers in messages about connections that no longer exist
- really fix wait for next minute
<<lessDragon accounts traffic by user, program and timestamp and puts this information into useful correlation.
Dragon is implemented as a Perl script for the backend, using /etc/passwd to automatically get information about user accounts, /proc/net/ to get information about open connections and /proc/ to get information about running processes and which processes currently use which network connection.
All this information can be combined so you can actually see what user caused which traffic using what program and when it happened.
All this information is acquired automatically so the minimal configuration necessary is to tell dragon where it can find its MySQL database.
Enhancements:
Features:
- cleanup on CTRL-C
- add patch for Linux Kernel 2.6.17.7
- for now, graphs are disabled in the webfrontend
- webfrontend has now Total, User and Program tabs
Bugfixes:
- forgot to close a filedescriptor fixed
- use leading zeroes on port numbers in messages about connections that no longer exist
- really fix wait for next minute
Download (0.086MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
1145 downloads
Network Traffic Generator 0.1.3
Network Traffic Generator is a traffic generator that tests routers/firewalls. more>>
This is a traffic generator. It is used to check what massive amounts of traffic of certain type will do to an intervening network.
It does not try to measure throughput or response times. It has been made with the question in mind: If 100 clients does simultaneous TCP transfers for 2 days, will my router break? Or can I configure my firewall while 50 people are doing large TCP transfers through the device?
<<lessIt does not try to measure throughput or response times. It has been made with the question in mind: If 100 clients does simultaneous TCP transfers for 2 days, will my router break? Or can I configure my firewall while 50 people are doing large TCP transfers through the device?
Download (0.19MB)
Added: 2005-04-13 License: GPL (GNU General Public License) Price:
1681 downloads
udpShell 2
udpShell is a remote shell that uses UDP instead of TCP. more>>
udpShell is a remote shell that uses UDP instead of TCP. It uses a client-server architecture (udpShell as the daemon and udpClient as the client).
Installation:
cd src
make
this sould make the work
if you like edit the Makefile to reflect your system, preferences.
<<lessInstallation:
cd src
make
this sould make the work
if you like edit the Makefile to reflect your system, preferences.
Download (0.007MB)
Added: 2006-06-22 License: Freeware Price:
1219 downloads
bytetraf 1.0
bytetraf is a small tool for monitoring traffic to and from your machine. more>>
bytetraf project is a small tool for monitoring traffic to and from your machine.
The following information is printed to stdout at a specified time interval: time, interface, bytes received, bytes transfered, and rate.
<<lessThe following information is printed to stdout at a specified time interval: time, interface, bytes received, bytes transfered, and rate.
Download (0.004MB)
Added: 2006-08-17 License: GPL (GNU General Public License) Price:
1164 downloads
Simple PHP Internet Traffic Shaping 0.0.9b
Simple PHP Internet Traffic Shaping is a PHP Web Interface for managing traffic control queueing disciplines. more>>
Simple PHP Internet Traffic Shaping in short SPITS, is a PHP Web Interface for managing traffic control queueing disciplines (qdiscs) and classes. Iptables rules are used in order to classify the packets. It currently only supports few qdiscs and iptables rules with few matches.
<<less Download (0.017MB)
Added: 2006-09-06 License: GPL (GNU General Public License) Price:
1153 downloads
Simple UDP proxy/pipe 0.3
Simple UDP proxy/pipe is an advanced UDP proxy/datapipe/packets forwarder and modifier with multiple functions. more>>
Simple UDP proxy/pipe is an advanced UDP proxy/datapipe/packets forwarder and modifier with multiple functions.
Multiple clients allowed (you can connect many clients you want to this proxy), creation of ACP files (tcpdump capture files, just like a sniffer), packets forwarding (chat style, each packet is forwarded to all the other clients and server connected), packets injection (the tool opens a specific UDP port where you can send your customized packets which will be sent to the server), hexadecimal visualization and plugins support for the modification and visualization of the packets with some example plugins already included (Zdaemon huffman, Doom huffman, Half-life decoding and one for the replacement of the text strings).
Plugins (which work on both Windows and Linux) are very basic to create and use, just take a look at example_sudp.c for more informations.
<<lessMultiple clients allowed (you can connect many clients you want to this proxy), creation of ACP files (tcpdump capture files, just like a sniffer), packets forwarding (chat style, each packet is forwarded to all the other clients and server connected), packets injection (the tool opens a specific UDP port where you can send your customized packets which will be sent to the server), hexadecimal visualization and plugins support for the modification and visualization of the packets with some example plugins already included (Zdaemon huffman, Doom huffman, Half-life decoding and one for the replacement of the text strings).
Plugins (which work on both Windows and Linux) are very basic to create and use, just take a look at example_sudp.c for more informations.
Download (0.037MB)
Added: 2006-04-18 License: GPL (GNU General Public License) Price:
775 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above udp traffic search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed