Tag: sdn

OpendayLight:如何指定stream表的目的IP地址

我使用OpendayLight ( Carbon SR1 )将stream表发送到交换机,除了使用set-nw-dst-action-case指令外,一切正常。 一旦我使用这个指令,stream程就不能被正确地切换(通过http://opendaylight_ip:8181/restconf/operational/opendaylight-inventory:nodes/node/openflow:1/flow-node-inventory:table/0 ),这是我的json代码来设置stream量: { "flow": [ { "id": "test", "match": { "ethernet-match": { "ethernet-destination": { "address": "02:42:4a:46:fc:02" } } }, "instructions": { "instruction": [ { "order": "0", "apply-actions": { "action": [ { "order": "0", "set-nw-dst-action": { "_Opps": "Remove this action goes normal" "ipv4-address": "192.168.1.3/32" } }, { "order": "1", "set-dl-dst-action": { […]

Docker Swarm全局服务副本只能在leader节点上运行。 容器错误:HNS失败,出现错误:{Object Exists}

当我尝试使用全局模式部署服务时,只有Leader节点上的副本运行,工作节点上的副本不运行。 我有两个在AWS上运行的Windows Server 2016实例(1个领导者和1个工人节点)。 我正在使用标准的Microsoft / iis图像。 两个节点的状态都是“就绪” PS C:\Users\Administrator> docker version Client: Version: 17.06.2-ee-6 API version: 1.30 Go version: go1.8.3 Git commit: e75fdb8 Built: Mon Nov 27 22:46:09 2017 OS/Arch: windows/amd64 Server: Version: 17.06.2-ee-6 API version: 1.30 (minimum version 1.24) Go version: go1.8.3 Git commit: e75fdb8 Built: Mon Nov 27 22:55:16 2017 OS/Arch: windows/amd64 […]