mirror of
https://github.com/dtzp555-max/aci-sim.git
synced 2026-07-21 21:15:12 +00:00
aci-sim is a stateful REST simulator of a 2-site Cisco ACI fabric (per-site APIC + ND/NDO management planes) — for testing ACI automation (Ansible cisco.aci / cisco.mso, aci-py, custom REST clients) and CI gates without real hardware. Highlights: APIC + NDO REST surface served from one in-memory MIT built from a declarative topology.yaml; port mode + sandbox (real per-device IPs on :443) run modes; LLDP/CDP neighbor visibility; NDO->APIC deploy mirror (multi-site templates materialize onto the target sites' APIC stores); real-APIC fvBD default attributes; file-backed state save/restore; an `aci-sim` CLI (validate/show/graph/run/new/init/lldp); and an 888-test suite. History squashed for the public release. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
22 lines
685 B
INI
22 lines
685 B
INI
; Example inventory for running the cisco.aci playbooks in this directory
|
|
; against aci-sim.
|
|
;
|
|
; Port mode (default `bash scripts/run.sh`):
|
|
; host = 127.0.0.1
|
|
; port = 8443 (APIC site A) — see README.md §Configuration for
|
|
; APIC_A_PORT/APIC_B_PORT if you changed the defaults.
|
|
;
|
|
; Sandbox mode (`sudo bash scripts/sandbox-up.sh`):
|
|
; host = the site's mgmt_ip from topology.yaml (e.g. 10.192.0.11)
|
|
; port = 443 (the default; cisco.aci's aci_port omitted or set to 443)
|
|
|
|
[aci_sim]
|
|
sim-apic-a ansible_host=127.0.0.1 aci_port=8443
|
|
|
|
[aci_sim:vars]
|
|
aci_hostname={{ ansible_host }}
|
|
aci_username=admin
|
|
aci_password=cisco
|
|
aci_validate_certs=false
|
|
aci_use_ssl=true
|