运维网's Archiver
论坛
›
Linux运维
› ubuntu网络配置
苏童
发表于 2019-2-19 08:21:36
ubuntu网络配置
ubuntu网络配置文件/etc/network/interfaces
此文件被ifup和ifdown使用
1、手动设置ip示例
auto eth0
iface eth0 inet static
address 192.168.18.22
network 255.255.255.0
gateway 192.168.18.1
2、DHCP分配IP
auto eth0
iface eth0 inet dhcp
页:
[1]
查看完整版本:
ubuntu网络配置