https://github.com/fgrehm/pucrs-network-simulations
Experimenting with networking conditions
https://github.com/fgrehm/pucrs-network-simulations
Last synced: 8 months ago
JSON representation
Experimenting with networking conditions
- Host: GitHub
- URL: https://github.com/fgrehm/pucrs-network-simulations
- Owner: fgrehm
- License: mit
- Created: 2015-10-09T21:43:53.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-29T16:21:21.000Z (over 10 years ago)
- Last Synced: 2025-03-30T06:11:18.888Z (about 1 year ago)
- Language: Shell
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pucrs-network-simulations
Experimenting with networking conditions
## Start the VMs
```sh
vagrant up --no-parallel
```
## TCP tests
Start the server:
```sh
vagrant ssh server -c 'iperf -s'
```
Log in into the client box:
```sh
vagrant ssh client
```
Capture data:
```sh
cd /vagrant
scripts/run-all-tcp-tests
```
## UDP tests
Start the server:
```sh
vagrant ssh server -c 'iperf -s -u'
```
Log in into the client box:
```sh
vagrant ssh client
```
Capture data:
```sh
cd /vagrant
scripts/run-all-udp-tests
```