| by Arround The Web | No comments

How To Find Available Network Interfaces On Linux

This detailed tutorial addresses all the possible ways to find available network interfaces on Linux and Unix operating systems.
The post How To Find Available Network Interfaces On Linux appeared first on Linux Today.

Read More
| by Scott Kilroy | No comments

How to Configure Static IP Address on Ubuntu 20.04

Source: LinOxide

Read More
| by Arround The Web | No comments

Does an Ethernet splitter slow down speed?

This post summarises detailed information about ethernet splitter, its speed, and different FAQ to help you choose the best hardware.
The post Does an Ethernet splitter slow down speed? appeared first on Linux Today.

Read More
| by Arround The Web | No comments

How to Configure Static IP Address on Ubuntu 20.04

A static or fixed IP address is an IP address that does not change. Whether you reboot your device or home router, your device with a static IP address will get the same IP address. Here’s how to set a static IP address on your Ubuntu 20.04 insta…

Read More
| by Arround The Web | No comments

Nethogs – Monitor Linux Network Traffic Usage Per Process

There are tons of open-source network monitoring tools available for the Linux operating systems on the web. For example, you can use the iftop command to monitor bandwidth usage, the netstat command, or ss command to see reports on interface statistic…

Read More
| by Arround The Web | No comments

How to Install Snort on Ubuntu 20.04

Source: LinOxide

Read More
| by Arround The Web | No comments

15 Useful ifconfig Commands to Configure the Network Interface in Linux

ifconfig is short for “interface configuration”. It’s the utility for system/network administration in Unix/Linux operating systems to configure, manage and query network interface parameters via command-line interface or in a system configuration scripts. This article covers 15 ifconfig commands—with their practical examples—which might be very helpful to you in managing and configuring network interfaces in Linux […]

The post 15 Useful ifconfig Commands to Configure the Network Interface in Linux appeared first on Linux Today.

Read More
| by Arround The Web | No comments

Linux traceroute Command Explained with Examples

traceroute is a command line utility that prints the route (or hops) that a packet takes to reach another host. It is used for network diagnostics. In this article, we will discuss everything you want to know about the Linux traceroute command and how …

Read More
| by Scott Kilroy | No comments

How to Install and Use vnStat on Ubuntu

Source: LinOxide

Read More
| by Scott Kilroy | No comments

How to Install Ntopng on Ubuntu 20.04

The post How to Install Ntopng on Ubuntu 20.04 appeared first on LinOxide.

Read More
| by Arround The Web | No comments

What IP – A Network Information Tool for Linux

What IP is a graphical-based simple network information tool which provides information about IP address and listening ports. It is written in Python and GTK3. It is released under GPL3 license and the source
The post What IP – A Network Information To…

Read More
| by Scott Kilroy | No comments

How to Configure Static IP Address on Ubuntu 20.04

Usually, when a client system connects to a network via WiFi or an ethernet cable, it automatically picks an IP address from the router. This is made possible through the DHCP server which auto-assigns
The post How to Configure Static IP Address on Ubu…

Read More
| by Scott Kilroy | No comments

See all open ports

lsof -i TCP| fgrep LISTEN

Read More
| by Scott Kilroy | No comments

Using netstat

netstat -ntulp displays everything that is listening tcp and udp and the ip that it is listening on

Read More
| by Scott Kilroy | No comments

View network traffic (by port number)

To view web traffic (for example) use tcpdump -s 0 -w – port 80 | tcpdump -r – -A

Read More
| by Scott Kilroy | No comments

Check open ports with nmap

If you want to check if a particular port is open run nmap -p PORT_NUMBER IP_OR_DOMAIN_NAME for example nmap -p 80 example.com To use nmap to check if a port is open for tcp nmap -p port ipaddress for udp nmap -sU -p port ipaddress  

Read More