search for: nistnet

Displaying 12 results from an estimated 12 matches for "nistnet".

Did you mean: istnet
2004 Jan 14
0
Any NISTNet alternative or fix ?
Hi, I need to simulate (with a certain degree of control) common WAN problems like packet loss/duplication, delay and conditions of limited bandwidth. I found that NISTNet is what i need, but it seems the package has not been updated since October, 2000. This is not really a problem as I found NISTNet runs perfectly with Linux kernels up to 2.4.23 (officially 2.4.18 is the latest mentioned in documentation). What then am I complaining about ? Well, it seems that...
2008 Nov 04
1
Some progress, anyway...
...r/www/admin/.htpasswd admin WARNING WARNING WARNING Starting mini_httpd (HTTP only)... cat: can't open '/tmp/mydhcpip': No such file or directory This is pbx (Linux i586 2.6.25.19-astlinux) 11:30:27 pbx login: Now, to get the following packages to build: misdn asterisk-chanmisdn nistnet rhino strace rp-pppoe
2003 Dec 24
0
Re: Simulation with Packet Lost and Packet Delays (How to set up a Linux Router between two subnets?)
...>lost and packet delay. >> >>I think I would need to use a Linux box with two network cards to act as >>a pass-through ethernet bridge. Is it the case? Does this how-to guide >>provides good information in this area? >> >> >http://snad.ncsl.nist.gov/itg/nistnet/ > >Stef > > Hi Stef and others, Thanks. The NISTNET looks like a very decent package. I have tried it briefly on a Red Hat 7.2 and it seems to work fine. I have another basic question and I would if anyone could help me out. Basically, I am trying a setup a Linux router between t...
2007 Apr 18
1
[Bridge] control packet flow
...e diagram below. (Reason for doing this is to watch the behavior of the device under test to certain packets but I cannot control the speed of the packets from the traffic source so I need an intermediary to do that). [PC/traffic initiator] -- [bridge] -- [device under test] I've looked at nistnet, but that would only work for IP packets, and requires you to use it as a router as I understand it, which wouldn't work here. I've also looked at IET which seemed to be what I need, but unless I'm doing something wrong it crashes very badly under RHAT 9.0 and SuSE 9.0. Is there any...
2005 Jan 22
2
network emulation
hi, I am really a newbie in linux traffic control.But i have task to implement a tool similar to the nistnet tool used for netwok emulation tests but which emulates a wireless environment. I was exploring the use of the traffic control subsystem for this task.In this regard i have a few questions i need to post in order to clarify my thoughts on how to do this.I am using tcng to classify traffic and ge...
2004 Mar 18
6
[PATCH] packet delay scheduler
...therdevice.h> +#include <linux/notifier.h> +#include <net/ip.h> +#include <net/route.h> +#include <linux/skbuff.h> +#include <net/sock.h> +#include <net/pkt_sched.h> + +/* Network delay simulator + This scheduler adds a fixed delay to all packets. + Similar to NISTnet and BSD Dummynet. + + It uses byte fifo underneath similar to TBF */ +struct dly_sched_data { + u32 latency; + u32 limit; + struct timer_list timer; + struct Qdisc *qdisc; +}; + +/* Time stamp put into socket buffer control block */ +struct dly_skb_cb { + psched_time_t queuetime; +}; + +/* Enqueue...
2003 Sep 18
3
Multiple Links
Hi all Iam planning to deploy Multiple Links using RH 9.0/ PIII 500Mhz/512MB RAM With all Patches related to Route and rest Mentioned in nano.txt Iam Running BGP 4 with all the ISP, but iam not doing Load balancing the Links Each Link have specific application and specific users. Eth0 is connected to Local Net eth1- ISP1 eth2- ISP2 eth3- ISP3 Now i want to make Specific Routes x.x.x.x
2005 Feb 07
0
[ANNOUNCE] iproute2 - 2.6.10-050207
Update to iproute2 utilities, mostly bug fixes. Only new functionality is integration of the ability to derive netem distribution table from experimental data; simple port from NISTnet. Download from http://developer.osdl.org/dev/iproute2/download/iproute2-050207.tar.gz [Mads Martin Joergensen] Don''t mix address families when flushing [Jean-Marc Ranger] Need to call getline() with null for first usage Don''t overwrite const arg [Stephen Hemminger] Add ex...
2004 Oct 15
4
Emulate WAN
Where can I find examples of configs to emulate WANs, I am looking for slow speeds and high latencies. Thanks
2008 Feb 07
1
Reg. Kernel switching
Hi all, I am a newbie to linux and this is my first mail to this group. We have a PC running Centos version 2.6.9-42.0.2.EL. I needed to load a router software called Nistnet and it would not run properly. It is looking for RTC (Real Time clock) support as a module. I 've gone through the LKM Loadable Kernel module support under Documentation pages of Linux.org and did the following: located the kernel release: uname -r 2.6.9-42.0.2.EL next navigated to the /usr/...
2004 Feb 25
1
Wan Simulation / Bw/Latency testing
Hi, i have a question if linux is able to do the same thing that commercial wan simulators do (which cost 7000 $ or more). Basicly i want to use the following setup. Linux Router Machine 192.168.0.1 192.168.1.1 Eth0 192.168.10.1 Eth5 192.168.2.1 Eth1 192.168.100.1 WEB Server. 192.168.3.1 Eth2
2004 Jul 01
20
[PATCH 2.6] update to network emulation QOS scheduler
...therdevice.h> -#include <linux/notifier.h> -#include <net/ip.h> -#include <net/route.h> -#include <linux/skbuff.h> -#include <net/sock.h> -#include <net/pkt_sched.h> - -/* Network delay simulator - This scheduler adds a fixed delay to all packets. - Similar to NISTnet and BSD Dummynet. - - It uses byte fifo underneath similar to TBF */ -struct dly_sched_data { - u32 latency; - u32 limit; - u32 loss; - struct timer_list timer; - struct Qdisc *qdisc; -}; - -/* Time stamp put into socket buffer control block */ -struct dly_skb_cb { - psched_time_t queuetime; -}; -...