Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Table of Contents

Table of Contents

...

How to remove ghost nics on vmware machines that have been P2Ved

  1. Open up a command prompt
  2. Type –

    Code Block
    themeEmacs
    languagepowershell
    SET DEVMGR_SHOW_NONPRESENT_DEVICES=1?

    and hit Enter

  3. Type –

    Code Block
    themeEmacs
    languagepowershell
    START DEVMGMT.MSC

    and hit Enter

  4. Once the Device Manger opens to the “View” menu and select “Show Hidden Devices”. Expand the Network Interface portion of the device tree and you should be able to remove the phantom NIC.

Enable SNMP Monitoring

  1. Turn on SSH
    1. Login
    2. Navigate to Configuration
    3. Click on Security Profile
    4. Go to Properties
    5. Enable SSH
  2. SSH into server
  3. edit /etc/vmware/snmp.xml 
    1. vi /etc/vmware/snmp.xml
    2. hit "i" to insert text
    3. Edit the config to mimic the following configurations (You can also use IP instead of the fqdn): 

      Code Block
      themeEmacs
      languagehtml/xml
      <config>                                                                                                          
      <snmpSettings>                                                                                            
      <enable>true</enable>                                                                       
      <communities>community</communities>                                    
      <port>161</port>                           
      <targets>server.fqdn.local/communities</targets>
      </snmpSettings>
      </config>
    4. hit Esc, then :w to write changes
    5. hit Esc, then :q to exit
  4. Restart SNMP Services 

    Code Block
    themeEmacs
    languagebash
    services.sh restart

Second Header