Saturday, October 27, 2012

Basics of HUB


Network HUB 

A HUB is a device, used in a LAN environment or used for connecting more than one computer. It has many number of PORTS for connection via UTP (RJ 45)cable. It is a small rectangular plastic box type having 4-5 PORTS. Similarly Large HUBS ranges from 8,12, 24 PORTS.
  • When a message (DATA) is passed from one computer to the HUB, then the HUB broadcasts the message to all of its PORTS means all other computers can access in the same time. Which may occur Collision in the DATA access, transfer .
  • One Advantage of using HUB is its very less expensive compared to switches.
  • The Disadvantage is ,the ports lie in single collision domain. The message or data comes to the HUB repeats many time at ports. Its non secure as DATA can be tracked or hacked.




   












HUBs are physical layer ( L1 ) devices and may be called as multiport repeater. Due to the broadcast feature, the packet frame is passed through all ports. 

Its basically useful for Home use or smaller networks as they are unmanaged.

-DR

Monday, August 1, 2011

Basic Network troubleshooting

Basic Network troubleshooting

Ping:

Ping is a command-line utility and is used for network troubleshooting.  It is available with every operating system by default. You need to open command prompt (cmd). 

After opening cmd, just type ping followed by host address (IP address) where you want to reach out. It is mostly required to know whether communication with the host is possible or not.  It works like, it sends out an ICMP echo request and receives a reply.

You can send ping request to web addresses too. For example, you can send ping request to google.com just by the below syntax,

C:\>ping www.google.com

C:\>Ping 127.0.0.1

If there is any missing reply, then it is understood that, there is some issue with the connectivity.

The time mentioned is between 13 milliseconds (ms) to maximum 50ms or more. It comes with approximate round trip times. 

When we are working in a LAN environment and we face there is any internet issue arises, we need to ping first to the gateway (or router) through which it connects internet. Some even ping to global DNS server of Google i.e. 8.8.8.8

Sometimes, administrators ping to switch, firewall and even computers from their own computer to check the connectivity is fine.

Sometimes a continuous ping is required while the troubleshooting work such as wire adjustments, punching repair is ongoing. In that case additional (-t) can be just added to the ping command such as 

C:\>ping 127.0.0.1 –t

Loopback plug

loopback plug or loopback adapter, which is a plug used to test physical ports to identify network issue. It can identify issues in network, network interface card, router interface etc.

Similarly it can be used in serial port, parallel USB ports, OFC ports etc.

IPconfig:

Ipconfig is a command line utility used with command (cmd) window. It is used to display all the details about the network. It shows the host IP address, router or adaptor IP address, VPN client address, subnet mask used, default gateway address etc. 

If you need to see all other information such as Physical MAC address, DNS and DHCP servers address, DHCP enable status then you need to use /all parameter with the syntax.

If you need help then you need to add question mark symbol 

Example

C:\Users\ User name >ipconfig 

C:\users\username>ipconfig/all

C:\Users\Username>ipconfig/?

Other than ipconfig syntax, you can know only MAC addresses by typing getmac at the command prompt. And use systeminfo to know many information about the system.

NSlookup:

NSlookup or Name server lookup command is used to diagnose or troubleshoot Domain Name System (DNS) and host name resolution. It is available if you are using TCP/IP protocol. It comes with two modes i.e. interactive and non-interactive.

In interactive mode, you can get only single set of data or information.

Example

C:\User\Username>nslookup www.google.com

You will receive all the name server address, IPv4 address of google.com

In non interactive mode you will receive more than one information at a time. 

By using the name server or DNS server, it translates the domain name to an IP address.

Netstat:

Netstat is a network administrator’s command and it displays TCP connections, ports on which a host is listening, IP routing table, IPV4 parameters etc.

Syntax is such as

Netstat -a: It shows all active TCP connections on which host is listening.

Netstat –e: It shows all the Ethernet statistics that includes number of bytes and packets sent and received, any errors if present, unicast packets, unknown protocols etc.

Netstat-r: It shows the contents of IP routing table.

PuTTY:

PuttY is an SSH and telnet client, developed by Simon Tatham for the windows platform. It is an open source software that is available with source code and with both 64 bit and 32 bit. You can download and use it for several activity such as Telnet, configuring devices, SCP, SSH. It provides a command line interface.

Speedtest.net:

Speedtest dot net is a very interactive tool to test the speed and performance of your internet connection. They have thousands of servers across globe that hosts the speedtest server.

-DR



Wednesday, July 27, 2011

Understanding Routing Table

Routing Table

We all know, that the router’s primary function is to forward a packet towards its destination address. A router have physical interfaces which connects to other network devices. 

The routing table contains a list of specific routing destinations or pair of IP addresses in its memory. Sometimes it is also called routing information base of RIB. When the router receives a packet of data, it references the routing table to know where to send that data. The device kernel reads the routing table. Each entry of row in the routing table defines a route. This route is in two types such as network routes and host routes. So the router does not have to send any query or to wait for a routing input from user to send packets each time.

Network routes says, how to reach to a specific network ID within the internetwork. Whereas the host route provides information to reach a particular host on a network.

All IP enabled devices use routing table. Means the routing table keeps the information about the entire topology of the network such as IP address, gateway address, port number, subnet mask, interface, metric.

Metrics: if in doubt about metrics, it is a number describes the best route or it helps in router to choose best route among multiple routes to the destination. It helps dynamic routing protocols like, RIP, OSPF, EIGRP to decide which is shortest and best path to reach the destination. 

Static routing uses a routing table which can preconfigured manually, where all entries will remain the same unless they are changed manually. It can be best used for small networks, hosts. For many small office work space, people use window system. If you want to add a static route to the table, the below syntax can be used:

Route ADD destination_network MASK subnet mask gateway_ip metric_cost

In case of Dynamic routing, protocols allow routers to get information from other (peer) routers on the network such as the routers can be configured to learn IP destinations from other routers in order to update routing table entries without user intervention. For more information in dynamic routing please refer to EIGRP, OSPF, BGP and RIP post. Dynamic routing is suitable for larger internetworks.

A sample routing table provided as below:

Network Destination

Subnet Mask

Gateway

Interface

Metric

101.X.X.0

255.255.255.0

10.X.X.2

Eth01

1

Default

0.0.0.0

10.X.X.3

Eth02

0

127.X.X.9

255.255.255.0

10.X.X.4

S0

291

10.X.X.8/16

255.255.255.0

10.X.X.1

GE1/0/0

11



-DR

Network Scanning Tools

Network Scanning through Nmap and Nessus Network scanning is a process used to troubleshoot active devices on a network for vulnerabilities....