From e1c303328340803df15daa900de661d157d7f3f5 Mon Sep 17 00:00:00 2001 From: julien Date: Thu, 9 Jan 2025 22:49:08 +0100 Subject: [PATCH] doc --- hostup-network-config.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 hostup-network-config.md diff --git a/hostup-network-config.md b/hostup-network-config.md new file mode 100644 index 0000000..0443a23 --- /dev/null +++ b/hostup-network-config.md @@ -0,0 +1,15 @@ +# HostUp network config + +In order to properly configure network on a HostUp VPS, some `dhcpcd` configuration is required, at the end of `/etc/dhcpcd.conf` add (replace `*` with your IPv4) : +``` +# Hostup network config +interface ens18 + static ip_address=*.*.*.*/24 + static routers=*.*.*.1 + static domain_name_servers=1.1.1.1 +``` + +Then restart `dhcpcd` : +``` +# dinitctl restart dhcpcd +```