Skip to content

Commit 9a49968

Browse files
committed
Fix: support checking the GENEVE port status at openstack node
Change-Id: If2068dee1b2bdfb933352513f22354426e137991
1 parent 77958a5 commit 9a49968

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

apps/openstacknode/app/src/main/java/org/onosproject/openstacknode/cli/OpenstackNodeCheckCommand.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
import org.openstack4j.api.OSClient;
3232

3333
import static org.onosproject.net.AnnotationKeys.PORT_NAME;
34+
import static org.onosproject.openstacknode.api.Constants.GENEVE_TUNNEL;
3435
import static org.onosproject.openstacknode.api.Constants.GRE_TUNNEL;
3536
import static org.onosproject.openstacknode.api.Constants.INTEGRATION_BRIDGE;
3637
import static org.onosproject.openstacknode.api.Constants.INTEGRATION_TO_PHYSICAL_PREFIX;
@@ -103,6 +104,7 @@ protected void doExecute() {
103104
if (osNode.dataIp() != null) {
104105
printPortState(deviceService, osNode.intgBridge(), VXLAN_TUNNEL);
105106
printPortState(deviceService, osNode.intgBridge(), GRE_TUNNEL);
107+
printPortState(deviceService, osNode.intgBridge(), GENEVE_TUNNEL);
106108
}
107109
if (osNode.vlanIntf() != null) {
108110
printPortState(deviceService, osNode.intgBridge(), osNode.vlanIntf());

0 commit comments

Comments
 (0)