Package com.cloud.network.nicira

Examples of com.cloud.network.nicira.SingleDefaultRouteImplictRoutingConfig


        try {
          // Create the Router
          LogicalRouterConfig lrc = new LogicalRouterConfig();
          lrc.setDisplayName(truncate(routerName, 40));
          lrc.setTags(tags);
          lrc.setRoutingConfig(new SingleDefaultRouteImplictRoutingConfig(
              new RouterNextHop(publicNetworkNextHopIp)));
          lrc = _niciraNvpApi.createLogicalRouter(lrc);
         
          // store the switchport for rollback
          LogicalSwitchPort lsp = null;
View Full Code Here


        try {
            // Create the Router
            LogicalRouterConfig lrc = new LogicalRouterConfig();
            lrc.setDisplayName(truncate(routerName, 40));
            lrc.setTags(tags);
            lrc.setRoutingConfig(new SingleDefaultRouteImplictRoutingConfig(
                    new RouterNextHop(publicNetworkNextHopIp)));
            lrc = _niciraNvpApi.createLogicalRouter(lrc);

            // store the switchport for rollback
            LogicalSwitchPort lsp = null;
View Full Code Here

TOP

Related Classes of com.cloud.network.nicira.SingleDefaultRouteImplictRoutingConfig

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.