Hi ,
I tried to add a group entry to do multipath routing with ovs version 2.3.2.
$ curl -X POST -d '{
"dpid": 5,
"type": "SELECT",
"group_id": 10,
"buckets": [
{
"weight":1
"actions": [
{
"type": "OUTPUT",
"port": 2
}
]
},
{
"weight":1
"actions": [
{
"type": "OUTPUT",
"port": 3
}
]
}
]
}' http://localhost:8080/stats/groupentry/add
$ curl -X POST -d '{
"dpid": 5,
"priority": 10,
"match":{
"in_port":1
},
"actions":[
{
"type":"GROUP",
"port": 10
}
]
}' http://localhost:8080/stats/flowentry/add
Although packets arriving at switch 5 can match the flow entry which point to
the group table,
I found packet_count of the corresponding group entry is zero, meaning that no
packets really go to the group entry.
Is there any mistake of my configurations ?
And I tried to configure my switch manually first but got the same result.
Can you help me to address this problem ? Thanks!
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
Ryu-devel mailing list
Ryu-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ryu-devel