CCNA – Page 15 – POFTUT

How To Discover Network Hosts With Nmap?

How To Discover Network Hosts With Nmap?

Hi. We started with Nmap target specification. Now we resume with host discovery options. Host discovery is detecting hosts in the same or remote network. Generally, we send a packet to the target host and then we get a response or not but some times we just listen and get packets from hosts. We decide … Read more

Introduction To Squid Proxy Tutorial with Examples

Introduction To Squid Proxy Tutorial with Examples

Proxy is an intermediate system that manages communication between two systems. In web applications, an HTTP proxy is mostly used type. The client makes a request to the proxy and then proxy makes the request to the server behalf of the client. So we may think that why we need an intermediary system for this … Read more

How To Configure RIP Routing For Cisco IOS?

How To Configure RIP Routing For Cisco IOS?

Hi, today we will look for some networking stuff. Up to now, I have not written any routing-related technical post. In this article, I am gonna show you some simple dynamic routing with RIP protocol. Routing is divided into two part which one is static. In static routing, routes are configured in the router by … Read more

How To Change Cisco IOS Time?

How To Change Cisco IOS Time?

Hi. Today we will look for changing the system time and prompt.  You may think that what is the relation between system time and prompt, you are right there are no relation:). System time is important for network devices because logs get meaning with them and ACL, VPN time limitations work truly with them. In … Read more

Tcpdump Tutorial With Examples

Tcpdump Tutorial With Examples

Tcpdump is a packet sniffer for everyday use. There is a lot of packet sniffers but tcpdump differs with his general availability and ease of use. Tcpdump use libcap library which is the core library used for packet sniffing. Here we will look at general usage examples of packet sniffing. Be aware that to use … Read more

How To Install and Use SNMP On Linux Tutorial with Examples?

Today we will look SNMP in Linux operating systems. Simple network management protocol named SNMP is designed for getting info and setting configuration in its entities. These entities may be a switch, router, pc, cabinet, printer, etc. Snmp was very popular in the 2000s. Today it is popular too but used for information gathering. What … Read more

Introduction To Scapy Network Packet Generator

Scapy is a tool for network protocol, package generation and manipulation and showing them in a visual way with graphics and 3D images. There are tools equivalent like hping3 but scapy is very flexible against it. Scapy can manipulate all data of general protocols like IP, Ethernet, tcp, udp etc. If you have a network … Read more

How To Find External or Wan IP Address Without Browser?

Sometimes I need external IP address of system I am logged on. The general solution is to use browser and search for “what is my address” . And magically google shows the external IP. But if you have no chance to use browser or especially GUI there must be an alternative for this. Here is  … Read more

Install Dnsmasq As Cache Dns Server

We have a lot of computer in our network. Our network speed is not too much. Sometimes especially in mornings our internet connection slows down. How can solve this with some dns related tricks? Dns is one of the mostly used network protocol. It can effect the internet speed. Making some optimizations will develop your … Read more

How To Delete Route In Ubuntu Linux?

I have some route in my routing table. But I want to delete one route from routing table. How can accomplish this? List Existing Routes To get detailed information about route that will be removed we list the existing routes in our system. $ sudo ip route show default via 192.168.122.1 dev ens3 10.0.3.0/24 dev … Read more