포트 80이 차단된 이유를 찾는 방법은 무엇입니까?

포트 80이 차단된 이유를 찾는 방법은 무엇입니까?

우리는 라우터 뒤에 있는 Debian 8 시스템에서 Apache를 실행하고 있습니다. Apache가 실행 중이고 페이지를 제공하고 있음을 알 수 있는 이유는 상자에 로그인할 때 "localhost" 주소와 로컬 IP를 사용하여 "ifconfig" 명령에 표시된 대로 웹 페이지를 가져올 수 있기 때문입니다.

myuser@myserver:~ $ ifconfig
eth0      Link encap:Ethernet  HWaddr b8:37:ae:d2:3f:29
          inet addr:192.168.0.114  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::d964:f94e:233d:6f55/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:103604 errors:0 dropped:20 overruns:0 frame:0
          TX packets:54463 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:33144049 (31.6 MiB)  TX bytes:6391213 (6.0 MiB)

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:9550967 errors:0 dropped:0 overruns:0 frame:0
          TX packets:9550967 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1
          RX bytes:1519312520 (1.4 GiB)  TX bytes:1519312520 (1.4 GiB)

여기서는 컴퓨터 자체의 터미널로 이동하여 페이지를 "wget"할 수 있습니다.

myuser@myserver:~ $ wget http://192.168.0.114
converted 'http://192.168.0.114' (ANSI_X3.4-1968) -> 'http://192.168.0.114' (UTF-8)
--2017-09-18 14:54:01--  http://192.168.0.114/
Connecting to 192.168.0.114:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: 'index.html.2'

index.html.2                                           [ <=>                                                                                                               ]   7.33K  --.-KB/s   in 0s

2017-09-18 14:54:06 (31.8 MB/s) - 'index.html.2' saved [7506]

하지만 우리가 방문했을 때http://192.168.0.114LAN 내의 웹 브라우저에서는 응답이 없습니다. 연결을 차단할 수 있는 다른 요인이 무엇인지 알아내려고 노력 중입니다. 로컬 IP를 통해 액세스하려고 하면 이 단계에서 라우터를 우회할 것이라고 가정합니다.

관련 정보