vault backup: 2026-05-15 10:41:46
This commit is contained in:
@@ -5,9 +5,35 @@ category:
|
|||||||
title: Linux CLI Commands
|
title: Linux CLI Commands
|
||||||
tags:
|
tags:
|
||||||
---
|
---
|
||||||
### Networking
|
### Network config
|
||||||
|
|
||||||
network config file is located (usually `01-netcfg.yaml` or `50-cloud-init.yaml`)
|
network config file is located (usually `01-netcfg.yaml` or `50-cloud-init.yaml`)
|
||||||
```
|
```
|
||||||
nano /etc/netplan/50-cloud-init.yaml
|
nano /etc/netplan/50-cloud-init.yaml
|
||||||
```
|
```
|
||||||
|
|
||||||
|
typical config
|
||||||
|
```
|
||||||
|
network:
|
||||||
|
version: 2
|
||||||
|
renderer: networkd
|
||||||
|
ethernets:
|
||||||
|
enp0s3:
|
||||||
|
dhcp4: false
|
||||||
|
addresses:
|
||||||
|
- 192.168.1.100/24
|
||||||
|
routes:
|
||||||
|
- to: default
|
||||||
|
via: 192.168.1.1
|
||||||
|
```
|
||||||
|
|
||||||
|
then try
|
||||||
|
```
|
||||||
|
sudo netplan try
|
||||||
|
```
|
||||||
|
|
||||||
|
or apply
|
||||||
|
```
|
||||||
|
sudo netplan apply
|
||||||
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user