squid3가 설치된 데비안 상자가 있습니다. 내 상자에는 2 개의 인터페이스가 있으며, 하나는 인터넷에 연결되어 있습니다 ( eth0
) 및 LAN에 연결된 하나 ( eth1
)
여기, 내 것이요 /etc/network/interfaces
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 10.122.72.2
netmask 255.255.255.0
network 10.122.72.0
broadcast 10.122.72.255
gateway 10.122.72.1
dns-nameservers 202.46.129.2
auto eth1
iface eth1 inet static
address 10.122.2.1
netmask 255.255.255.0
network 10.122.2.0
broadcast 10.122.2.255
그리고 여기에 내 일부분이있다. /etc/squid3/squid.conf
http_port 8080
acl localhost src 127.0.0.1/32
acl to_localhost dst 127.0.0.0/8
acl lan src 10.122.72.2 10.122.2.0/24
http_access allow localhost
http_access allow lan
이 구성을 사용하면 로컬 네트워크를 탐색 할 수 있습니다 ( 10.122.2.0/24
) http 프록시를 사용하여 파이어 폭스와 함께 10.122.2.1
온 포트 8080
. 어떤 이유로, 나는 오징어가 양쪽 모두를 듣게하고 싶다. 10.122.2.1
과 10.122.72.2
. 나는 변화 시키려고 노력했다. http_port
지시어 http_port 10.122.72.2:8080
http 프록시를 사용하도록 Firefox를 설정하십시오. 10.122.72.2
온 포트 8080
,하지만 파이어 폭스는 말했다 the connection has timed out
.
어떤 아이디어? 사전에 감사드립니다.