Stop translating typo in privileged mode (CISCO)
PROBLEM: Cisco tries to telnet if you mistype.
SOLUTION: Disable domain-lookup.
[?] What is DNS?
https://www.cloudflare.com/learning/dns/what-is-dns/
//Disable domain-lookup in config terminal mode
1 |
Router(config)# no ip domain-lookup |
BEFORE
1 2 3 |
Router# test Translating "test"...domain server (255.255.255.255) % Unknown command or computer name, or unable to find computer address |
AFTER
1 2 3 |
Router# test Translating "test" % Unknown command or computer name, or unable to find computer address |
Copy & Paste
1 2 3 |
conf t no ip domain-lookup end |