Hi,
Basically, you just have to encapsulate your Cisco commands into a certain format.
If you don't have parameters to specify (which I assume as you want all your devices to have same banner & VLAN naming convention) your script will looks like :
//Comment
CLI
{
configure terminal
your cisco commands
}
In your case, it should be something like:
//Banner
CLI
{
configure terminal
banner motd ^CCC
UNAUTHORISED ACCESS TO THIS DEVICE IS PROHIBITED.
and everything else you want/need to add
.^C
}
and for the VLAN part
//VLAN1
CLI
{
configure terminal
int vlan1
name XXX
ip adress XXXXXXXXXX
}
and the same for other vlans
When you will apply the script, you'll have a check box to check if you want the config to be saved.
I hope it will help you
Just to add, having the node in NCM with proper SNMP write access is mandatory.