如何将有线 Ubuntu 服务器连接到网络

如何将有线 Ubuntu 服务器连接到网络

我查看了几个帖子并按照一些步骤操作,但仍然有问题

我有一个思科 E2000 WiFi 路由器,我的 Mac 已无线连接到

从 Mac 访问,192.168.1.1我可以看到类似 DHCP 自动配置的内容

IP address 192.168.1.1
Subnet mask 255.255.255.0
Device name SmallFlamingo

Start IP Address: 192.168.1.100
Maximum Number of Users: 50
IP Address Range:   192 .168.1.100 to 149

WiFi无线和Mac没问题,可以连接互联网

我刚刚获得了一个 Ubuntu 服务器(针对特定任务进行了预先配置),我通过以太网电缆将其连接到 WiFi 路由器

有关服务器的一些信息

uname -a
Linux HK2DR22 2.6.32-21-server #32-Ubuntu SMP Fri Apr 16 09:17:34 UTC 2010 x86_4 GNU/Linux

lsb_release -a
NO LSB modules are available
Distributor ID: Ubuntu
Description: Ubuntu 10.04.4 LTS
Release: 10.04

ping 192.168.1.1
connect: Network is unreachable

more /etc/network/interfaces
# some comment lines I skipped since I need type the output
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

pre-up iptables-restore < /etc/iptables.rules
pre-up iptables-restore --noflush < /etc/iptables.custom

auto eth1
iface eth1 inet static
address 192.168.201.1
netmask 255.255.255.0

auto eth2
iface eth2 inet static
address 192.168.202.1
netmask 255.255.255.0

auto eth3
iface eth3 inet static
address 192.168.203.1
netmask 255.255.255.0

auto eth4
iface eth4 inet static
address 192.168.204.1
netmask 255.255.255.0

auto eth5
iface eth5 inet static
address 192.168.205.1
netmask 255.255.255.0

如何将服务器连接到网络?谢谢!

答案1

首先:您不应该使用已有 8 年历史、已经 3 年没有支持(和安全更新)的操作系统。

也就是说,您的机器似乎配置了 6 个网卡,您需要做的就是插入正确的网卡 - 您似乎使用了其中一张。

cat /sys/class/net/eth0/speed可以检查 DHCP NIC 是否已连接以及连接速度是多少。

相关内容