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
ffeb16eb
Commit
ffeb16eb
authored
11 years ago
by
Brian O'Connor
Browse files
Options
Downloads
Patches
Plain Diff
fixing --nat option in mn
parent
a802d8b1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
bin/mn
+4
-2
4 additions, 2 deletions
bin/mn
examples/natnet.py
+2
-2
2 additions, 2 deletions
examples/natnet.py
mininet/net.py
+9
-5
9 additions, 5 deletions
mininet/net.py
mininet/node.py
+1
-8
1 addition, 8 deletions
mininet/node.py
with
16 additions
and
17 deletions
bin/mn
+
4
−
2
View file @
ffeb16eb
...
...
@@ -226,8 +226,6 @@ class MininetRunner( object ):
start
=
time
.
time
()
topo
=
buildTopo
(
TOPOS
,
self
.
options
.
topo
)
if
self
.
options
.
nat
:
topo
.
addNAT
()
switch
=
customConstructor
(
SWITCHES
,
self
.
options
.
switch
)
host
=
customConstructor
(
HOSTS
,
self
.
options
.
host
)
controller
=
customConstructor
(
CONTROLLERS
,
self
.
options
.
controller
)
...
...
@@ -255,6 +253,10 @@ class MininetRunner( object ):
autoStaticArp
=
arp
,
autoPinCpus
=
pin
,
listenPort
=
listenPort
)
if
self
.
options
.
nat
:
nat
=
mn
.
addNAT
()
mn
.
configHosts
()
if
self
.
options
.
pre
:
CLI
(
mn
,
script
=
self
.
options
.
pre
)
...
...
This diff is collapsed.
Click to expand it.
examples/natnet.py
+
2
−
2
View file @
ffeb16eb
...
...
@@ -56,7 +56,7 @@ def __init__(self, n=2, h=1, **opts):
defaultRoute
=
'
via %s
'
%
localIP
)
self
.
addLink
(
host
,
switch
)
def
perfTest
():
def
run
():
"
Create network and run simple performance test
"
topo
=
InternetTopo
()
net
=
Mininet
(
topo
=
topo
)
...
...
@@ -66,4 +66,4 @@ def perfTest():
if
__name__
==
'
__main__
'
:
setLogLevel
(
'
info
'
)
perfTest
()
\ No newline at end of file
run
()
\ No newline at end of file
This diff is collapsed.
Click to expand it.
mininet/net.py
+
9
−
5
View file @
ffeb16eb
...
...
@@ -227,14 +227,18 @@ def addController( self, name='c0', controller=None, **params ):
self
.
nameToNode
[
name
]
=
controller_new
return
controller_new
# TODO: incomplete
def
addNAT
(
self
,
name
=
'
nat0
'
,
connect
=
True
,
**
params
):
nat
=
self
.
addHost
(
name
,
cls
=
NAT
,
**
params
)
def
addNAT
(
self
,
name
=
'
nat0
'
,
connect
=
True
,
inNamespace
=
False
,
**
params
):
nat
=
self
.
addHost
(
name
,
cls
=
NAT
,
inNamespace
=
inNamespace
,
subnet
=
self
.
ipBase
,
**
params
)
# find first switch and create link
print
"
******* &&&&&& net/addNAT
"
if
connect
:
#connect the nat to the first switch
#
connect the nat to the first switch
self
.
addLink
(
nat
,
self
.
switches
[
0
]
)
# set the default route on hosts
natIP
=
nat
.
params
[
'
ip
'
].
split
(
'
/
'
)[
0
]
for
host
in
self
.
hosts
:
if
host
.
inNamespace
:
host
.
setDefaultRoute
(
'
via %s
'
%
natIP
)
return
nat
# BL: We now have four ways to look up nodes
...
...
This diff is collapsed.
Click to expand it.
mininet/node.py
+
1
−
8
View file @
ffeb16eb
...
...
@@ -1253,7 +1253,7 @@ def __init__( self, name, inetIntf='eth0', subnet='10.0/8', localIntf=None, **pa
inetIntf: interface for internet access
subnet: Mininet subnet (default 10.0/8)=
"""
self
.
inetIntf
=
inetIntf
self
.
subnet
=
subnet
#TODO: get subnet from Mininet directly
self
.
subnet
=
subnet
self
.
localIntf
=
localIntf
def
config
(
self
,
**
params
):
...
...
@@ -1263,13 +1263,6 @@ def config( self, **params ):
if
not
self
.
localIntf
:
self
.
localIntf
=
self
.
defaultIntf
()
#-------------------------
print
"
inetIntf:
"
,
self
.
inetIntf
print
"
subnet:
"
,
self
.
subnet
# Identify the interface connecting to the mininet network
print
"
LocalIntf:
"
,
self
.
localIntf
#-------------------------
self
.
cmd
(
'
sysctl net.ipv4.ip_forward=0
'
)
# Flush any currently active rules
...
...
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