- How to Check IP Address on Linux using Command Line
- What is an IP Address?
- Method 1 – Using ifconfig Command
- Method 2 – Using ip Command
- 25 Popular Linux IP Command Examples(How to check Linux IP Address)
- Syntax
- Linux IP Command Examples
- Example 1: Check Linux IP Command Version
- Example 2: Check Linux IP Address
- Example 3: Check IP Rule List
- Example 4: Check IP Link Status
- Example 5: Check Link Stats using Linux ip command
- Example 6: Check Routing Table using Linux ip command
- Example 7: Display State of Devices Continuously using Linux ip command
- Example 8: Display MAC Addresses of the Connected System
- Example 9: Assign an IP Address to a network interface
- Example 10: Enable multicast feature on Network Interface
- Example 11: Disable multicast feature on Network Interface
- Example 12: Change MTU Size using Linux ip command
- Example 13: Change Packet Queue Length using Linux ip command
- Example 14: Enable ARP Feature on the Network Interface using Linux ip command
- Example 15: Disable ARP Feature on the Network Interface
- Example 16: Rename Your Network Interface Using Linux ip command
- Example 17: Check the Rule in multicast routing policy database
- Example 18: Check the Neighbor Table Parameters and Statistics
- Example 19: Change the Number of Packets Queued
- Example 20: Create a Tunnel Using Linux ip command
- Example 21: Bring Up Tunnel in Linux
- Example 22: Bring down Tunnel in Linux
- Example 23: Check Tunnel Status using Linux ip command
- Example 24 : Delete a Tunnel using Linux ip command
- Example 25: Check Other ip command options
- Настройка с нуля сервиса управления ИБП Network UPS Tools (NUT) для управления локально подключенным ИБП
- Описание
- Установка NUT
- Защита конфигурационных файлов
- Настройка NUT
- Настройка драйвера, способа подключения и времени выключения
- Настройка доступа системной группы NUT к ИБП по USB
- Настройка адресов и портов прослушивания подключений к NUT
- Настройка профиля пользователя для доступа к NUT
- Настройки мониторинга NUT
- Тест соединения
- Внутренние команды и переменные ИБП
- Настройка планировщика задач NUT upssched
- Заключение
- Linux: Configure and Control APC SmartUPS During a Power Failure
- Step #1: Install Apcupsd
- Step 2: Connect UPS
- Step #3: Configure UPS
- Configuration parameters used during power failures
- Configuration apcupsd network information server
- Step #4: Test ups
- How do I start apcupsd server?
- How do I see current status of my UPS?
- How do I view ups events such as power failure?
- A note about desktop GUI monitoring tool
- A note about web based monitoring tool
- Check out related media
How to Check IP Address on Linux using Command Line
How to check IP address on Linux machine using the command line interface? Mostly all of the Linux and Unix operating systems provides ifconfig and ip binary files. You can simply use these commands to find the local system IP address.
What is an IP Address?
A Internet Protocol address (IP address) is the numerical label assigned to each hardware devices connected to a computer network that uses the Internet Protocol to identify the devices. In general terms, it is an identity of any device. An IP address allows a device to communicate with other devices over an IP-based network like the LAN or Internet.
Method 1 – Using ifconfig Command
ifconfig command is generally available under /sbin directory. So you will need root or sudo access to run this on many of operating systems.
Sample output: [Some output hidden]
As per above output, this system has IP address 192.168.10.199 on Ethernet interface eth0.
You can also view the specific interface details by specifying the interface name on the command line as below.
Method 2 – Using ip Command
ip command generally available under /bin directory but some Linux os keep is under /sbin directory. Use the following command to get ip address using ip command.
Sample output: [Some output hidden]
As per the above output, this system has IP address 192.168.10.199 on Ethernet interface eth0. The interface eth1 doesn’t configure with an IP address.
You can also view the specific itnerface details using below command
Find more commands to check local ip address of any Linux system.
Источник
25 Popular Linux IP Command Examples(How to check Linux IP Address)
Table of Contents
In this article, we will look into 25 Popular Linux IP Command Examples and how to check Linux IP Address. If you are a Linux Professional then you might be aware of ifconfig command which is around from past many years as part of net-tools package. Similarly other net-tools packages command like route is also in use from quite sometime now. All these commands are now replaced by a new set of tools called iproute2. This packages provides ip command which can be used for achieving various network management tasks in Linux with some advance features over earlier set of commands. In this session, we will try to look the various usages of ip command.
Syntax
ip [ OPTIONS ] OBJECT
ip [ -force ] -batch filename
Linux IP Command Examples
Example 1: Check Linux IP Command Version
If you want to check the Linux ip command version then you need to use ip -V command as shown below. As you can see from below output, ip utility is a part of iproute2-ss180813 package.
Example 2: Check Linux IP Address
If you want to check the ip address of all the network interfaces then you need to use ip addr sh command as shown below. This command output will give you multiple information about the network interface such as IPV4 Address, IPV6 Address, MAC Address, Broadcast Address, MTU Size etc.
Example 3: Check IP Rule List
If you want to check all ip rule list then you need to use ip rule list command as shown below.
Example 4: Check IP Link Status
If you want to check the status of connected network interface then you need to use ip link show command as shown below.
Example 5: Check Link Stats using Linux ip command
If you want to check the packet stats of all connected network interfaces then you need to use ip -s link command as shown below.
Example 6: Check Routing Table using Linux ip command
If you want to check the current routing table then you need to use ip route show command as shown below.
Example 7: Display State of Devices Continuously using Linux ip command
If you want to display state of devices in continuous screen then you need to use ip monitor command as shown below. This command is very useful in case of any network troubleshooting.
Example 8: Display MAC Addresses of the Connected System
If you want to display MAC addresses of all the connected system then you need to use ip neighbor command as shown below.
Example 9: Assign an IP Address to a network interface
If you want assign an ip address to a network interface then you need to use below ip addr add command. Here we are assigning IPv4 address 192.168.0.100 to interface enp0s3.
Example 10: Enable multicast feature on Network Interface
If you want to enable multicast feature on a network interface then you need to use below Linux ip command. In this example, we are enabling multicast feature on network interface enp0s3 .
Example 11: Disable multicast feature on Network Interface
Similarly if you want to disable multicast feature on interface enp0s3 then you need to use ip link set enp0s3 multicast off command as shown below.
Example 12: Change MTU Size using Linux ip command
If you want to change the Maximum Transmission Unit size for interface enp0s3 to 1200 then you need to use ip link set enp0s3 mtu 1200 command as shown below.
Example 13: Change Packet Queue Length using Linux ip command
If you want to change the Packet Queue Length then you need to use below Linux ip command. In this example we are changing packet queue Length of enp0s3 network interface using ip link set enp0s3 txqueuelen 900 command as shown below.
Example 14: Enable ARP Feature on the Network Interface using Linux ip command
If you want to enable ARP feature then you need to use below Linux ip command. In this example, we are enabling ARP feature using ip link set enp0s3 arp on command.
Example 15: Disable ARP Feature on the Network Interface
If you want to disable ARP feature then you need to use below Linux ip command. In this example, we are disabling ARP feature using ip link set enp0s3 arp off command.
Example 16: Rename Your Network Interface Using Linux ip command
If you want to rename your network interface then you need to use below Linux ip command. In this example, we are renaming our network interface enp0s3 to eth0 using ip link set enp0s3 name eth0 command.
Example 17: Check the Rule in multicast routing policy database
If you want to check the rule in multicast routing policy database then you need to use ip mrule show command as shown below.
Example 18: Check the Neighbor Table Parameters and Statistics
If you want to check the neighbor table parameters then you need to use ip ntable show dev enp0s3 command as shown below.
Example 19: Change the Number of Packets Queued
If you want to change the number of packets queued then you need to use the below ip ntable command. In this example we are changing arp_cache queue parameter value from 31 to 35 for interface enp0s3 using ip ntable change name arp_cache queue 35 dev enp0s3 command as shown below.
Check if the number of packets has changed or not. More information can be checked on ip ntable man page.
Example 20: Create a Tunnel Using Linux ip command
If you want to create a Tunnel in Linux then you need to use below ip tunnel command. In this example, we are creating a tunnel tunnel0 for peer 192.168.0.110 using ip tunnel add tunnel0 mode sit remote 192.168.0.110 command as shown below.
Check if the tunnel has created or not using ip tunnel show command.
Example 21: Bring Up Tunnel in Linux
If you want to bring up the tunnel created in above example then you need to use ip link set tunnel0 up command as shown below.
Example 22: Bring down Tunnel in Linux
Similarly, If you want to bring down the tunnel then you need to use ip link set tunnel0 down command as shown below.
Example 23: Check Tunnel Status using Linux ip command
If you want to check the status of a tunnel then you need to use ip link show dev tunnel0 command to check tunnel0 status as shown below.
Example 24 : Delete a Tunnel using Linux ip command
If you want to delete a tunnel then you need to use below ip tunnel command. In this example, we are trying to delete a tunnel tunnel0 using ip tunnel del tunnel0 command as shown below.
Example 25: Check Other ip command options
If you want to check all the other options available with ip command then you need to use ip —help command as shown below.
Источник
Настройка с нуля сервиса управления ИБП Network UPS Tools (NUT) для управления локально подключенным ИБП
Описание
Сервис Linux NUT (Network UPS Tools) — это комплекс программ мониторинга и управления различными блоками бесперебойного питания (далее ИБП). Полный список поддерживаемых моделей можно получить, посмотрев список драйверов в файле /usr/share/nut/driver.list.
В руководстве описана настройка отключения ПК агентом NUT при потере напряжения в сети на примере ИБП Eaton 5E 650iUSB на Ubuntu-подобных дистрибутивах. Для использования под другие дистрибутивы используйте пакетный мененджер своего дистрибутива или соберите из исходных кодов. Новейшую версию Network UPS Tools можно скачать на GitHub по ссылке ссылке.
Установка NUT
Для начала следует установить NUT:
Сделаем резерную копию папки с файлами конфигурации NUT:
Теперь добавим директиву, указывающую, что ИБП подключен к данному компьютеру, а не к удаленному:
Теперь подключим ИБП к компьютеру и посмотрим вывод команды lsusb:
Ищем, поддерживается ли ИБП сервисом NUT. Можно либо просмотреть его вручную либо вывести строки с упоминанием марки ИБП, например:
Теперь, когда мы определились с драйвером, можно настраивать NUT.
Защита конфигурационных файлов
Следует выставить верные права доступа и владельцев для файлов конфигурации NUT
Настройка NUT
Настройка драйвера, способа подключения и времени выключения
Дописываем строки в конец файла /etc/nut/ups.conf или создаем новый с таким содержимым:
Настройка доступа системной группы NUT к ИБП по USB
Чтобы NUT имел право на доступ к USB интерфейсу ИБП, нужно написать правило доступа для udev.
udev — подсистема управления устройствами Linux. Благодаря udev в папке /dev находятся только подключенные в данный момент устройства.
и найдем строку, соответствующую ИБП. В нашем примере это
где после ID идет idVendor:idProduct (0463:ffff)
Теперь создадим файл с правилом для udev:
После создания правила следует перезагрузить сервис udev:
После этого следует отключить и заново подключить USB кабель от ИБП. После этого выполним команду для проверки работоспособности udev правила:
Если вывод приблизительно такой, то все настроено правильно.
Настройка адресов и портов прослушивания подключений к NUT
Дописываем строки в конец файла /etc/nut/upsd.conf или создаем новый с таким содержимым:
Имейте в ввиду что LISTEN должно быть написано именно большими буквами, или работать ничего не будет.
Настройка профиля пользователя для доступа к NUT
Создаем пользователя upsmonitor без права логина и домашней папки, с UID меньше 1000, чтобы он считался служебным и его не было на экране входа пользователей в систему, и с GID’ом группы nut.
Узнаем GID группы nut:
Теперь подберем UID для пользователя. Либо выберем такой, какой врядли используется какой либо программой, например, 339, либо выполняем:
и если ничего не выводит, то UID свободен и его можно использовать для создания пользователя upsmonitor:
Теперь добавим этого пользователя в файл профилей пользователей NUT /etc/nut/upsd.users:
Настройки мониторинга NUT
Дописываем строки в конец файла /etc/nut/upsmon.conf или создаем новый с таким содержимым:
Тест соединения
Посмотрим, что ИБП может сообщить о своем состоянии:
Все поля более менее очевидны или были определены нами в конфигурационных файлах ранее. Коды состояний ИБП отображаются в поле ups.status: и могут принимать значения:
- OL — система работает от сети;
- OB — система работает от батареи;
- LB — система работает от разряженной батареи.
Внутренние команды и переменные ИБП
ИБП можно давать команды напрямую из консоли, с помощью команды upscmd. Список доступных команд можно получить, выполнив команду:
Настройки beeper.* управляют сигнализацией ИБП в случае потери напряжения в сети, load.off выключает ПК немедленно, load.off.delay задержка в секундах до выключения ПК, shutdown.stop — команда прерывания процесса отключения ПК.
В некоторых ИБП присутствуют и другие опции, например, тест батареи или shutdown.return, в случае использования которой компьютер будет выключен, но ИБП пошлет сигнал включения ПК как только восстановится питание в сети. Чтобы это сработало, в БИОСе ПК дожна быть включена соответствующая функция, которая обычно находится где то в районе настроек питания.
Для примера выключим писк ИБП, когда пропадает питание в сети:
Чтобы включить, замените beeper.disable на beeper.enable.
Настройка планировщика задач NUT upssched
Дописываем строки в конец файла /etc/nut/upssched.conf или создаем новый с таким содержимым:
Теперь теперь нужен скрипт /etc/nut/cmd.sh. Создадим его, выставим права и заполним его:
Заключение
На этом настройка завершена. Можно протестировать, банально выдернув ИБП из розетки.
Источник
Linux: Configure and Control APC SmartUPS During a Power Failure
M y Linux nas server connected to APC SmartUPS using usb cable and I would like to detect a power failure. If power is not restored my server must shutdown when the battery is exhausted. How do I configure and use my APC SmartUPS under Debina / Ubuntu / RHEL / CentOS / Fedora / Scientific Linux operating system for power management?
Tutorial details | |
---|---|
Difficulty level | Intermediate |
Root privileges | Yes |
Requirements | APC ups with cable |
Est. reading time | N/A |
Linux comes with GPL licensed open source apcupsd server ( daemon ) that can be used for power mangement and controlling most of APC’s UPS models on Linux, BSD, Unix and MS-Windows operating systems. Apcupsd works with most of APC’s Smart-UPS models as well as most simple signalling models such a Back-UPS, and BackUPS-Office. During a power failure, apcupsd will inform the users about the power failure and that a shutdown may occur. If power is not restored, a system shutdown will follow when the battery is exhausted, a timeout (seconds) expires, or runtime expires based on internal APC calculations determined by power consumption rates.
Step #1: Install Apcupsd
Type the following apt-get command under Debian / Ubuntu Linux install apcupsd software:
# apt-get install apcupsd
Sample outputs:
Edit /etc/default/apcupsd, enter:
# vi /etc/default/apcupsd
Set ISCONFIGURED to yes:
ISCONFIGURED=yes
Save and close the file. If you are using RHEL / CentOS Linux use yum command as follows, enter:
# yum install apcupsd
Sample outputs:
Step 2: Connect UPS
You need to connect the UPS to your server using cable. You will see the following entry in /var/log/messages
Step #3: Configure UPS
Edit /etc/apcupsd/apcupsd.conf, enter:
# vi /etc/apcupsd/apcupsd.conf
First, give your UPS a name. This is particulary useful if you have multiple UPSes. This does not set the EEPROM. It should be 8 characters or less:
Next, defines the type of cable connecting the UPS to your Linux server. In this example, I’m connecting my UPS using usb:
Possible generic choices for cable are – simple, smart, ether, and usb. Or a specific cable model number may be used such as 940-0119A. For USB UPSes, please leave the DEVICE directive blank. For
other UPS types, you must specify an appropriate port or address (see config file):
Configuration parameters used during power failures
The ONBATTERYDELAY directive defined the time in seconds from when a power failure s detected until we react to it with an onbattery event:
If during a power failure, the remaining battery percentage (as reported by the UPS) is below or equal to BATTERYLEVEL, apcupsd will initiate a Linux system shutdown:
If during a power failure, the remaining runtime in minutes (as calculated internally by the UPS) is below or equal to MINUTES, apcupsd, will initiate a system shutdown.
- No ads and tracking
- In-depth guides for developers and sysadmins at Opensourceflare✨
- Join my Patreon to support independent content creators and start reading latest guides:
- How to set up Redis sentinel cluster on Ubuntu or Debian Linux
- How To Set Up SSH Keys With YubiKey as two-factor authentication (U2F/FIDO2)
- How to set up Mariadb Galera cluster on Ubuntu or Debian Linux
- A podman tutorial for beginners – part I (run Linux containers without Docker and in daemonless mode)
- How to protect Linux against rogue USB devices using USBGuard
Join Patreon ➔
If during a power failure, the UPS has run on batteries for TIMEOUT many seconds or longer, apcupsd will initiate a system shutdown. A value of 0 disables this timer:
Note: If you have an older dumb UPS, you will want to set this to less than the time you know you can run on batteries.
Configuration apcupsd network information server
You can use CGI or GUI programs from remote system to get information about your UPS. Turn on network information server:
Set IP address on which NIS server will listen for incoming connections. You need to configure this setting to any specific IP address of your server and NIS will listen for connections only on that interface. Use the loopback address (127.0.0.1) to accept connections only from the local machine (default).
The default port is set to 3551for sending STATUS and EVENTS data over the network:
Save and close the file.
Step #4: Test ups
Type the following command:
# apctest
Sample outputs:
You can test your ups or read test results.
How do I start apcupsd server?
Type the following command to start / stop / restart service:
# /etc/init.d/apcupsd start
# /etc/init.d/apcupsd stop
# /etc/init.d/apcupsd restart
RHEL / CentOS / Red Hat / Fedora Linux can use the same command. However, you need to turn on service on boot:
# chkconfig apcupsd on
How do I see current status of my UPS?
Type the following command:
# apcaccess
Sample outputs:
How do I view ups events such as power failure?
The UPS status is logged in /var/log/apcupsd.events file. To view this file, enter:
# tail -f /var/log/apcupsd.events
Sample outputs:
A note about desktop GUI monitoring tool
Gapcmon is a desktop monitor program for the apcupsd server. You can install it using the following command:
# apt-get install gapcmon
OR use yum command for RHEL / CentOS Linux:
# yum install apcupsd-gui
Run it as follows:
$ gapcmon
A note about web based monitoring tool
You can install a package called apcupsd-cgi so that you can monitor your UPS load, uptime, logs and other details using www. Type the following apt-get command to install the same:
# apt-get install apcupsd-cgi
OR use yum command for RHEL / CentOS Linux:
# yum install apcupsd-cgi
You need to configure Apache web server with cgi-bin or lighttpd server with cgi-bin server. Once configured, type the url as follows using any web-browser:
http://server-ip/cgi-bin/apcupsd/multimon.cgi
Sample outputs from both desktop and web-base gui monitor tools:
Check out related media
This tutorial also available in video format:
(Video.01: Installing apc usp under Debian / Ubuntu Linux. Can’t view video? Click here.)
References
- APCUPSD project.
- man page – apcupsd, apt-get, and yum command.
🐧 Get the latest tutorials on Linux, Open Source & DevOps via
Источник