安装好Ubuntu7.10之后,可能要进行如下配置
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