|
发表于 2006-3-26 11:58:52
|
显示全部楼层
自动获取IP?可能是DHCP的。。
需要安装一些软件比如浏览器。看看置顶的帖子
要检查网络设置看看/etc/network/interfaces文件,网络配置一般从这里。
学会使用ifconfig查看网络配置状况。还有netstat 和 ping命令
在Debian中网卡的设置[转帖]
http://www.linuxsir.cn/bbs/showthread.php?t=239802
网卡通过DHCP自动获取IP地址
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
#
# The loopback network interface(配置环回口)
# 开机自动激lo接口
auto lo
# 配置lo接口为环回口
iface lo inet loopback
#
# The primary network interface (配置主网络接口)
#开机自动激活eth0接口
auto eth0
#配置eth0接口为DHCP自动获取
iface eth0 inet dhcp |
|