Tag Archives | ping

GNU Alive 2.0.5 duyuruldu

Periyodik bir ping programı olan GNU Alive’in 2.0.5 sürümü, Thien-Thi Nguyen tarafından duyuruldu. Nguyen; 2.0.4 sürümünden yalnızca bir gün sonra yeni bir sürüm duyurmak zorunda kalmalarının bir hata düzeltme işlemine dayandığını söyledi. “Ping -n -i PERIOD HOST” ile benzer şekilde çalıştığı belirtilen yazılımın, kabuk komut isteminde rahatça kod yazanlar için çok da gerekli olmadığı ifade ediliyor. Kullanıcı tanımlı bir dizi ana bilgisayara tekrar tekrar ping gönderen GNU Alive, ilgili ağların ortadan  kalkmasını engellemeye çalışır. GNU Alive, belirli bir ana bilgisayarla periyodik olarak ağ bağlantısı (diğer adıyla “ping”) yapmak için bir komut satırı programı sağlayan bir pakettir. Tüm uygun GNU programları gibi, “canlı” seçenekleri destekleyen yazılım, istenen bilgileri stdout’a görüntüler ve başarıyla çıkış yapar. GNU Alive 2.0.5 hakkında ayrıntılı bilgi edinmek için sürüm duyurusunu inceleyebilirsiniz..

Continue Reading →

GNU Alive 2.0.5 edinmek için aşağıdaki linkten yararlanalabilirsiniz.

0

GNU Alive 2.0.4 duyuruldu

Periyodik bir ping programı olan GNU Alive’in 2.0.4 sürümü, Thien-Thi Nguyen tarafından duyuruldu. Sözlerine “yeni yılınız kutlu olsun” diyerek başlayan Nguyen; bunun bir bakım sürümü olduğunu söyledi. Nguyen; GNU texinfo 6.8, GNU Automake’in 1.16.5, GNU Autoconf’un 2.71, GNU Guile 2.2.7, Guile-BAUX’un 20211208.0839.a5245e7, GNU gnulib’in 2021-12-10 sürümlerine güncelendiğini söyledi. “Ping -n -i PERIOD HOST” ile benzer şekilde çalıştığı belirtilen yazılımın, kabuk komut isteminde rahatça kod yazanlar için çok da gerekli olmadığı ifade ediliyor. Kullanıcı tanımlı bir dizi ana bilgisayara tekrar tekrar ping gönderen GNU Alive, ilgili ağların ortadan kalkmamasını teşvik etmeyi sağlamaya çalışır. GNU Alive, belirli bir ana bilgisayarla periyodik olarak ağ bağlantısı (diğer adıyla “ping”) yapmak için bir komut satırı programı sağlayan bir pakettir. Tüm uygun GNU programları gibi, “canlı” seçenekleri destekleyen yazılım, istenen bilgileri stdout’a görüntüler ve başarıyla çıkış yapar. GNU Alive 2.0.4 hakkında ayrıntılı bilgi edinmek için sürüm duyurusunu inceleyebilirsiniz..

Continue Reading →

GNU Alive 2.0.4 edinmek için aşağıdaki linkten yararlanalabilirsiniz.

0

GNU Alive 2.0.3 duyuruldu

Periyodik bir ping programı olan GNU Alive’in 2.0.3 sürümü, Thien-Thi Nguyen tarafından duyuruldu. Sözlerine “yeni yılınız kutlu olsun” diyerek başlayan Nguyen; bunun bir bakım sürümü olduğunu söyledi. “Ping -n -i PERIOD HOST” ile benzer şekilde çalıştığı belirtilen yazılımın, kabuk komut isteminde rahatça kod yazanlar için çok da gerekli olmadığı ifade ediliyor. Kullanıcı tanımlı bir dizi ana bilgisayara tekrar tekrar ping gönderen GNU Alive, ilgili ağların ortadan kalkmamasını teşvik etmeyi sağlamaya çalışır. GNU Alive, belirli bir ana bilgisayarla periyodik olarak ağ bağlantısı (diğer adıyla “ping”) yapmak için bir komut satırı programı sağlayan bir pakettir. Tüm uygun GNU programları gibi, “canlı” seçenekleri destekleyen yazılım, istenen bilgileri stdout’a görüntüler ve başarıyla çıkış yapar. GNU Alive 2.0.3 hakkında ayrıntılı bilgi edinmek için sürüm duyurusunu inceleyebilirsiniz..

Continue Reading →

GNU Alive 2.0.3 edinmek için aşağıdaki linkten yararlanalabilirsiniz.

0

Linux Network Commands Used In Network Troubleshooting

In the previous post, we talked about Linux process management. In this post, we will talk about Linux network commands and how to troubleshoot your network. Once you have confirmed that the physical network is working, the next step is to troubleshoot your network and here we come to our topic which is Linux network commands and how to use them to troubleshoot your network. We are going to cover the most used Linux network commands. The ping command is one of the most used Linux network commands in network troubleshooting. It is used to check whether or not a specific IP address can be reached. The ping command works by sending an ICMP echo request to check the network connectivity.

Continue Reading →

$ ping google.com

ping linux network commands

These results are showing a successful ping, and it can be described as the trip of an echo request issued by our system to google.com.

This command measures the average response. If there is no response, then maybe there is one of the following:

  • There is a physical problem on the network itself.
  • The location might be incorrect or non-functional.
  • The ping request is blocked by the target.
  • There is a problem in the routing table.

If you want to limit the number of echo requests made to 3, you can do it like this:

$ ping -c 3 google.com

ping -c Linux network commands

Here ping command stops sending echo requests after 3 cycles.

There are some issues that you should consider about ping command. These issues may not necessarily mean that there is a problem like:

Distance to the target: so if you live in the U.S. and you ping a server on Asia, you should expect that this ping will take much time than pinging a server in the U.S.

The connection speed: if your connection is slow, ping will take longer time than if you have a fast connection.

The hop count: this refers to routers and servers that the echo travels across till reaching its destination.

The important rule about ping is that the low ping is always desirable.

Get DNS Records Using dig and host Commands

You can use the dig command to verify DNS mappings, host addresses, MX records, and all other DNS records for a better understanding of DNS topography.

The dig command was developed to replace nslookup command.

$ dig google.com

dig linux network commands

The dig command by default searches for A records, you can obtain information for specific record types like MX records or NS records.

$ dig google.com MX

dig mx linux network commands

You can get all types of records by using ANY query.

$ dig google.com ANY

dig ANY linux network commands

The dig command makes a reverse lookup to get DNS information like this:

$ dig –x 8.8.8.8

dig -x linux network commands

dig command does its query using the servers listed on /etc/resolv.conf.

The host command is similar to dig command.

$ host –a google.com

host linux network commands

Also, you can perform reverse lookups using host command.

$ host 8.8.8.8

So both commands work in a similar way but dig command provides more advanced options.

Diagnose Network Latency Using traceroute Command

The traceroute command is one of the most useful Linux network commands. It is used to show the pathway to your target and where the delay comes from. This command helps basically in:

  • Providing the names and the identity of every device on the path.
  • Reporting network latency and identify at which device the latency comes from.

$ traceroute google.com

traceroute linux network commands

The output will provide the specified host, the size of the packet that will be used, the IP address, and the maximum number of hops required. You can see the hostname, IP address, the hop number, and packet travel times.

To avoid reverse DNS lookup, use the -n option.

$ traceroute -n google.com

traceroute -n linux network commands

By using traceroute command, you can identify network bottlenecks. The asterisks shown here means there is a potential problem in routing to that host, as the asterisks indicate packet loss or dropped packets.

The traceroute command sends a UDP packet, traceroute can send UDP, TCP, and ICMP.

If you need to send ICMP packet, you can send it like this:

$ sudo traceroute -I google.com

traceroute -I linux network commands

To use a TCP variation, it can be used like this:

$ sudo traceroute -T google.com

traceroute -T linux network commands

This is because some servers block UDP requests, so you can use this method.

In this case, you can send UDP, ICMP, or TCP to bypass these issues.

mtr Command (Realtime Tracing)

This command is an alternative to traceroute command.

$ mtr google.com

mtr linux network command

The best thing about mtr command is that it displays real-time data unlike traceroute.

Furthermore, you can use the mtr command with –report option, this command sends 10 packets to each hop found on its way like this:

$ mtr --report google.com

mtr report linux network command

This command gives a huge amount of details better than traceroute.

If this command doesn’t run using a normal user account, you should use root, since some distros adjust the permission of this binary for root users only.

Checking Connection Performance Using ss Command

The socket statistics command ss is a replacement for netstat, it’s faster than netstat and gives more information.

The ss command gets its information directly from the kernel instead of relying on /proc directory like netstat command.

$ ss | less

ss linux network command

This command outputs all TCP, UDP, and UNIX socket connections and pipes the result to the less command for better display.

You can combine this command with either the -t to show TCP sockets or -u to show UDP or -x to show UNIX sockets. And you should use -a option combined with any of these options to show the connected and listening sockets.

$ ss -ta

ss -ta linux network command

To list all established TCP sockets for IPV4, use the following command:

$ ss -t4 state established

ss established connections

To list all closed TCP states:

$ ss -t4 state closed

You can use the ss command to show all connected ports from a specific IP:

$ ss dst XXX.XXX.XXX.XXX

And you can filter by a specific port like this:

$ ss dst XXX.XXX.XXX.XXX:22

Install and Use iftop Command For Traffic Monitoring

iftop utility or iftop command is used to monitor the traffic and display real-time results.

You can download the tool like this:

$ wget http://www.ex-parrot.com/pdw/iftop/download/iftop-0.17.tar.gz

Then extract it:

$ tar zxvf iftop-0.17.tar.gz

Then compile it:

$ cd iftop-0.17

$ ./configure

$ make

$ make install

If you got any errors about libpcap, you can install it like this:

$ yum install libpcap-dev

And you can run the tool as a root user like this:

$ sudo iftop -I

iftop command

And you will see this table with a real-time data about your traffic.

add P option with iftop to show ports.

$ sudo iftop -P

iftop -P linux network commands

You can use the -B option to display the output in bytes instead of bits which is shown by default.

$ iftop -B

iftop -B linux ntwork command

There a lot of options, you can check them man iftop

arp Command

Systems keep a table of IP addresses and their corresponding MAC addresses, this table is called ARP lookup table. If you try to connect to an IP address, your router will check for your MAC address. If it’s cached, ARP table is not used.

To view the arp table, use the arp command:

$ arp

arp linux network command

By default, arp command shows the hostnames, you can show IP addresses instead like this:

$ arp -n

arp -n linux network command

You can delete entries from the arp table like this:

$ arp -d HWADDR

Packet Analysis with tcpdump

One of the most important Linux network commands is The tcpdump command. tcpdump command is used to capture the traffic that is passing through your network interface.

This kind of access to the packets which is the deepest level of the network can be vital when troubleshooting the network.

$ tcpdump -i <network_device>

tcpdump linux network command

You can also specify a protocol (TCP, UDP, ICMP and others) like this:

$ tcpdump -i tcp

Also, you can specify the port:

$ tcpdump -i port 80

tcpdump will keep running until the request is canceled; it is better to use the -c option in order to capture a pre-determined number of events like this:

$ tcpdump -c 20 -i

You can also specify the IP to capture from using src option or going to using dst option.

$ tcpdump -c 20 -i src XXX.XXX.XXX.XXX

You can obtain the device names like this:

$ ifconfig

ifconfig linux network command

You can save the traffic captured from tcpdump to a file and read it later with -w option.

You can save the traffic captured from tcpdump to a file and read it later with -w option.

$ tcpdump -w /path/ -i

And to read that file:

$ tcpdump -r /path

I hope that Linux network commands we’ve discussed in this post could help you troubleshoot some of your network problems and take the right decision.

Thank you.

likegeeks.com

0