forked from openvswitch/ovs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test-controller: Rename to ovs-testcontroller, again install.
mininet uses the Open vSwitch controller by default, for testing. CC: [email protected] Reported-at: https://bugs.debian.org/757761 Requested-by: Tomasz Buchert <[email protected]> Requested-by: Dariusz Dwornikowski <[email protected]> Signed-off-by: Ben Pfaff <[email protected]> Acked-by: Justin Pettit <[email protected]>
- Loading branch information
Showing
26 changed files
with
523 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
README.Debian for openvswitch-testcontroller | ||
-------------------------------------------- | ||
|
||
The controller in this package enables OpenFlow switches that connect | ||
to it to act as MAC-learning Ethernet switches. It can be used for | ||
initial testing of OpenFlow networks. It is not a necessary or | ||
desirable part of a production OpenFlow deployment. | ||
|
||
To (re)configure the controller, edit /etc/default/openvswitch-testcontroller | ||
and run "/etc/init.d/openvswitch-testcontroller restart". | ||
|
||
-- Ben Pfaff <[email protected]>, Thu, 14 Aug 2014 10:49:34 -0700 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# This is a POSIX shell fragment -*- sh -*- | ||
|
||
# LISTEN: What OpenFlow connection methods should the controller listen on? | ||
# | ||
# This is a space-delimited list of connection methods: | ||
# | ||
# * "pssl:[PORT]": Listen for SSL connections on the specified PORT | ||
# (default: 6633). The private key, certificate, and CA certificate | ||
# must be specified below. | ||
# | ||
# * "ptcp:[PORT]": Listen for TCP connections on the specified PORT | ||
# (default: 6633). Not recommended for security reasons. | ||
# | ||
LISTEN="pssl:" | ||
|
||
# PRIVKEY: Name of file containing controller's private key. | ||
# Required if SSL enabled. | ||
PRIVKEY=/etc/openvswitch-testcontroller/privkey.pem | ||
|
||
# CERT: Name of file containing certificate for private key. | ||
# Required if SSL enabled. | ||
CERT=/etc/openvswitch-testcontroller/cert.pem | ||
|
||
# CACERT: Name of file containing switch CA certificate. | ||
# Required if SSL enabled. | ||
CACERT=/etc/openvswitch-testcontroller/cacert.pem | ||
|
||
# Additional options to pass to ovs-testcontroller, e.g. "--hub" | ||
DAEMON_OPTS="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
etc/openvswitch-testcontroller |
Oops, something went wrong.