Why would you want to disable CDP on an interface or globally?
You don't want to allow adjacent devices to gain information about this router for security reasons.SolutionYou can disable CDP on a single interface by using the command no cdp enable interface configuration command: Router1#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router1(config)#cdp runRouter1(config)#interface FastEthernet0/0 Router1(config-if)#no cdp enableRouter1(config-if)#end Router1#And you can disable all CDP on the router with the global configuration command, no cdp run: Router1#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router1(config)#no cdp runRouter1(config)#end Router1#