port chain with nsh missing table=5 at ovs-ofctl
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
networking-sfc |
New
|
Undecided
|
Unassigned |
Bug Description
Using Kolla to deploy a multinode cloud I'm facing some problems to implement SFC.
I did the following:
openstack port create p1 --network net1 --disable-
openstack port create p2 --network net1 --disable-
openstack port create p3 --network net1 --disable-
openstack port create p4 --network net1 --disable-
openstack server create fonte --nic port-id=p1 --flavor m1.tiny --image cirros-
openstack server create sff1 --nic port-id=p2 --flavor m1.tiny --image cirros-
openstack server create sff2 --nic port-id=p3 --flavor m1.tiny --image cirros-
openstack server create destino --nic port-id=p4 --flavor m1.tiny --image cirros-
openstack sfc flow classifier create fc1 --source-ip-prefix 10.10.1.0/24 --destination-
openstack sfc port pair create pp1 --ingress p2 --egress p2
openstack sfc port pair create pp2 --ingress p3 --egress p3
openstack sfc port pair group create ppg1 --port-pair pp1
openstack sfc port pair group create ppg2 --port-pair pp2
openstack sfc port chain create pc1 --port-pair-group ppg1 --port-pair-group ppg2 --flow-classifier fc1 --chain-parameters correlation=nsh
The problem is that the flow rule which capture the traffic that I want to steer uses the table 5 in the dump-groups below it's possible to see the resubmit. The problem is that once I dump all flows, I can't see any table 5.
I use the Open vSwitch 2.5.4.
stack@controlle
OFPST_FLOW reply (OF1.3) (xid=0x2):
table=0, n_packets=0, n_bytes=0, reset_counts priority=
table=0, n_packets=0, n_bytes=0, priority=20,mpls actions=
table=0, n_packets=0, n_bytes=0, priority=
table=0, n_packets=49, n_bytes=8604, priority=
table=0, n_packets=14, n_bytes=2492, priority=
table=0, n_packets=745, n_bytes=71833, priority=0 actions=
table=10, n_packets=0, n_bytes=0, priority=0 actions=drop
table=23, n_packets=0, n_bytes=0, priority=0 actions=drop
table=24, n_packets=0, n_bytes=0, priority=0 actions=drop
table=60, n_packets=794, n_bytes=80437, priority=3 actions=NORMAL
stack@controlle
OFPST_GROUP_DESC reply (OF1.3) (xid=0x2):
group_
any comments ?