DVS switch or a standard for the management and vmotion - and what about 1000v?

Couple on this questions:

(1) is there a drawback to the use of the DVS of management? I seem to remember at least possibly in the early days of DVS that there is a dependency on vcenter - so that if vcenter was declining, the hosts lost connectivity. I'm sure that this is no longer the case? But... there at - it all real aisles at the use of DVS for management?

(2) is there a reason NOT to use a vswitch 1000v for groups of management ports?

1) there is still a dependency on vCenter for management but if vCenter is down the vDS will still continue to operate your just will not be able to manage the switch.

(2) 1000v is that a Cisco developed vDS - so the same applies and that there should be no problem to use it for the administration port groups.

Tags: VMware

Similar Questions

  • do I need to use the product for the management of the recovery key to refresh the window 8.1?

    do I need to use the product for the management of the recovery key to refresh the window 8.1?

    No, the product key will be automatically read from the BIOS.

  • [Q] how to build and install an SSL certificate signed for the management of a Cisco 5508 WLC?

    Our security policy requires that all web pages admin must be signed by our CA business. I have successfully implemented a SSL certificate 3rd party Auth Web our WLAN of comments, but I need to install a self-signed certificate for the management of the WLC himself. I followed the instructions here:

    http://www.Cisco.com/en/us/Tech/tk722/tk809/technologies_configuration_example09186a00806e367a.shtml

    but it was more useful for Web auth. I can't find a specific document explaining how it should be done for the management interface.

    Any help much appreciated.

    (1) Please use a password. Empty passwords regularly give problems.

    (2) you don't recombine the key with the certificate before you download to the WLC:

    Combine the CA.pem certificate with the private key, and then convert the file to a .pem file.

    Type this command in the OpenSSL application:

    openssl>pkcs12 -export -in CA.pem -inkey mykey.pem -out CA.p12 -clcerts
    -passin pass:check123 -passout pass:check123


    !--- This command should be on one line.

    openssl>pkcs12 -in CA.p12 -out final.pem -passin pass:check123 -passout pass:check123

    Note: In this command, you must enter a password for the parameters -passin' and -passout . The password is set to the setting -passout must match the setting SubscriptionId is configured on the WLC. In this example, the password is configured at the time the -passin' and settings -passout is check123. Step 4 of the procedure in the section download the WLC third certificate of this document deals with the configuration of the SubscriptionId parameter.

    The final.pem is the file that is transferred via TFTP to the Cisco WLC.

    Now that you have the certificate of the third-party CA, you must download the certificate to the WLC.

  • Process to get Performance data for the managed entity c#

    Could someone please describe the process for pulling data from the API performance?  The documentation seems a bit muddled.

    Qustions:

    Should you create a custom interval perf or you can use the default settings?

    If I have a performanceManager MOR and a hostSystem MOR what methods should I call on the PerformanceManger object to retrieve the performance counters on the managed entity? I'm trying to get ready time % of a host.  Looks like I need to use the QueryAvailablePerfMetric method to draw the MetricID and then use the QueryPerf to shoot the actual static...

    Any help is appreciated.

    VirtualFisk

    You can use available perfIntervals to extract data.

    You have reason to extract performance data, you must first call QueryAvailablePerfMetric to get metricIds and then pass them in the appeal of QueryPerf.

    Also to check whether or not real-time data are available on the entity you must first call QueryPerfProviderSummary on entity and check the PerfProviderSummary currentSupported property. If she defined as true, real-time data are available and you can pass PerfProviderSummary refreshRate as intervalID in your QueryAvailablePerfMetric call and still pass this refreshRate as intervalID PerfQuerySpec for QueryPerf appeal.

    Please see following code snippet to retrieve data for the managed entity HostSystem (hostMoRef), you can replace it with a managed object of an entity reference





    int counterID;

    int key;

    String group;

    String name;

    String rollup;

    ManagedObjectReference pmRef = _sic.perfManager;

    PerfCounterInfo[] cInfo = (PerfCounterInfo[])getObjectProperty(pmRef, "perfCounter");

    Hashtable PerfByID = new Hashtable();

    for (int i = 0; i < cInfo.Length; i++)

    {

    key = cInfo[i].key;

    group = cInfo[i].groupInfo.key;

    name = cInfo[i].nameInfo.key;

    rollup = cInfo[i].rollupType.ToString();

    Console.WriteLine("ID: " + key + " group: " + group + "." + name + "." + rollup);

    PerfByID.Add(key, group + "." + name + "." + rollup);

    }





    Console.WriteLine("\n---------------------------------------------");

    Console.WriteLine("Entity: " + hostMoRef.Value);

    PerfProviderSummary perfSum = _service.QueryPerfProviderSummary(pmRef, hostMoRef);

    Console.WriteLine("Refresh Rate" + perfSum.refreshRate + "\nCurrentSupported :"

    + perfSum.currentSupported + "\nisSummarySupported :" + perfSum.summarySupported);

    Console.WriteLine("Fetching Perf Metric Ids");

    DateTime curTime = _service.CurrentTime(_svcRef);

    DateTime beginTime = curTime.Subtract(new TimeSpan(1, 0, 0));

    DateTime endTime = curTime;

    int intervalID;



    if (perfSum.refreshRate < 0) {

    intervalID = 300;

    } else {

    intervalID = perfSum.refreshRate;

    }

    intervalID = 300;

    PerfMetricId[] Ids = _service.QueryAvailablePerfMetric(pmRef, hostMoRef, beginTime, false, endTime, false, intervalID, true);

    if (Ids != null && Ids.Length > 0)

    {

    Console.WriteLine("Ids fetched from QueryAvailablePerfMetric API are:");

    for (int k = 0; k < Ids.Length; k++) {

    Console.WriteLine("ID is: " + Ids[k].counterId + " Instance is: " + Ids[k].instance + "Name is: " + PerfByID[Ids[http://k].counterId|http://k].counterId]);

    }

    PerfQuerySpec qSpec = new PerfQuerySpec();

    qSpec.entity = hostMoRef;

    qSpec.metricId = Ids;

    qSpec.format = "csv";

    qSpec.intervalId = intervalID;

    qSpec.startTime = beginTime;

    qSpec.startTimeSpecified = true;

    qSpec.endTime = endTime;

    qSpec.endTimeSpecified = true;

    qSpec.maxSample = 1;

    qSpec.maxSampleSpecified = true;

    PerfQuerySpec[] qSpecs = new PerfQuerySpec[] { qSpec };

    if (hostMoRef != null)

    {

    PerfEntityMetricBase[] perfEntity = null;

    perfEntity = _service.QueryPerf(pmRef, qSpecs);

    if (perfEntity != null && perfEntity.Length > 0)

    {

    for (int i = 0; i < perfEntity.Length; i++)

    {

    PerfEntityMetricCSV pms = (PerfEntityMetricCSV)perfEntity[i];

    PerfMetricSeriesCSV[] vals = pms.value;

    if (vals != null)

    {

    Console.WriteLine("Perf Counters fetched");

    for (int vi = 0; vi < vals.Length; vi++)

    {

    PerfMetricSeriesCSV pmCSV = vals[vi];

    if (PerfByID[vals[http://vi].id.counterId|http://vi].id.counterId].ToString().StartsWith("mem.vmmemctl")) {

    Console.WriteLine("CounterId: " + vals[vi].id.counterId + " Name: " + PerfByID[vals[http://vi].id.counterId|http://vi].id.counterId] + " Instance: " + vals[vi].id.instance + " ----- ");

    counterID = vals[vi].id.counterId;

    //Console.WriteLine("Value in Map: " + PerfByID.get(counterID));

    Console.WriteLine("-------- Value : " + pmCSV.value);

    }

    }

    }

    }

    }

    else

    {

    Console.WriteLine("Performance statistics not available for this entity!");

    }

    }

    }

    else

    {

    Console.WriteLine("Perf Metrics not fetched");

    }

  • Is there an online community which deals with promotion within the Fed/DoD IT apple? Currently, I work for the NAVY and a nightmare HP NMCI. Thank you.

    It was more of a general question asking management and online community eventually the federal and/or DoD workers who might be unhappy with the current situation of technology of the federal workforce and so therefore could discuss, share and work information to try to improve this situation. Thank you.

    edhazelwood wrote:

    It was more of a general question asking management and online community eventually the federal and/or DoD workers who might be unhappy with the current situation of technology of the federal workforce and so therefore could discuss, share and work information to try to improve this situation. Thank you.

    «I currently work for the NAVY and a nightmare HP NMCI.»

    If you are now looking for a Mac NMCI nightmare? Evolution towards a Mac environment will do nothing to improve the NMCI environment.

    Why don't do you a Google search or speak to your personal COMPUTING support to discuss your NMCI questions? These forums are to help users of the Apple/Mac product with Apple/Mac product questions.

  • Recently, I changed the password for the administrator and I forgot what it was.

    original title: password__ administrator

    Recently, I changed the password for the administrator and I forgot what it was. The profile of my son is set to standard, and I can't access anything whatsoever. I don't have another administrator account to change the password again. I have created a disk to reset password on the profile of my son and I'm going to change the password on the account and it will allow me to do to change the password, and then it pops up with an error, when I'm finished. I also tried to activate the net user administrator safe mode and it appears with and error 5 on that. Can someone help me please.

    Hello

    Unfortunately, it's in the code of conduct for these forums to help users to circumvent passwords and security settings. You will need to remember the password or reinstall.

    Good luck, Rick Rogers, aka "Crazy" - Microsoft MVP http://mvp.support.microsoft.com Windows help - www.rickrogers.org

  • I've updated the Mac driver for the 8600 and direct wireless printing is no longer works. V5.9.1

    I've updated the Mac driver for the 8600 and direct wireless printing is no longer works. The HP utility is v5.9.1, Mac OS x 10.7. I did the software update and a new driver HP was part of the package. HP ePrint still works, and print tests are okay for General network settings are intact. None of the applications that use the print dialogue box standard and local networking make it through the print queue. Any tips? Any way to roll back a driver version? Or quickly get the next revision and hope printing works again? Thank you.

    Update: OSX-specific Version is 10.7.5, model of the printer is HP OfficeJet 8600. See you soon.

    Hello

    Try to reboot the router and check if that can help you.

    After connecting the back of the router, wait 30-60 seconds and restart the printer and Mac.

    If it persists, try resettign the system as follows:

    * Be aware that reset the printer system will eliminate any existing queue and reset all custom settings driver.

    Click on the Apple menu and then click on System Preferences.
    Select Print & Scan.
    Right click (or Ctrl + click) your product with the Printers list in the left panel and then click on reset printing system.
    Click OK to confirm the reset.
    Type your user name and password.
    Click OK. The printing system resets.

    Now reconfigure the device by following the HP (under Utilities Applications\hewlett-Packard\Device) installation wizard.

    Please let me know if this can help,

    Shlomi

  • YES for the WWN and Mac

    When I create pools of wwn and Mac for a service profile template, is there a block of addresses that start with a YES that are specific to UCS?  In this guide: http://www.ciscosystems.sc/en/US/products/ps10281/products_configuration_example09186a0080af7515.shtml, I see a trick in the window of this picture: http://www.cisco.com/image/gif/paws/110297/create-sp-ucsblade-11.gif that specifies the use of the prefix 20:00:00:25:B5:xx:xx:xx will ensure uniquiness in WWN name, but when I'm in the same screen on our UCS, I don't see this trick.  The same goes for MACs, there at - it a block with certain values that I should start with?  The MAC of the guide section shows 02:25:B5:00:00:00 in the configuration window: http://www.cisco.com/image/gif/paws/110297/create-sp-ucsblade-09.gif but it is this unique UCS?

    Thank you.

    For the MACs Cisco recorded the program YES 00: 25:b5 the last three bytes are to you. You can either some arbitrary numbers of makeup or you can put a logic behind it. Here's what I recommend for MACs.

    • Create two clusters of MAC; one for the fabric and the other for fabric B
    • For the last three bytes, use the first for the site/cluster and the other for fabric or B. Example site 1, group 1 and fabric would be this 00:25:b5:11:a0:00 and go up from there. Fabric B would be this 00:25:b5:11:b0:00 and this 00:25:b5:12:a0:00 cluster 2.

    For the WWNNs and the WWPN, you want three pools; one for the node WWN and two for the port WWN (vHBA).

    Same concept here for the WWNNs use something like 20:11:00:25:b5:00:00:00 for the site 1 cluster 1 and 20:12:00:25:B5:00:00:00 for cluster 1 2 site.

    For the WWPN pools do one for fabric and a fabric b like this

    • Fabric of the 1 Group 1 site - 20:00:00:25:b5:11:aa:00
    • Fabric B 1 Group 1 - 20:00:00:25:b5:11:bb:00 of the site

    By creating pools MAC and WWPN for each tissue, you can easily identify what fabric on a MAC or WWN comes when you look at the MAC table on a switch or what zoning, you can easily select WWN. might be useful when troubleshooting as well.

  • Iterator for the table and form is a problem during the cleaning of the records

    Hello

    I use JDev 12.1.2.

    I have an object of the detail view. I represent a part of its fields in a table and the rest in a form. I use the same iterator. Basically, I dragged and dropped the object even from the view of the data control and created a table and form layout with the fields I wanted in each provision. I put in place a clear feature for the rows in the table with a clear"" key. -on click I delete the line of the iterator in the managed bean. When I do this the selected record is deleted and the next record is displayed. But fields entered in the form layout also gets deleted. (the form should also be showing the record currently selected - it shows but entrable fields in the form are deleted because of claire that I did on the previous line.) If anyone can help get this resolved?

    Not use the same iterator for the tables and forms here? The links are in the row (row.bindings...) for the table, but for the form it is (links...). The Delete on the current row operation is causing the iterator delete all fields of links instead of from the line? Please shed some light.

    Thank you

    UMA

    How do you rank on the iterator compensation?

    use resetActionListener in your clear button and let us know what is happening?

    Ashish

  • How to reassign another employee for the account and remove my name

    I'm no longer in the Department and should reassign them to another employee for the account and remove my name.  How can I do this?

    [Personal information deleted by Moderator]

    Team license links that can help

    -https://helpx.adobe.com/contact/creative-cloud-teams.html using the team

    -manage your account http://forums.adobe.com/thread/1460939?tstart=0 team

  • How can I add a separate apple for the iphone and ipad wife id

    How can I add a separate apple for the iphone and ipad wife id

    Hi, are the measures already implemented? If they are, you need to configure them again and establish a Apple ID at this time.

    Apple ID - Support official Apple

  • How to get back my data for the health and the watch Apps once I've restored my phone?

    How to get back my data for the health and the watch Apps once I've restored my phone?

    From the backup, you're going to be restoration.

    If you back up to iTunes, make sure that it is an encrypted backup.

  • Is it possible to play different sounds for the emails and instant messages?

    Hello

    I was wondering if it was possible to play different sounds for the emails and instant messages. I use Thunderbird quite often with emails and instant messages imported from Gtalk.

    I think it would be very convenient to be able to distinguish the two sounds, because they do not involve the same things.

    Thank you very much.

    Olivier Hubert.

    There are only six modules of cat, three of them are on notifications. Choose the one you think will do the job for you. https://addons.Mozilla.org/en-us/Thunderbird/Extensions/chat/?sort=popular

  • And how does one remove Christmas lights that have been offered as a decoration for the top and shifts of the screen. They tend to hide the navigation bar.

    And how one removes the Christmas lights that have been offered as a decoration for the top and bottom of the screen. They tend to hide the navigation bar. Several days ago Firefox gave the 'dress-up' in a message.

    It seems that https://addons.mozilla.org/firefox/addon/christmas-lights/ is added as an extension, but is categorized as a character (lightweight themes). Go to tools > Modules then check extensions and themes, and then uninstall it.

    Now that the status bar is now the toolbar addons that I see those that are listed are all personas and they do not affect the toolbar addons you would also find a theme, and think that it must be very confused now that I no longer able to filter topics with a Google addons research - phooey.

    Extensions can be identified with intitle: Add - ons and have changed my research of extension add-ons accordingly.

  • my external cd will not appear in the finder or on the desktop.  I went into preferences for the finder and intended to show the CD, I can load a blank cd and iTunes says and I burn on it then the cd will appear on the desktop.

    I don't see my external cd in the finder under devices, I can load a blank cd and iTunes says it's white and I can burn songs, then the cd icon appears on the desktop, went into preferences for the finder and ticked the box show the cd.  Help please?  CD has been disconnected and placed back started loading but no show, iMac says he had an attached cd when I search.

    CD/DVD players don't appear that a disk is inserted. It's normal.

Maybe you are looking for