UBUNTU网络配置

前两天需要装个Ubuntu,发现网络配置文件和centos不太一样,在此记录。

修改配置文件/etc/network/interfaces

1
2
3
4
5
6
vi /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0
gateway 192.168.0.1

添加DNS

1
2
vi /etc/resolv.conf
nameserver 202.99.166.4

重启网络

方法1

重启网络服务

1
/etc/init.d/networking restart

方法2

重启指定网卡,不影响其他网卡正常提供服务

1
2
$ifdown eth0
$ifup eth0

设置代理

1
2
3
4
5
vi /home/username/.bash_profile
export http_proxy =
export https_poxy =
export ftp_proxy =
export no_proxy =

使profile中的新增变量生效

1
source .bash_profile

Recommended Posts