fruworg.github.io/content/posts/linux-network.md
2023-12-26 04:34:28 +06:00

35 lines
837 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "Настройка сети в Linux"
date: 2022-11-25T15:34:46+05:00
description: Путём правки конфигурационных файлов
tags: [linux]
---
## Настройка DNS и домена
В файл `/etc/resolv.conf` необходимо добавить следующие строки:
```shell
search <domain>
nameserver <dns-server>
```
## Статика
В файл `/etc/network/interfaces.d/<interface>` необходимо добавить следующие строки:
```shell
auto <interface>
iface <interface> inet static
address <ip-address>
netmask <netmask>
gateway <gateway>
```
## DHCP
В файл `/etc/network/interfaces.d/<interface>` необходимо добавить следующие строки:
```shell
auto <interface>
iface <interface> inet dhcp
```