DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.

DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
Cisco Virtual Network Management Center (VNMC) provides centralized multidevice and policy management for Cisco network virtual services.
When combined with the Cisco Nexus 1000V Switch, ASA 1000V Cloud Firewall, or the Cisco Virtual Security Gateway (VSG), it enables:
Currently the 1000v series and the VSG are supported on VMWare hypervisors.
This would be the deployment model with CloudStack:
The VNMC controller is a VMWare appliance that presents an XML API to control the Cisco virtual appliance porfolio.
The GUI is a Flash-based web application that utilizes the XML API to interact with the controller. By enabling the flash debugger (see http://s.apache.org/v5) we can capture the precise XML commands required by CloudStack.
The resource translates abstract network configuration commands such as SetStaticNatRule into concrete XML api calls to the VNMC controller
The service is a pluggable service that allows the cloud operator to provision the VNMC controller URL and credentials into CloudStack
The manager implements the CiscoVnmcElementService. It also pre-creates and manages a pool of ASA1000v appliances. The pool is created with an initial capacity and is expanded as demand grows. As networks are de-provisioned, the appliances are returned to the pool.
The network element participates in L2 orchestration by extending NetworkElement. When a network is created, the element needs to
The Cisco ASA1000v can function as a DHCP server, however it cannot guarantee a specific ip<->mac address mapping. Therefore the CloudStack systemvm will be used for this purpose.
The CiscoVnmcElement also implement the IpDeployer and various service provider interfaces to satisfy the requirements of the network offering.
VXLAN isolation needs to be added as an isolation method, with a specific Guru managing allocation of the VXLAN network identifier (VNI)
The VSG can be used to provide security group isolation.
- Nexus 1000v appliance is setup and configured in CS (when adding Vmware cluster)
- VNMC appliance is configured and added to CS (separate lifecycle commands will be provided for this)
Spin up an ASA instance in standalone mode (do we need to support HA mode?)
Following configuration needs to be provided:
After the ASA instance is powered on the VNMC needs to be registered from ASA console
- ASA1000V(config)# vnmc policy-agent
- ASA1000V(config-vnmc-policy-agent)# registration host vnmc_ip_address
- ASA1000V(config-vnmc-policy-agent)# shared-secret key where key is the shared secret for authentication of the ASA 1000V connection to the Cisco VNMC
Guest n/w gets implement when 1st guest VM is deployed
a. Guest network implementation
- VirtualRouterElement creates the VR for DHCP, userdata and metadata, password server
- CiscoVNMCElement::implement() does the following:
- Create tenant/edge_security_profile/logical_edge_firewall in VNMC. There will be helper methods in VnmcResource class for all these operations (currently assuming one VNMC appliance per zone. do we need to support multiple VNMCs per zone, in that case how to choose?)
- Tenant creation
- Edge security profile
- Logical edge firewall
- Create vservice_node, in_port_profile, out_port_profile for ASA in VSM for the Vmware cluster. This is done through VsmCommand class
vservice_node (below commands for doing it on CLI)
vservice node ASA%vlanid% type asa_
ip address 10.1.1.1
adjacency l2 vlan %vlanid%
fail-mode close
in_port_profile
port-profile type vethernet ASA-Inside-%vlanid
vmware port-group
switchport mode access
switchport access vlan %vlanid%
no shutdown
state enabled
out_port_profile
same as in_port_profile but with some vlan for public n/w
- Reconfigure in/out n/w interfaces for ASA appliance with in_port_profile and out_port_profile respectively (need to check what all need to be stored name, cluster, ip address for getting hold of vCenter reference for this VM so that reconfigure can be done)
- Associate ASA appliance with logical_edge_firewall (in VNMC). IP address of ASA is required for this. This is again done using VnmcResource
b. For guest VM the following change is required while creating the port profile in VSM
- Create port profile guest VM and associate logical_edge_firewall, edge_security_profile
guest_port_profile
port-profile type vethernet Guest-%vlanid%
vmware port-group
switchport mode access
switchport access vlan %vlanid%
org root/%tenant%
vservice node ASA-%vlanid% profile edge_security_profile
no shutdown
state enabled
TODO:
- Currently ASA is manually setup and configured. Need to see if this can be automatically provisioned?