Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mininet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Olaf Bergmann
mininet
Commits
706229da
Commit
706229da
authored
10 years ago
by
cody burkard
Browse files
Options
Downloads
Patches
Plain Diff
adding example and test for intf.config
parent
cde6c3aa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/intfOptions.py
+49
-0
49 additions, 0 deletions
examples/intfOptions.py
examples/test/test_intfOptions.py
+45
-0
45 additions, 0 deletions
examples/test/test_intfOptions.py
with
94 additions
and
0 deletions
examples/intfOptions.py
0 → 100755
+
49
−
0
View file @
706229da
#!/usr/bin/python
'''
example of using various TCIntf options.
reconfigures a single interface using intf.config()
to use different traffic control commands to test
bandwidth, loss, and delay
'''
from
mininet.net
import
Mininet
from
mininet.log
import
setLogLevel
,
info
from
mininet.link
import
TCLink
def
intfOptions
():
"
run various traffic control commands on a single interface
"
net
=
Mininet
()
net
.
addController
(
'
c0
'
)
h1
=
net
.
addHost
(
'
h1
'
)
h2
=
net
.
addHost
(
'
h2
'
)
s1
=
net
.
addSwitch
(
'
s1
'
)
link1
=
net
.
addLink
(
h1
,
s1
,
cls
=
TCLink
)
link2
=
net
.
addLink
(
h2
,
s1
)
net
.
start
()
# flush out latency from reactive forwarding delay
net
.
pingAll
()
info
(
'
\n
*** Configuring one intf with bandwidth of 5 Mb
\n
'
)
link1
.
intf1
.
config
(
bw
=
5
)
info
(
'
\n
*** Running iperf to test
\n
'
)
net
.
iperf
()
info
(
'
\n
*** Configuring one intf with loss of 50%
\n
'
)
link1
.
intf1
.
config
(
loss
=
50
)
info
(
'
\n
*** Running 20 pings to test
\n
'
)
info
(
net
.
hosts
[
0
].
cmd
(
'
ping -c 20 -i .2 10.0.0.2
'
)
)
info
(
'
\n
*** Configuring one intf with delay of 15ms
\n
'
)
link1
.
intf1
.
config
(
delay
=
'
15ms
'
)
info
(
'
\n
*** Run a ping to confirm delay
'
)
net
.
pingPairFull
()
info
(
'
\n
*** Done testing
\n
'
)
net
.
stop
()
if
__name__
==
'
__main__
'
:
setLogLevel
(
'
info
'
)
intfOptions
()
This diff is collapsed.
Click to expand it.
examples/test/test_intfOptions.py
0 → 100755
+
45
−
0
View file @
706229da
#!/usr/bin/env python
"""
Test for intfOptions.py
"""
import
unittest
import
pexpect
import
sys
class
testIntfOptions
(
unittest
.
TestCase
):
def
testIntfOptions
(
self
):
"
verify that intf.config is correctly limiting traffic
"
p
=
pexpect
.
spawn
(
'
python -m mininet.examples.intfOptions
'
)
tolerance
=
.
8
opts
=
[
"
Results: \[
'
([\d\.]+) .bits/sec
"
,
"
(\d+) packets transmitted, (\d+) received, (\d+)% packet loss, time (\d+)ms
"
,
"
h(\d+)->h(\d+): (\d)/(\d), rtt min/avg/max/mdev ([\d\.]+)/([\d\.]+)/([\d\.]+)/([\d\.]+) ms
"
,
pexpect
.
EOF
]
while
True
:
index
=
p
.
expect
(
opts
,
timeout
=
600
)
if
index
==
0
:
bw
=
float
(
p
.
match
.
group
(
1
)
)
self
.
assertGreaterEqual
(
bw
,
float
(
5
*
tolerance
)
)
self
.
assertLessEqual
(
bw
,
float
(
5
+
5
*
(
1
-
tolerance
)
)
)
elif
index
==
1
:
loss
=
int
(
p
.
match
.
group
(
3
)
)
msg
=
(
"
testing packet loss at 50%
\n
"
,
"
this test will sometimes fail
\n
"
,
"
ran 20 pings accross network
\n
"
,
"
packet loss is %d%%
\n\n
"
%
loss
)
self
.
assertGreaterEqual
(
loss
,
50
*
.
8
,
msg
)
self
.
assertLessEqual
(
loss
,
50
+
50
*
(
1
-
tolerance
),
msg
)
elif
index
==
2
:
delay
=
float
(
p
.
match
.
group
(
6
)
)
self
.
assertGreaterEqual
(
delay
,
15
*
.
8
)
self
.
assertLessEqual
(
delay
,
15
+
15
*
(
1
-
tolerance
)
)
else
:
break
if
__name__
==
'
__main__
'
:
unittest
.
main
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment