Committed by
Brian O'Connor
[Emu] Changes default OpenFlow port to 6653.
Change-Id: Ib1cf28579e42d5dc136d0b81eec1d317e372aac8
Showing
12 changed files
with
36 additions
and
36 deletions
| ... | @@ -86,7 +86,7 @@ public class CordFabricManager implements FabricService { | ... | @@ -86,7 +86,7 @@ public class CordFabricManager implements FabricService { |
| 86 | 86 | ||
| 87 | private short radiusPort = 1812; | 87 | private short radiusPort = 1812; |
| 88 | 88 | ||
| 89 | - private short ofPort = 6633; | 89 | + private short ofPort = 6653; |
| 90 | 90 | ||
| 91 | private DeviceId fabricDeviceId = DeviceId.deviceId("of:5e3e486e73000187"); | 91 | private DeviceId fabricDeviceId = DeviceId.deviceId("of:5e3e486e73000187"); |
| 92 | 92 | ... | ... |
| ... | @@ -65,7 +65,7 @@ public class Controller { | ... | @@ -65,7 +65,7 @@ public class Controller { |
| 65 | private ChannelGroup cg; | 65 | private ChannelGroup cg; |
| 66 | 66 | ||
| 67 | // Configuration options | 67 | // Configuration options |
| 68 | - protected int openFlowPort = 6633; | 68 | + protected int openFlowPort = 6653; |
| 69 | protected int workerThreads = 0; | 69 | protected int workerThreads = 0; |
| 70 | 70 | ||
| 71 | // Start time of the controller | 71 | // Start time of the controller |
| ... | @@ -160,8 +160,8 @@ public class Controller { | ... | @@ -160,8 +160,8 @@ public class Controller { |
| 160 | if (ofPort != null) { | 160 | if (ofPort != null) { |
| 161 | this.openFlowPort = Integer.parseInt(ofPort); | 161 | this.openFlowPort = Integer.parseInt(ofPort); |
| 162 | } | 162 | } |
| 163 | - | ||
| 164 | log.debug("OpenFlow port set to {}", this.openFlowPort); | 163 | log.debug("OpenFlow port set to {}", this.openFlowPort); |
| 164 | + | ||
| 165 | String threads = configParams.get("workerthreads"); | 165 | String threads = configParams.get("workerthreads"); |
| 166 | this.workerThreads = threads != null ? Integer.parseInt(threads) : 16; | 166 | this.workerThreads = threads != null ? Integer.parseInt(threads) : 16; |
| 167 | log.debug("Number of worker threads set to {}", this.workerThreads); | 167 | log.debug("Number of worker threads set to {}", this.workerThreads); | ... | ... |
| ... | @@ -86,7 +86,7 @@ import static org.onlab.util.Tools.groupedThreads; | ... | @@ -86,7 +86,7 @@ import static org.onlab.util.Tools.groupedThreads; |
| 86 | @Component(immediate = true) | 86 | @Component(immediate = true) |
| 87 | @Service | 87 | @Service |
| 88 | public class OpenFlowControllerImpl implements OpenFlowController { | 88 | public class OpenFlowControllerImpl implements OpenFlowController { |
| 89 | - private static final int DEFAULT_OFPORT = 6633; | 89 | + private static final int DEFAULT_OFPORT = 6653; |
| 90 | private static final int DEFAULT_WORKER_THREADS = 16; | 90 | private static final int DEFAULT_WORKER_THREADS = 16; |
| 91 | 91 | ||
| 92 | private static final Logger log = | 92 | private static final Logger log = |
| ... | @@ -103,7 +103,7 @@ public class OpenFlowControllerImpl implements OpenFlowController { | ... | @@ -103,7 +103,7 @@ public class OpenFlowControllerImpl implements OpenFlowController { |
| 103 | protected ComponentConfigService cfgService; | 103 | protected ComponentConfigService cfgService; |
| 104 | 104 | ||
| 105 | @Property(name = "openflowPort", intValue = DEFAULT_OFPORT, | 105 | @Property(name = "openflowPort", intValue = DEFAULT_OFPORT, |
| 106 | - label = "Port number used by OpenFlow protocol; default is 6633") | 106 | + label = "Port number used by OpenFlow protocol; default is 6653") |
| 107 | private int openflowPort = DEFAULT_OFPORT; | 107 | private int openflowPort = DEFAULT_OFPORT; |
| 108 | 108 | ||
| 109 | @Property(name = "workerThreads", intValue = DEFAULT_WORKER_THREADS, | 109 | @Property(name = "workerThreads", intValue = DEFAULT_WORKER_THREADS, | ... | ... |
| ... | @@ -60,7 +60,7 @@ public final class OvsdbConstant { | ... | @@ -60,7 +60,7 @@ public final class OvsdbConstant { |
| 60 | public static final String EXTERNAL_ID_VM_MAC = "attached-mac"; | 60 | public static final String EXTERNAL_ID_VM_MAC = "attached-mac"; |
| 61 | 61 | ||
| 62 | /** Openflow port. */ | 62 | /** Openflow port. */ |
| 63 | - public static final int OFPORT = 6633; | 63 | + public static final int OFPORT = 6653; |
| 64 | 64 | ||
| 65 | /** Ovsdb port. */ | 65 | /** Ovsdb port. */ |
| 66 | public static final int OVSDBPORT = 6640; | 66 | public static final int OVSDBPORT = 6640; | ... | ... |
| ... | @@ -45,11 +45,11 @@ RUN mkdir onos && \ | ... | @@ -45,11 +45,11 @@ RUN mkdir onos && \ |
| 45 | 45 | ||
| 46 | 46 | ||
| 47 | # Ports | 47 | # Ports |
| 48 | -# 6633 - OpenFlow | 48 | +# 6653 - OpenFlow |
| 49 | # 8181 - GUI | 49 | # 8181 - GUI |
| 50 | # 8101 - ONOS CLI | 50 | # 8101 - ONOS CLI |
| 51 | # 9876 - ONOS CLUSTER COMMUNICATION | 51 | # 9876 - ONOS CLUSTER COMMUNICATION |
| 52 | -EXPOSE 6633 8181 8101 9876 | 52 | +EXPOSE 6653 8181 8101 9876 |
| 53 | 53 | ||
| 54 | # Get ready to run command | 54 | # Get ready to run command |
| 55 | WORKDIR /root/onos | 55 | WORKDIR /root/onos | ... | ... |
| ... | @@ -6,7 +6,7 @@ | ... | @@ -6,7 +6,7 @@ |
| 6 | controllers="" | 6 | controllers="" |
| 7 | 7 | ||
| 8 | for node in $ONOS_INSTANCES; do | 8 | for node in $ONOS_INSTANCES; do |
| 9 | - controllers="$controllers tcp:$node:${OF_PORT:-6633}" | 9 | + controllers="$controllers tcp:$node:${OF_PORT:-6653}" |
| 10 | done | 10 | done |
| 11 | 11 | ||
| 12 | ssh ${ONOS_USER:-sdn}@$OCN " | 12 | ssh ${ONOS_USER:-sdn}@$OCN " | ... | ... |
| ... | @@ -31,7 +31,7 @@ class ONOS( Controller ): | ... | @@ -31,7 +31,7 @@ class ONOS( Controller ): |
| 31 | Controller.__init__( self, name, **kwargs ) | 31 | Controller.__init__( self, name, **kwargs ) |
| 32 | # the following have been done for us: | 32 | # the following have been done for us: |
| 33 | #self.ip = ip ('127.0.0.1') | 33 | #self.ip = ip ('127.0.0.1') |
| 34 | - #self.port = port (6633) | 34 | + #self.port = port (6653) |
| 35 | #self.protocol = protocol ('tcp') | 35 | #self.protocol = protocol ('tcp') |
| 36 | #self.checkListening() | 36 | #self.checkListening() |
| 37 | 37 | ... | ... |
| ... | @@ -69,7 +69,7 @@ topos = {'optical': ( lambda: OpticalTopo() )} | ... | @@ -69,7 +69,7 @@ topos = {'optical': ( lambda: OpticalTopo() )} |
| 69 | 69 | ||
| 70 | 70 | ||
| 71 | def run(): | 71 | def run(): |
| 72 | - c = RemoteController('c','127.0.0.1',6633) | 72 | + c = RemoteController('c','127.0.0.1',6653) |
| 73 | net = Mininet( topo=OpticalTopo(),controller=None,autoSetMacs=True) | 73 | net = Mininet( topo=OpticalTopo(),controller=None,autoSetMacs=True) |
| 74 | net.addController(c) | 74 | net.addController(c) |
| 75 | net.start() | 75 | net.start() | ... | ... |
| ... | @@ -23,7 +23,7 @@ class Solar(object): | ... | @@ -23,7 +23,7 @@ class Solar(object): |
| 23 | # We are creating the controller with local-loopback on purpose to avoid | 23 | # We are creating the controller with local-loopback on purpose to avoid |
| 24 | # having the switches connect immediately. Instead, we'll set controller | 24 | # having the switches connect immediately. Instead, we'll set controller |
| 25 | # explicitly for each switch after configuring it as we want. | 25 | # explicitly for each switch after configuring it as we want. |
| 26 | - self.ctrls = [ RemoteController(cname, cip, 6633) for cip in cips ] | 26 | + self.ctrls = [ RemoteController(cname, cip, 6653) for cip in cips ] |
| 27 | self.net = Mininet(controller=RemoteController, switch = OVSKernelSwitch, | 27 | self.net = Mininet(controller=RemoteController, switch = OVSKernelSwitch, |
| 28 | build=False) | 28 | build=False) |
| 29 | 29 | ... | ... |
| ... | @@ -56,7 +56,7 @@ | ... | @@ -56,7 +56,7 @@ |
| 56 | [{switch,1, | 56 | [{switch,1, |
| 57 | [{backend,linc_us4_oe}, | 57 | [{backend,linc_us4_oe}, |
| 58 | {datapath_id,"00:00:ff:ff:ff:ff:ff:01"}, | 58 | {datapath_id,"00:00:ff:ff:ff:ff:ff:01"}, |
| 59 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 59 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 60 | {controllers_listener,disabled}, | 60 | {controllers_listener,disabled}, |
| 61 | {queues_status,disabled}, | 61 | {queues_status,disabled}, |
| 62 | {ports, | 62 | {ports, |
| ... | @@ -66,7 +66,7 @@ | ... | @@ -66,7 +66,7 @@ |
| 66 | {switch,2, | 66 | {switch,2, |
| 67 | [{backend,linc_us4_oe}, | 67 | [{backend,linc_us4_oe}, |
| 68 | {datapath_id,"00:00:ff:ff:ff:ff:ff:02"}, | 68 | {datapath_id,"00:00:ff:ff:ff:ff:ff:02"}, |
| 69 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 69 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 70 | {controllers_listener,disabled}, | 70 | {controllers_listener,disabled}, |
| 71 | {queues_status,disabled}, | 71 | {queues_status,disabled}, |
| 72 | {ports, | 72 | {ports, |
| ... | @@ -76,7 +76,7 @@ | ... | @@ -76,7 +76,7 @@ |
| 76 | {switch,3, | 76 | {switch,3, |
| 77 | [{backend,linc_us4_oe}, | 77 | [{backend,linc_us4_oe}, |
| 78 | {datapath_id,"00:00:ff:ff:ff:ff:ff:03"}, | 78 | {datapath_id,"00:00:ff:ff:ff:ff:ff:03"}, |
| 79 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 79 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 80 | {controllers_listener,disabled}, | 80 | {controllers_listener,disabled}, |
| 81 | {queues_status,disabled}, | 81 | {queues_status,disabled}, |
| 82 | {ports, | 82 | {ports, |
| ... | @@ -86,7 +86,7 @@ | ... | @@ -86,7 +86,7 @@ |
| 86 | {switch,4, | 86 | {switch,4, |
| 87 | [{backend,linc_us4_oe}, | 87 | [{backend,linc_us4_oe}, |
| 88 | {datapath_id,"00:00:ff:ff:ff:ff:ff:04"}, | 88 | {datapath_id,"00:00:ff:ff:ff:ff:ff:04"}, |
| 89 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 89 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 90 | {controllers_listener,disabled}, | 90 | {controllers_listener,disabled}, |
| 91 | {queues_status,disabled}, | 91 | {queues_status,disabled}, |
| 92 | {ports, | 92 | {ports, |
| ... | @@ -96,7 +96,7 @@ | ... | @@ -96,7 +96,7 @@ |
| 96 | {switch,5, | 96 | {switch,5, |
| 97 | [{backend,linc_us4_oe}, | 97 | [{backend,linc_us4_oe}, |
| 98 | {datapath_id,"00:00:ff:ff:ff:ff:ff:05"}, | 98 | {datapath_id,"00:00:ff:ff:ff:ff:ff:05"}, |
| 99 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 99 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 100 | {controllers_listener,disabled}, | 100 | {controllers_listener,disabled}, |
| 101 | {queues_status,disabled}, | 101 | {queues_status,disabled}, |
| 102 | {ports, | 102 | {ports, |
| ... | @@ -107,7 +107,7 @@ | ... | @@ -107,7 +107,7 @@ |
| 107 | {switch,7, | 107 | {switch,7, |
| 108 | [{backend,linc_us4_oe}, | 108 | [{backend,linc_us4_oe}, |
| 109 | {datapath_id,"00:00:ff:ff:ff:ff:ff:07"}, | 109 | {datapath_id,"00:00:ff:ff:ff:ff:ff:07"}, |
| 110 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 110 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 111 | {controllers_listener,disabled}, | 111 | {controllers_listener,disabled}, |
| 112 | {queues_status,disabled}, | 112 | {queues_status,disabled}, |
| 113 | {ports, | 113 | {ports, |
| ... | @@ -118,7 +118,7 @@ | ... | @@ -118,7 +118,7 @@ |
| 118 | {switch,8, | 118 | {switch,8, |
| 119 | [{backend,linc_us4_oe}, | 119 | [{backend,linc_us4_oe}, |
| 120 | {datapath_id,"00:00:ff:ff:ff:ff:ff:08"}, | 120 | {datapath_id,"00:00:ff:ff:ff:ff:ff:08"}, |
| 121 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 121 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 122 | {controllers_listener,disabled}, | 122 | {controllers_listener,disabled}, |
| 123 | {queues_status,disabled}, | 123 | {queues_status,disabled}, |
| 124 | {ports, | 124 | {ports, |
| ... | @@ -128,7 +128,7 @@ | ... | @@ -128,7 +128,7 @@ |
| 128 | {switch,9, | 128 | {switch,9, |
| 129 | [{backend,linc_us4_oe}, | 129 | [{backend,linc_us4_oe}, |
| 130 | {datapath_id,"00:00:ff:ff:ff:ff:ff:09"}, | 130 | {datapath_id,"00:00:ff:ff:ff:ff:ff:09"}, |
| 131 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 131 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 132 | {controllers_listener,disabled}, | 132 | {controllers_listener,disabled}, |
| 133 | {queues_status,disabled}, | 133 | {queues_status,disabled}, |
| 134 | {ports, | 134 | {ports, |
| ... | @@ -138,7 +138,7 @@ | ... | @@ -138,7 +138,7 @@ |
| 138 | {switch,10, | 138 | {switch,10, |
| 139 | [{backend,linc_us4_oe}, | 139 | [{backend,linc_us4_oe}, |
| 140 | {datapath_id,"00:00:ff:ff:ff:ff:ff:0A"}, | 140 | {datapath_id,"00:00:ff:ff:ff:ff:ff:0A"}, |
| 141 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 141 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 142 | {controllers_listener,disabled}, | 142 | {controllers_listener,disabled}, |
| 143 | {queues_status,disabled}, | 143 | {queues_status,disabled}, |
| 144 | {ports, | 144 | {ports, |
| ... | @@ -148,7 +148,7 @@ | ... | @@ -148,7 +148,7 @@ |
| 148 | {switch,6, | 148 | {switch,6, |
| 149 | [{backend,linc_us4_oe}, | 149 | [{backend,linc_us4_oe}, |
| 150 | {datapath_id,"00:00:ff:ff:ff:ff:ff:06"}, | 150 | {datapath_id,"00:00:ff:ff:ff:ff:ff:06"}, |
| 151 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 151 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 152 | {controllers_listener,disabled}, | 152 | {controllers_listener,disabled}, |
| 153 | {queues_status,disabled}, | 153 | {queues_status,disabled}, |
| 154 | {ports, | 154 | {ports, | ... | ... |
| ... | @@ -18,7 +18,7 @@ | ... | @@ -18,7 +18,7 @@ |
| 18 | [{switch,1, | 18 | [{switch,1, |
| 19 | [{backend,linc_us4_oe}, | 19 | [{backend,linc_us4_oe}, |
| 20 | {datapath_id,"00:00:ff:ff:ff:ff:ff:01"}, | 20 | {datapath_id,"00:00:ff:ff:ff:ff:ff:01"}, |
| 21 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 21 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 22 | {controllers_listener,disabled}, | 22 | {controllers_listener,disabled}, |
| 23 | {queues_status,disabled}, | 23 | {queues_status,disabled}, |
| 24 | {ports, | 24 | {ports, |
| ... | @@ -28,7 +28,7 @@ | ... | @@ -28,7 +28,7 @@ |
| 28 | {switch,3, | 28 | {switch,3, |
| 29 | [{backend,linc_us4_oe}, | 29 | [{backend,linc_us4_oe}, |
| 30 | {datapath_id,"00:00:ff:ff:ff:ff:ff:03"}, | 30 | {datapath_id,"00:00:ff:ff:ff:ff:ff:03"}, |
| 31 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 31 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 32 | {controllers_listener,disabled}, | 32 | {controllers_listener,disabled}, |
| 33 | {queues_status,disabled}, | 33 | {queues_status,disabled}, |
| 34 | {ports, | 34 | {ports, |
| ... | @@ -37,7 +37,7 @@ | ... | @@ -37,7 +37,7 @@ |
| 37 | {switch,2, | 37 | {switch,2, |
| 38 | [{backend,linc_us4_oe}, | 38 | [{backend,linc_us4_oe}, |
| 39 | {datapath_id,"00:00:ff:ff:ff:ff:ff:02"}, | 39 | {datapath_id,"00:00:ff:ff:ff:ff:ff:02"}, |
| 40 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 40 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 41 | {controllers_listener,disabled}, | 41 | {controllers_listener,disabled}, |
| 42 | {queues_status,disabled}, | 42 | {queues_status,disabled}, |
| 43 | {ports, | 43 | {ports, |
| ... | @@ -47,7 +47,7 @@ | ... | @@ -47,7 +47,7 @@ |
| 47 | {switch,4, | 47 | {switch,4, |
| 48 | [{backend,linc_us4_oe}, | 48 | [{backend,linc_us4_oe}, |
| 49 | {datapath_id,"00:00:ff:ff:ff:ff:ff:04"}, | 49 | {datapath_id,"00:00:ff:ff:ff:ff:ff:04"}, |
| 50 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 50 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 51 | {controllers_listener,disabled}, | 51 | {controllers_listener,disabled}, |
| 52 | {queues_status,disabled}, | 52 | {queues_status,disabled}, |
| 53 | {ports, | 53 | {ports, | ... | ... |
| ... | @@ -56,7 +56,7 @@ | ... | @@ -56,7 +56,7 @@ |
| 56 | [{switch,1, | 56 | [{switch,1, |
| 57 | [{backend,linc_us4_oe}, | 57 | [{backend,linc_us4_oe}, |
| 58 | {datapath_id,"00:00:ff:ff:ff:ff:ff:01"}, | 58 | {datapath_id,"00:00:ff:ff:ff:ff:ff:01"}, |
| 59 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 59 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 60 | {controllers_listener,disabled}, | 60 | {controllers_listener,disabled}, |
| 61 | {queues_status,disabled}, | 61 | {queues_status,disabled}, |
| 62 | {ports, | 62 | {ports, |
| ... | @@ -66,7 +66,7 @@ | ... | @@ -66,7 +66,7 @@ |
| 66 | {switch,2, | 66 | {switch,2, |
| 67 | [{backend,linc_us4_oe}, | 67 | [{backend,linc_us4_oe}, |
| 68 | {datapath_id,"00:00:ff:ff:ff:ff:ff:02"}, | 68 | {datapath_id,"00:00:ff:ff:ff:ff:ff:02"}, |
| 69 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 69 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 70 | {controllers_listener,disabled}, | 70 | {controllers_listener,disabled}, |
| 71 | {queues_status,disabled}, | 71 | {queues_status,disabled}, |
| 72 | {ports, | 72 | {ports, |
| ... | @@ -76,7 +76,7 @@ | ... | @@ -76,7 +76,7 @@ |
| 76 | {switch,3, | 76 | {switch,3, |
| 77 | [{backend,linc_us4_oe}, | 77 | [{backend,linc_us4_oe}, |
| 78 | {datapath_id,"00:00:ff:ff:ff:ff:ff:03"}, | 78 | {datapath_id,"00:00:ff:ff:ff:ff:ff:03"}, |
| 79 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 79 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 80 | {controllers_listener,disabled}, | 80 | {controllers_listener,disabled}, |
| 81 | {queues_status,disabled}, | 81 | {queues_status,disabled}, |
| 82 | {ports, | 82 | {ports, |
| ... | @@ -86,7 +86,7 @@ | ... | @@ -86,7 +86,7 @@ |
| 86 | {switch,4, | 86 | {switch,4, |
| 87 | [{backend,linc_us4_oe}, | 87 | [{backend,linc_us4_oe}, |
| 88 | {datapath_id,"00:00:ff:ff:ff:ff:ff:04"}, | 88 | {datapath_id,"00:00:ff:ff:ff:ff:ff:04"}, |
| 89 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 89 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 90 | {controllers_listener,disabled}, | 90 | {controllers_listener,disabled}, |
| 91 | {queues_status,disabled}, | 91 | {queues_status,disabled}, |
| 92 | {ports, | 92 | {ports, |
| ... | @@ -96,7 +96,7 @@ | ... | @@ -96,7 +96,7 @@ |
| 96 | {switch,5, | 96 | {switch,5, |
| 97 | [{backend,linc_us4_oe}, | 97 | [{backend,linc_us4_oe}, |
| 98 | {datapath_id,"00:00:ff:ff:ff:ff:ff:05"}, | 98 | {datapath_id,"00:00:ff:ff:ff:ff:ff:05"}, |
| 99 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 99 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 100 | {controllers_listener,disabled}, | 100 | {controllers_listener,disabled}, |
| 101 | {queues_status,disabled}, | 101 | {queues_status,disabled}, |
| 102 | {ports, | 102 | {ports, |
| ... | @@ -107,7 +107,7 @@ | ... | @@ -107,7 +107,7 @@ |
| 107 | {switch,7, | 107 | {switch,7, |
| 108 | [{backend,linc_us4_oe}, | 108 | [{backend,linc_us4_oe}, |
| 109 | {datapath_id,"00:00:ff:ff:ff:ff:ff:07"}, | 109 | {datapath_id,"00:00:ff:ff:ff:ff:ff:07"}, |
| 110 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 110 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 111 | {controllers_listener,disabled}, | 111 | {controllers_listener,disabled}, |
| 112 | {queues_status,disabled}, | 112 | {queues_status,disabled}, |
| 113 | {ports, | 113 | {ports, |
| ... | @@ -118,7 +118,7 @@ | ... | @@ -118,7 +118,7 @@ |
| 118 | {switch,8, | 118 | {switch,8, |
| 119 | [{backend,linc_us4_oe}, | 119 | [{backend,linc_us4_oe}, |
| 120 | {datapath_id,"00:00:ff:ff:ff:ff:ff:08"}, | 120 | {datapath_id,"00:00:ff:ff:ff:ff:ff:08"}, |
| 121 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 121 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 122 | {controllers_listener,disabled}, | 122 | {controllers_listener,disabled}, |
| 123 | {queues_status,disabled}, | 123 | {queues_status,disabled}, |
| 124 | {ports, | 124 | {ports, |
| ... | @@ -128,7 +128,7 @@ | ... | @@ -128,7 +128,7 @@ |
| 128 | {switch,9, | 128 | {switch,9, |
| 129 | [{backend,linc_us4_oe}, | 129 | [{backend,linc_us4_oe}, |
| 130 | {datapath_id,"00:00:ff:ff:ff:ff:ff:09"}, | 130 | {datapath_id,"00:00:ff:ff:ff:ff:ff:09"}, |
| 131 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 131 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 132 | {controllers_listener,disabled}, | 132 | {controllers_listener,disabled}, |
| 133 | {queues_status,disabled}, | 133 | {queues_status,disabled}, |
| 134 | {ports, | 134 | {ports, |
| ... | @@ -138,7 +138,7 @@ | ... | @@ -138,7 +138,7 @@ |
| 138 | {switch,10, | 138 | {switch,10, |
| 139 | [{backend,linc_us4_oe}, | 139 | [{backend,linc_us4_oe}, |
| 140 | {datapath_id,"00:00:ff:ff:ff:ff:ff:0A"}, | 140 | {datapath_id,"00:00:ff:ff:ff:ff:ff:0A"}, |
| 141 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 141 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 142 | {controllers_listener,disabled}, | 142 | {controllers_listener,disabled}, |
| 143 | {queues_status,disabled}, | 143 | {queues_status,disabled}, |
| 144 | {ports, | 144 | {ports, |
| ... | @@ -148,7 +148,7 @@ | ... | @@ -148,7 +148,7 @@ |
| 148 | {switch,6, | 148 | {switch,6, |
| 149 | [{backend,linc_us4_oe}, | 149 | [{backend,linc_us4_oe}, |
| 150 | {datapath_id,"00:00:ff:ff:ff:ff:ff:06"}, | 150 | {datapath_id,"00:00:ff:ff:ff:ff:ff:06"}, |
| 151 | - {controllers,[{"Switch0-Controller","10.1.8.147",6633,tcp}]}, | 151 | + {controllers,[{"Switch0-Controller","10.1.8.147",6653,tcp}]}, |
| 152 | {controllers_listener,disabled}, | 152 | {controllers_listener,disabled}, |
| 153 | {queues_status,disabled}, | 153 | {queues_status,disabled}, |
| 154 | {ports, | 154 | {ports, | ... | ... |
-
Please register or login to post a comment