Physical Domain
Location in GUI: Fabric
» Access Policies
» Physical and External Domains
» Physical Domains
Diagram
Section titled “Diagram”Classes
Section titled “Classes”access_policies (apic)
Section titled “access_policies (apic)”Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
physical_domains | List | [physical_domains] | No |
physical_domains (apic.access_policies)
Section titled “physical_domains (apic.access_policies)”Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
name | String | Regex: ^[a-zA-Z0-9_.:-]{1,64}$ | Yes | |
vlan_pool | String | Regex: ^[a-zA-Z0-9_.:-]{1,64}$ | Yes | |
security_domains | List | String[Regex: ^[a-zA-Z0-9_.:-]{1,64}$ ] | No |
Examples
Section titled “Examples”apic: access_policies: physical_domains: - name: PHY1 vlan_pool: STATIC1
Example-1: This example creates a physical domain named PROD_PHY
that is associated with a VLAN pool called PROD_VLANS
using dynamic allocation. The physical domain is also linked to two security domains: PROD_SEC
and AUDIT_SEC
. This configuration ensures that the physical domain is properly segmented and secured according to organizational requirements.
apic: access_policies: vlan_pools: - name: PROD_VLANS allocation: dynamic physical_domains: - name: PROD_PHY vlan_pool: PROD_VLANS security_domains: - PROD_SEC - AUDIT_SEC
Example-2: This example defines a physical domain named LAB_PHY
using the VLAN pool LAB_VLANS
with static allocation. It is associated with the security domain LAB_SEC
, suitable for lab or test environments.
apic: access_policies: vlan_pools: - name: LAB_VLANS allocation: static physical_domains: - name: LAB_PHY vlan_pool: LAB_VLANS security_domains: - LAB_SEC