装了linux,手动设置一下ip吧
即时生效的命令:
ifconfig eth0 192.16.1.23 netmask 255.255.255.0
route add default gw 192.168.1.1
注:需要有root权限
修改文件重启生效
ip
文件位置: /etc/network/interfaces
内容:
auto eth0
iface eth0 inet static // 配置eth0使用默认的静态地址
address 192.168.77.133 // 设置eth0的ip地址
netmask 255.255.255.0 // 设置eth0的子网掩码
gateway 192.168.77.254 // 配置当前主机的默认网关
DNS
文件位置:/etc/resovl.conf
内容:
domain
nameserver 10.10.10.10
nameserver 102.54.16.2