- Официальная документация - https://netplan.readthedocs.io/en/stable/
- Отключение IPv6 - https://forums.linuxmint.com/viewtopic.php?t=403688
Last active
February 18, 2026 12:05
-
-
Save kupereal/3a9c6cca7ed9c3511828843a76fab9ad to your computer and use it in GitHub Desktop.
Конфиг Netplan с сервера в Hyper-V - статический IP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| network: | |
| version: 2 | |
| renderer: networkd | |
| ethernets: | |
| eth0: | |
| dhcp4: false | |
| dhcp6: false | |
| accept-ra: false | |
| link-local: [] | |
| addresses: | |
| - 192.168.0.18/24 | |
| routes: | |
| - to: default | |
| via: 192.168.0.1 | |
| nameservers: | |
| addresses: | |
| - 192.168.0.1 | |
| - 8.8.8.8 | |
| - 8.8.4.4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment