0
点赞
收藏
分享

微信扫一扫

戴尔R730 DELLR730 ubuntu 22.04 TLS 静态IP设置

以前干嘛去了 2022-09-28 阅读 60


sudo  vim /etc/netplan/00-installer-config.yaml
如下

# This is the network config written by 'subiquity'
network:
ethernets:
eno1:
dhcp4: false
addresses:
- 10.10.201.25/24 ## set static IP
routes:
- to: default
via: 10.10.201.1 ## gateway
nameservers:
addresses: [202.106.0.20,114.114.114.114]
eno2:
dhcp4: true
eno3:
dhcp4: true
eno4:
dhcp4: true
version: 2
~

戴尔R730 DELLR730 ubuntu 22.04 TLS 静态IP设置_vim

举报

相关推荐

0 条评论