Index: /branches/rel_apv_10_7_3/usr/click/lib/libca_snmp/snmp_cadmin.c
===================================================================
--- /branches/rel_apv_10_7_3/usr/click/lib/libca_snmp/snmp_cadmin.c	(revision 39941)
+++ /branches/rel_apv_10_7_3/usr/click/lib/libca_snmp/snmp_cadmin.c	(working copy)
@@ -2477,6 +2477,22 @@
 		isipv6 = 0;
 	}
 
+        /* Add confirmation prompt in interactive mode */
+        if (cli_interactive()) {
+            printf("Are you sure you want to delete SNMP host %s? (Type YES to confirm): ", ipstr);
+            if (fgets(confirm, sizeof(confirm), stdin) == NULL) {
+                printf("Invalid input\n");
+                return CA_ERR_SNMP_INVAL;
+            }
+            /* Remove newline character if present */
+            confirm[strcspn(confirm, "\n")] = '\0';
+
+            if (strcmp(confirm, "YES") != 0) {
+                printf("Deletion cancelled\n");
+                return CA_SNMP_OK;
+            }
+        }
+
 	if (pInfo == NULL) {
 		return CA_ERR_SNMP_SHM_ATT;
 	}
