Определить имя сервера linux

Содержание
  1. How to get a hostname/domain name from an IP address in Linux
  2. Prerequisites
  3. Perform DNS Reverse lookup using dig command
  4. Perform DNS Reverse lookup using nslookup command
  5. Perform DNS Reverse lookup using the host command
  6. Conclusion
  7. About the author
  8. Karim Buzdar
  9. 3 способа узнать имя хоста (компьютера) с помощью терминала Linux
  10. Поиск имени хоста компьютера в Linux
  11. Метод № 1: Используйте команду hostname
  12. Способ № 2: Используйте команду hostnamectl
  13. Способ № 3: Используйте команду cat
  14. Заключение
  15. Похожие записи:
  16. How to Use the hostname Command in Linux
  17. hostname Command Syntax
  18. hostname Command Examples
  19. Display Hostname
  20. Display Short Hostname
  21. Display Alias
  22. Search for Hostnames
  23. Force Default Hostname
  24. Display Domain Name
  25. Display FQDN
  26. Display All FQDNs
  27. Display NIS Domain
  28. Change NIS Domain Name
  29. Display Related Network Addresses
  30. Display All Network Addresses
  31. Change Hostname Until Reboot
  32. Change Hostname Permanently
  33. Additional hostname Options
  34. 3 способа узнать имя хоста (компьютера) с помощью терминала Linux
  35. Поиск имени хоста компьютера в Linux
  36. Метод № 1: Используйте команду hostname
  37. Способ № 2: Используйте команду hostnamectl
  38. Способ № 3: Используйте команду cat
  39. Заключение
  40. Похожие записи:

How to get a hostname/domain name from an IP address in Linux

One of the questions that many Linux users ask is how they can retrieve a system’s hostname using its IP address. It may seem an uphill task, but in the real sense, it’s quite easy. Essentially, this is known as the reverse DNS lookup. Reverse DNS lookup queries an IP address to retrieve the hostname or domain of the server. The exact opposite is the Forward DNS lookup which maps the domain name to the IP address.

In this short guide, we have explored a few ways to performs Reverse DNS lookup and get a domain name from an IP address. For demonstration purposes, I have used Ubuntu 20.04.

Prerequisites

Before you roll up your sleeves, ensure that your remote host has an A record which is a DNS entry that points or maps a domain name to an IP address

Perform DNS Reverse lookup using dig command

Dig command is a flexible and powerful tool that is used for querying or probing DNS records. It’s an acronym for domain information groper and allows you to retrieve a wide array of DNS information such as A, CNAME, MX, and SOA records.

Perform DNS Reverse lookup using nslookup command

A nslookup command is a troubleshooting tool that features highly in a sysadmin’s armory. It’s a versatile tool that performs all DNS record querying such as CNAME, A, MX, and reverses or PTR records.

To retrieve a domain name from an IP address, use the command syntax:

Perform DNS Reverse lookup using the host command

Similarly, you can use the host command to obtain a hostname or domain name from an IP address using the syntax as shown.

For example, to check the domain name for the IP 5.9.235.235, execute the command:

Just like the Nslookup command, you can also use the host command with hostnames or IP addresses.

Conclusion

The few examples that we have just elaborated are a sure way of helping you obtain the domain name from an IP address. Usually, the reverse DNS lookup is trivial and not as crucial as the forward lookup, which maps domain names to IP addresses. Your feedback or contribution will be highly welcomed.

Читайте также:  Linux and unix system programming handbook

About the author

Karim Buzdar

Karim Buzdar holds a degree in telecommunication engineering and holds several sysadmin certifications. As an IT engineer and technical author, he writes for various web sites. He blogs at LinuxWays.

Источник

3 способа узнать имя хоста (компьютера) с помощью терминала Linux

Так же как адрес интернет-протокола или IP-адрес дает идентификацию вашему устройству, точно так же имя хоста является еще одним параметром, по которому можно узнать ваше устройство. Оно представляет собой строку символов, понятных человеку. В отличие от IP-адреса, имя хоста ПК легко запомнить и вспомнить. Для этого необходимо всегда знать имя хоста своего компьютера. В этой статье мы расскажем вам, как узнать имя хоста вашего ПК с помощью терминала Linux.

Поиск имени хоста компьютера в Linux

Чтобы найти имя хоста вашего ПК в Linux, вы можете выполнить любой из трех перечисленных ниже методов:

Метод № 1: Используйте команду hostname

Запустите терминал, нажав Ctrl +T или щелкнув по значку терминала на панели задач, или найдите терминал, набрав terminal в окне поиска и нажав enter. Открывшееся окно терминала показано ниже:

Командная строка терминала

Теперь введите в терминале команду hostname и нажмите клавишу Enter.

Введите команду hostname

Как только вы нажмете клавишу Enter, имя хоста вашего компьютера появится в терминале. Это показано на рисунке ниже:

Имя хоста, отображаемое в оболочке системы Linux

Способ № 2: Используйте команду hostnamectl

Запустите терминал, нажав Ctrl +T или щелкнув по значку терминала на панели задач, или найдите терминал, набрав terminal в окне поиска и нажав enter.

в терминале и нажмите Enter.

Введите команду: hostnamectl

Как только вы нажмете клавишу Enter, в окне терминала появится имя хоста вашего компьютера. Это показано ниже:

Отображается подробная информация о системе Linux, включая имя хоста.

Способ № 3: Используйте команду cat

Запустите терминал, нажав Ctrl +T или щелкнув по значку терминала на панели задач, или найдите терминал, набрав terminal в окне поиска и нажав Enter.

cat /proc/sys/kernel/hostname

в терминале и нажмите клавишу Enter.

Показать содержимое /proc/sys/kernel/hostname

Как только вы нажмете клавишу Enter, на терминале отобразится имя хоста вашего компьютера.

Заключение

Перечисленные выше три метода действительно очень просты и легки. Теперь вы можете найти имя хоста вашего компьютера за несколько секунд и без каких-либо проблем. Надеюсь, эти методы помогут вам.

Похожие записи:

Источник

How to Use the hostname Command in Linux

The Linux hostname command is used to view or change a system’s domain and hostname. It can also check a computer’s IP address.

In this tutorial, we will cover all the ways you can use the hostname command on Linux and how to change your computer’s hostname on a Linux system.

How to use the Linux hostname command

hostname Command Syntax

The hostname command uses the following format:

hostname [options] [new_hostname]

Use the [options] parameter to add more specific instructions to the hostname command. Without it, the default output shows your computer’s hostname:

Use the [new_hostname] parameter when you want to change your computer’s hostname.

hostname Command Examples

The hostname command has a number of options you can use for more specific outputs:

  • -a , —alias : Displays the alias name of the host.
  • -A , —all-fqdns : Displays every FQDN (Fully Qualified Domain Name) of the computer.
  • -b , —boot : Always set a hostname.
  • -d , —domain : Display DNS domain name.
  • -f , —fqdn , —long : Display the FQDN.
  • -F , —file : Check a file to recover and display the hostname.
  • -h , —help : Print the help message as the output.
  • -i , —ip-address : Display the computer’s IP address.
  • -I , —all-ip-addresses : Display all of the computer’s network addresses.
  • -s , —short : Display the short version of the hostname.
  • -v , —verbose : Expand all output to verbose.
  • -y , —yp , —nis : Display the NIS domain name.
Читайте также:  Сменить часовой пояс линукс

Display Hostname

Using the hostname command without any additional options displays the computer’s hostname:

Display hostname

Display Short Hostname

Use the -s or —short option to display the short version of the hostname, which is cut off at the first dot:

hostname -s hostname --short

Display short hostname

Display Alias

Use the -a or —alias option to display the alias (substitute hostname) of the host if one is set. There are very few cases where this option is useful, and its use is no longer recommended.

hostname -a hostname --alias

Display alias

Search for Hostnames

Use the -F or —file option to search a specific file (such as hostname or hosts) and change your computer’s hostname to match the content of the file:

sudo hostname -F [file path] sudo hostname --file [file path]

Search for hostnames

Note: When using the -F or —file options, also specify the path to the file you want to check.

Force Default Hostname

If you don’t want to have a specific file containing the hostname, or want to leave that file empty, use the -b or —boot option. This makes your computer use the default hostname (localhost) until you set a different one:

Force default hostname

Display Domain Name

Use the -d or —domain option to display the name of your DNS domain:

hostname -d hostname –domain

Display FQDN

If you want to display a system’s FQDN, use the -f , —fqdn , or —long option:

hostname -f hostname --fqdn hostname --long

A FQDN contains the short hostname and the DNS domain name.

Display All FQDNs

To display each FQDN of your machine, use the -A or —all-fqdns option:

hostname -A hostname --all-fqdns

This option lists out all of your network addresses and their DNS domain names. It skips any addresses that it can’t translate.

Note: Different network addresses may translate to same DNS domain names. This can result in duplicate output entries when using -A or —all-fqdns options.

Display NIS Domain

If you’re using NIS (Network Information Service), you can check your NIS domain name with the -y , —yp , or —nis option:

hostname -y hostname --yp hostname --nis

Display NIS domain

Change NIS Domain Name

Use this command with the following format to change your NIS domain name:

sudo hostname -y [NIS hostname] sudo hostname --yp [NIS hostname] sudo hostname --nis [NIS hostname]

Change NIS domain name

The hostname command also lets your display network addresses tied to a hostname. To do this, use the -i or —ip-address option:

hostname -i hostname --ip-address

This command only works if the hostname can be resolved.

Display related network addresses

Display All Network Addresses

Use the -I or —all-ip-addresses option to display all of the host’s network addresses. Unlike -i , this option doesn’t depend on hostname resolution:

hostname -I hostname --all-ip-addresses

Display all network addresses

Change Hostname Until Reboot

You can change your computer’s hostname with the hostname command. To do this, use the following format:

sudo hostname [new hostname]

Any changes to the hostname you make using this command will only last until the next reboot.

Читайте также:  Moxa linux driver kernel

Change hostname until reboot

Change Hostname Permanently

To change the hostname permanently, use a text editor like Nano to make changes to the hostname and hosts files:

sudo nano /etc/hostname sudo nano /etc/hosts

You can also use the hostnamectl command to permanently change the hostname:

sudo hostnamectl set-hostname [new hostname]

Change hostname permanently

Additional hostname Options

Use the -V or —version option to print out the version of the hostname software package on your Linux system:

hostname -V hostname --version

Display hostname version

If you need help with any of the commands, use the -h or —help option to print out a help message:

Hostname help output

After following this guide, you now know how to use the hostname command in Linux and all the options that can extend its use.

For more Linux commands, check out our Linux Commands Cheat Sheet.

Источник

3 способа узнать имя хоста (компьютера) с помощью терминала Linux

Так же как адрес интернет-протокола или IP-адрес дает идентификацию вашему устройству, точно так же имя хоста является еще одним параметром, по которому можно узнать ваше устройство. Оно представляет собой строку символов, понятных человеку. В отличие от IP-адреса, имя хоста ПК легко запомнить и вспомнить. Для этого необходимо всегда знать имя хоста своего компьютера. В этой статье мы расскажем вам, как узнать имя хоста вашего ПК с помощью терминала Linux.

Поиск имени хоста компьютера в Linux

Чтобы найти имя хоста вашего ПК в Linux, вы можете выполнить любой из трех перечисленных ниже методов:

Метод № 1: Используйте команду hostname

Запустите терминал, нажав Ctrl +T или щелкнув по значку терминала на панели задач, или найдите терминал, набрав terminal в окне поиска и нажав enter. Открывшееся окно терминала показано ниже:

Командная строка терминала

Теперь введите в терминале команду hostname и нажмите клавишу Enter.

Введите команду hostname

Как только вы нажмете клавишу Enter, имя хоста вашего компьютера появится в терминале. Это показано на рисунке ниже:

Имя хоста, отображаемое в оболочке системы Linux

Способ № 2: Используйте команду hostnamectl

Запустите терминал, нажав Ctrl +T или щелкнув по значку терминала на панели задач, или найдите терминал, набрав terminal в окне поиска и нажав enter.

в терминале и нажмите Enter.

Введите команду: hostnamectl

Как только вы нажмете клавишу Enter, в окне терминала появится имя хоста вашего компьютера. Это показано ниже:

Отображается подробная информация о системе Linux, включая имя хоста.

Способ № 3: Используйте команду cat

Запустите терминал, нажав Ctrl +T или щелкнув по значку терминала на панели задач, или найдите терминал, набрав terminal в окне поиска и нажав Enter.

cat /proc/sys/kernel/hostname

в терминале и нажмите клавишу Enter.

Показать содержимое /proc/sys/kernel/hostname

Как только вы нажмете клавишу Enter, на терминале отобразится имя хоста вашего компьютера.

Заключение

Перечисленные выше три метода действительно очень просты и легки. Теперь вы можете найти имя хоста вашего компьютера за несколько секунд и без каких-либо проблем. Надеюсь, эти методы помогут вам.

Похожие записи:

Источник

Оцените статью
Adblock
detector