CentOS 6.5 인터넷 문제 문제 해결

CentOS 6.5 인터넷 문제 문제 해결

CentOS 6.5라우터의 포트 전달을 통해 SSH를 사용하여 액세스하는 원격 위치에서 실행되는 서버가 있습니다 .

서버에서 더 이상 인터넷에 액세스할 수 없다는 사실을 발견한 오늘까지 모든 것이 잘 작동했습니다.

여전히 원격 SSH를 통해 연결할 수 있고 여전히 고정 IP 주소, 게이트웨이 등이 있지만 인터넷을 사용할 수 없습니다.

다른 컴퓨터에서 서버 이더넷 케이블을 사용하면 인터넷 접속에 문제가 없습니다

하지만 ping을 시도하면 즉시 오류가 발생합니다.

# ping google.com
# ping: unknown host google.com

이유를 알아내기 위해 제안된 단계가 있는 사람이 있나요?

**

문서 내용 /etc/resolv.conf:

; generated by /sbin/dhclient-script
search DOMAINNAME.LOCAL domainname.local
nameserver 192.168.2.9
nameserver 192.168.2.16

문서 내용 /etc/sysconfig/network-scripts/ifcfg-eth1:

DEVICE="eth1"
BOOTPROTO="static"
HWADDR="34:40:B5:89:85:BE"
IPADDR=192.168.2.45
NETMASK=255.255.255.0
GATEWAY=192.168.2.254
DNS1=192.168.2.9
DNS2=192.168.2.16
NM_CONTROLLED="yes"
ONBOOT="yes"
TYPE="Ethernet"
UUID="bde2561c-9882-4e50-9e3a-22e44f6a5005"

결과nslookup google.com 192.168.2.9

;; connection timed out; trying next origin
;; connection timed out; trying next origin
;; connection timed out; no servers could be reached

결과nslookup google.com 192.168.2.16

;; connection timed out; trying next origin
;; connection timed out; trying next origin
;; connection timed out; no servers could be reached

결과nslookup google.com 8.8.8.8

;; connection timed out; trying next origin
;; connection timed out; trying next origin
;; connection timed out; no servers could be reached

결과nslookup google.com 8.8.4.4

;; connection timed out; trying next origin
;; connection timed out; trying next origin
;; connection timed out; no servers could be reached

결과netstat -rn

197.81.19.48    0.0.0.0         255.255.255.248 U         0 0          0 eth0
10.254.254.0    0.0.0.0         255.255.255.0   U         0 0          0 as0t0
192.168.2.0     0.0.0.0         255.255.255.0   U         0 0          0 eth1
169.254.95.0    0.0.0.0         255.255.255.0   U         0 0          0 usb0
169.254.0.0     0.0.0.0         255.255.0.0     U         0 0          0 eth0
169.254.0.0     0.0.0.0         255.255.0.0     U         0 0          0 eth1
0.0.0.0         192.168.2.254   0.0.0.0         UG        0 0          0 eth1

답변1

서버에서 호스트 라우팅 테이블은 어떻게 보입니까?

netstat -rn

로컬호스트 기반 라우팅 문제가 있는 것 같습니다. SSH에 대한 포트 전달은 서버에 로컬로 연결되어 있기 때문에 계속 작동합니다.

관련 정보