ubuntu 终端上网设置

IP命令行配置如下

sudo gedit /etc/network/interfaces

DHCP

DHCP配置如下(假设通过eth1上网)

# The primary network interface - use DHCP to find our address

auto eth1

iface eth1 inet dhcp //指定为dhcp

然后重启

sudo /etc/init.d/networking restart

Static IP

静态IP地址配置如下(假设通过eth1上网)# The primary network interface

auto eth1

iface eth1 inet static //指定为static

address 192.168.3.90 //IP地址

gateway 192.168.3.1 //网关

netmask 255.255.255.0 //子网掩码

同样需要重启

sudo /etc/init.d/networking restart

DNS

如果有必要,配置DNS

sudo gedit /etc/resolv.conf

nameserver 192.168.3.2

 

 

 

你可能感兴趣的:(ubuntu,NetWork,interface,终端)