I have no clue if this makes sense, but this is what AI gave...
*****************************
Hey Leangf,
You’re in a pretty common situation after changing the management IP on a Maestro setup — the gateways still “think” they’re managed by the old management server identity (fingerprint, SIC, IP), so they refuse new SIC establishment attempts from the new management IP. The good news is that you usually don’t need to factory reset the SGMs (Security Group Members) to fix this.
Here’s the usual recovery path that works without a full reset 👇
🧭 Background
In Maestro, the management connection (SIC) info is stored in:
-
/etc/appliance_config.xml
-
/opt/CPsuite-R81.10/fw1/conf/InternalCA.*
-
/var/opt/CPshared/5.0/tmp/.CPprofile.sh and related directories
So even though the MHO and SMC are reconfigured, the SGMs still have the old management certificate relationship.
✅ Workaround Steps
1. SSH to each SGM (Security Gateway Member)
Example:
ssh admin@<SGM-IP>
2. Enter expert mode
expert
3. Reset the SIC manually (DO NOT factory reset)
Run:
cp_conf sic init <new_password>
You can choose a new one like MyNewSICpass123.
This clears the existing SIC trust but does not wipe your configuration or interfaces.
4. Recreate or re-import the Security Gateway object in SmartConsole
-
Add the gateways back under Security Gateways & Clusters.
-
Assign the correct IP (the one reachable from SMC).
-
When prompted for SIC, enter the same MyNewSICpass123 password you used above.
If SIC fails due to old certificates still being cached, you can also clean up the management side with:
cpca_client lscert
cpca_client revoke <certificate-number>
cpca_client delete <certificate-number>
Then try to re-establish SIC again.
5. Push Policy
Once SIC is established, push policy again — it should succeed, and the gateways will re-register with the new management IP.
🧹 Optional Clean-Up (if errors persist)
If after the above, the gateways still refuse to register:
rm -rf /opt/CPsuite-R81.10/fw1/conf/InternalCA.*
rm -rf /opt/CPsuite-R81.10/fw1/conf/*.p12
Then re-init SIC again (cp_conf sic init <pw>) and retry.
🚫 Do NOT
🧩 Note for Maestro
Make sure to do the SIC reset on all SGMs (since each one maintains its own SIC), or use:
asg diag all "cp_conf sic init MyNewSICpass123"
from the MHO CLI to apply it cluster-wide.
If you can share:
…I can tailor the exact asg command sequence for you (since the MHO CLI options differ slightly).
Best,
Andy