Я проверил несколько потоков и выполнил некоторые шаги, но все еще проблема
У меня есть беспроводной маршрутизатор Cisco E2000, к которому подключен 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-маршрутизатору через кабель Ethernet
Некоторая информация о сервере
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
Как я могу подключить сервер к сети? Спасибо!