cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1212
Views
0
Helpful
1
Replies

How to remove a file with SNMP from router

guidobrinkmannl
Level 1
Level 1

Hi,

On a 3945 voicegateway,

I want to remove a wave file (announcement), with the purpose that a new one can be automaticaly downloaden from UCCE to the box.

Is there a way to do that automaticaly with SNMPSET <voicegateway> <MIB OID> <??wave file name??> <reload>

thanks,

      

EDIT: or clear the cache, which it should be I think. (all wave file cache, or only one file, not sure what should be used and/or what is possible

1 Reply 1

Dan Frey
Cisco Employee
Cisco Employee

Take a look at the CISCO-FLASH-MIB to copy and delete files with snmp.

To delete a file called "isakmp_staticroute_eem.tcl" on flash:

#ciscoFlashMiscOP branch to call out file to delete, createAndGo

[dafrey@HammerHead  TC$ snmpset -v 2c -c private 192.168.0.1  ciscoFlashMiscOpCommand.101 i  3 \ ciscoFlashMiscOpDestinationName.101 s isakmp_staticroute_eem.tcl \

ciscoFlashMiscOpEntryStatus.101  i 4

CISCO-FLASH-MIB::ciscoFlashMiscOpCommand.101 = INTEGER: delete(3)

CISCO-FLASH-MIB::ciscoFlashMiscOpDestinationName.101 = STRING: isakmp_staticroute_eem.tcl

CISCO-FLASH-MIB::ciscoFlashMiscOpEntryStatus.101 = INTEGER: createAndGo(4)

#Verify file is removed

[dafrey@HammerHead TCL]$ snmpwalk -v 2c -c private 192.168.0.1 ciscoFlashMiscOpTable

CISCO-FLASH-MIB::ciscoFlashMiscOpCommand.101 = INTEGER: delete(3)

CISCO-FLASH-MIB::ciscoFlashMiscOpDestinationName.101 = STRING: isakmp_staticroute_eem.tcl

CISCO-FLASH-MIB::ciscoFlashMiscOpStatus.101 = INTEGER: miscOpOperationSuccess(2)

CISCO-FLASH-MIB::ciscoFlashMiscOpNotifyOnCompletion.101 = INTEGER: false(2)

CISCO-FLASH-MIB::ciscoFlashMiscOpTime.101 = Timeticks: (200) 0:00:02.00

CISCO-FLASH-MIB::ciscoFlashMiscOpEntryStatus.101 = INTEGER: active(1)

#destroy row

[dafrey@HammerHead TCL]$ snmpset -v 2c -c private 192.168.0.1 ciscoFlashMiscOpEntryStatus.101 i 6

CISCO-FLASH-MIB::ciscoFlashMiscOpEntryStatus.101 = INTEGER: destroy(6)

Review Cisco Networking for a $25 gift card