Difference between revisions of "Netplan ubuntu"
From Teknologisk videncenter
(Created page with "=Links= *[https://ubuntu.com/blog/ubuntu-bionic-netplan#:~:text=Netplan%20enables%20easily%20configuring%20networking,starting%20with%20Ubuntu%2017.10%20Artful. Ubuntu Bionic:...") |
m |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | == Example 1 == | ||
+ | Disabling cloud-init and setting static IP info | ||
+ | <source lang=bash> | ||
+ | sudo cat << 'EOF' > /etc/netplan/50-cloud-init.yaml | ||
+ | # This file is generated from information provided by the datasource. Changes | ||
+ | # to it will not persist across an instance reboot. To disable cloud-init's | ||
+ | # network configuration capabilities, write a file | ||
+ | # /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following: | ||
+ | # network: {config: disabled} | ||
+ | network: | ||
+ | ethernets: | ||
+ | ens160: | ||
+ | addresses: | ||
+ | - 192.168.1.151/24 | ||
+ | #Deprecated: gateway4: 192.168.1.1 | ||
+ | routes: | ||
+ | - to: default | ||
+ | via: 192.168.1.1 | ||
+ | metric: 100 | ||
+ | on-link: true | ||
+ | mtu: 1480 | ||
+ | nameservers: | ||
+ | addresses: | ||
+ | - 192.168.1.1 | ||
+ | version: 2 | ||
+ | EOF | ||
+ | |||
+ | sudo cat << 'EOF' > /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg | ||
+ | network: {config: disabled} | ||
+ | EOF | ||
+ | </source> | ||
+ | |||
=Links= | =Links= | ||
*[https://ubuntu.com/blog/ubuntu-bionic-netplan#:~:text=Netplan%20enables%20easily%20configuring%20networking,starting%20with%20Ubuntu%2017.10%20Artful. Ubuntu Bionic: Netplan] | *[https://ubuntu.com/blog/ubuntu-bionic-netplan#:~:text=Netplan%20enables%20easily%20configuring%20networking,starting%20with%20Ubuntu%2017.10%20Artful. Ubuntu Bionic: Netplan] | ||
[[Category:Ubuntu]] | [[Category:Ubuntu]] |
Latest revision as of 04:13, 24 September 2024
Example 1
Disabling cloud-init and setting static IP info
sudo cat << 'EOF' > /etc/netplan/50-cloud-init.yaml
# This file is generated from information provided by the datasource. Changes
# to it will not persist across an instance reboot. To disable cloud-init's
# network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
# network: {config: disabled}
network:
ethernets:
ens160:
addresses:
- 192.168.1.151/24
#Deprecated: gateway4: 192.168.1.1
routes:
- to: default
via: 192.168.1.1
metric: 100
on-link: true
mtu: 1480
nameservers:
addresses:
- 192.168.1.1
version: 2
EOF
sudo cat << 'EOF' > /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg
network: {config: disabled}
EOF