Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Mats2208/MCP-Packet-Tracer/llms.txt
Use this file to discover all available pages before exploring further.
pt_estimate_plan is a lightweight dry-run tool that computes the expected size of a topology — number of devices by category, number of links by type, number of routing and DHCP configuration blocks — without running the full planning pipeline. No TopologyPlan is generated, no IP addresses are assigned, and no validation is performed. This makes it ideal for quickly gauging the scale and complexity of a proposed network before committing to a full pt_plan_topology or pt_full_build call.
Parameters
pt_estimate_plan accepts 9 topology-shape parameters. Unlike pt_plan_topology, it does not accept model or template parameters (router_model, switch_model, template, floating_routes, ospf_process_id, eigrp_as) — the estimator computes counts arithmetically and does not build the full model, so those parameters are not relevant here.
Number of routers. Accepts 1 to 20.
Number of PCs per LAN (applied uniformly across all LANs).
Number of laptops per LAN.
Number of access switches per router (0 to 4).
Number of server hosts.
Number of access points — capped at one per router.
Whether a WAN cloud node is included.
Whether DHCP pools will be generated.
Routing protocol (
static, ospf, eigrp, rip, none). Used to estimate the number of routing config blocks.Returns
Device counts broken down by category:
routers— number of routersswitches— total switches (routers × switches_per_router)pcs— total PCslaptops— total laptopsaccess_points— total APs (capped atrouters)servers— total serversclouds— 1 ifhas_wanis true, otherwise 0total— sum of all above
Link counts broken down by connection type:
router_to_router— chain links between routers (routers - 1)router_to_switch— one per switchswitch_to_pc— one per PCswitch_to_laptop— one per laptopswitch_to_access_point— one per APswitch_to_server— one per serverrouter_to_cloud— 1 ifhas_wan, otherwise 0total— sum of all above
Estimated configuration block counts:
routers_to_configure— number of routers that will receive IOS configdhcp_pools— number of DHCP pools (equalsrouterswhendhcpis true)static_routes— estimated count ofip routestatements (router_links × 2)ospf_configs/rip_configs/eigrp_configs— non-zero only for the selected routing protocolfloating_routes—"yes (backup via alternate paths)"or"no"
lan_subnets— number of /24 LAN subnets (equalsrouters)link_subnets— number of /30 point-to-point subnets (equalsrouter_links + wan_link)
A qualitative complexity rating:
"simple", "moderada", "compleja", or "muy compleja". Computed from a weighted score of routers, hosts, routing protocol, WAN, and floating routes.