Unbinds handler <name>, essentially reverting the same bind command
traped move up { <oid> | "<pattern>" | fallback } <name>
Move match between trap and handler higher in the list, so that it can be processed sooner example:
# traped list matches
.1.2.3* test1 .1.2.3.4.5 test2
(in case a trap with oid .1.2.3.4.5 comes - test1 will be processed first, then test2)
# traped move up .1.2.3.4.5 test
# traped list matches
.1.2.3.4.5 test2 .1.2.3* test1
(in case a trap with oid .1.2.3.4.5 comes - test2 will be processed first, then test1)
traped move down { <oid> | "<pattern>" | fallback } <name>
Move match between trap and handler lower in the list, so that it can be processed later