Ubuntu 18.04配置静态IP
1、查看当前的网卡信息
ifconfig
可以看出是双网卡,一个eth0(大网),一个eth1(小网)
2、修改(以修改小网ip eth1[192.169.3.13]为例)
①文件位置 /etc/netplan/01-netcfg.yaml
文件名可能有所不同,但是文件夹应该是相同的 /etc/netplan
②修改eth1
vi /etc/netplan/01-netcfg.yaml
# This file describes the network interfaces available on your system # For more information, see netplan(5). network: version: 2 renderer: networkd ethernets: eth0: dhcp4: yes gateway4: 10.191.4.1 routes: - to: 10.190.0.0/16 via: 10.191.4.1 metric: 10 eth1: dhcp4: no addresses: - 192.169.3.6/24 gateway4: 192.169.3.1
备注:添加了eth0的网关和路由,因为当时实验不添加,导致远程的ssh断了,如果在本机呢,就可以不用添加,直接这样
③应用
netplan apply
④验证
netplan apply后大网自动获取到IP:10.191.6.35,小网为刚才填写的192.169.3.4