유선 우분투 서버를 네트워크에 연결하는 방법


0

몇 개의 스레드를 확인하고 몇 가지 단계를 수행했지만 여전히 문제가 있습니다.

Mac 무선 연결 이 된 Cisco E2000 WiFi 라우터 가 있습니다

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 문제 없음, 인터넷에 연결 가능

이더넷 케이블을 통해 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

우선 : 3 년 동안 지원 및 보안 업데이트가 중단 된 8 년 된 OS를 사용하지 않아야합니다.

즉, 컴퓨터에는 6 개의 네트워크 카드가 구성된 것으로 보이며 올바른 것을 연결하기 만하면됩니다. 다른 카드 중 하나를 사용한 것 같습니다.

으로 cat /sys/class/net/eth0/speed확인할 수 있으며, 경우 DHCP NIC 연결하고 어떤 속도로된다.


또는 ip link모든 NIC의 링크 상태를 표시하고 연결된 NIC를 한눈에 볼 수 있습니다.
Tilman Schmidt

" 3 년 동안 지원이 제공되지 않는 (및 보안 업데이트) 8 년 된 OS를 사용해서는 안됩니다. " Retrocomputing에 거의 적합합니다 . :)
Ron Maupin

@Eugen Rieck이 맞습니다. 카드를 잘못 꽂았습니다. 서버 OS가 사전 구성되어 있습니다. 감사!
Tony Xu
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.