The Clear Ip Route Cisco command

Command: clear ip route Function: Removes all entries from the IP routing table. Syntax: clear ip route [<address> | <network> | <wildcard> | <all>] Parameters: <address>: Specifies the IP address of the route that you want to remove. <network>: Specifies the network address of the route that you want to remove. <wildcard>: Specifies the wildcard mask of…

Read More

Nginx Responding To All Domain Names

The first server listing in the nginx configuration will be the default action for all domain name requests to that server. This will be true unless a server action is labeled default_server. This means that the server might render a website for any domain name that is requested from nginx. To prevent this behavior you must…

Read More

How To Compile TypeScript On The Command Line

TypeScript is a programing language that is a superset of JavaScript. It allows setting types and allows ES6 functionality. It is the preferred language of Angular2 and is maintained by Microsoft. To compile TypeScript into JavaScript you need to have TypeScript installed. To install TypeScript using the Node Package Manager (npm) type the command: npm…

Read More

Clojure if-else Statement

If-else statements are common in programing languages. Clojure does not have an explicit if-else statement. Instead, Clojure’s if statement provides a place for an ‘else’ case. A Clojure if statement would look like this (if true “that is true” “that is false”) This statement looks at the first true. If it is not false or…

Read More

Top Programming Languages For Network Engineers

Network engineering and administration used to not need much programming skill. All you needed to know was how to run commands on switches and routers and how to configure networking devices. These days a network engineer has to know how to write code. Otherwise he or she risks becoming outdated and useless in their job….

Read More