感谢支持
我们一直在努力

Ubuntu7.10 配置杂记

安装好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

赞(0) 打赏
转载请注明出处:服务器评测 » Ubuntu7.10 配置杂记
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏