Mengapa akses ke LAN ke-2 (via squid) gagal?


0

Saya mengalami masalah dengan konfigurasi cumi yang sangat sederhana.

Jaringan saya dikonfigurasi seperti yang ditunjukkan:

=== 192.168.3.xxx LAN === (eth1 - .100) [host proxy] (. 18.240.66 - eth0) === 10.xxx LAN

Saya ingin mem-proxy permintaan dari 192.168.3.0/24 LAN ke 10.0.0.0/8 LAN. Saya telah menyiapkan pengaturan proxy pada 192.168.3.200 untuk menggunakan proxy di 192.168.3.100:8080. Permintaan proxy tiba di proxy baik-baik saja, tetapi tampaknya tidak keluar pada eth0. Saya sudah memverifikasi keduanya dengan Wireshark.

Secara khusus, saya mencoba mengirim permintaan HTTP dari 192.168.3.200 ke 10.63.78.243 melalui proxy. Inilah yang berakhir dengan cumi-cumi access.log:

192.168.3.200 TCP_MISS/000 0 GET http://10.63.78.243:8080/path/server.jsp? - DIRECT/10.63.78.243 -

Paket yang dikirim dari .200 ke .100: 8080 memiliki konten ini (via Wireshark):

GET http://10.63.78.243:8080/path/server.jsp?x=x HTTP/1.1
Accept: image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/x-ms-application, application/x-ms-xbap, application/vnd.ms-xpsdocument, application/xaml+xml, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*
Accept-Language: en-us
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; MS-RTC LM 8)
Accept-Encoding: gzip, deflate
Proxy-Connection: Keep-Alive
Host: 10.63.78.243:8080

Saya memiliki konfigurasi squid berikut:

#
# Recommended minimum configuration:
#
acl manager proto cache_object
acl localhost src 127.0.0.1/32 ::1
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1

# Example rule allowing access from your local networks.
# Adapt to list your (internal) IP networks from where browsing
# should be allowed
acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
acl localnet src 172.16.0.0/12  # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
acl localnet src fc00::/7       # RFC 4193 local private network range
acl localnet src fe80::/10      # RFC 4291 link-local (directly plugged) machines
acl RDnet dst 10.0.0.0/8

acl SSL_ports port 443
acl Safe_ports port 80      # http
acl Safe_ports port 21      # ftp
acl Safe_ports port 443     # https
acl Safe_ports port 70      # gopher
acl Safe_ports port 210     # wais
acl Safe_ports port 1025-65535  # unregistered ports
acl Safe_ports port 280     # http-mgmt
acl Safe_ports port 488     # gss-http
acl Safe_ports port 591     # filemaker
acl Safe_ports port 777     # multiling http
acl CONNECT method CONNECT

#
# Recommended minimum Access Permission configuration:
#
# Only allow cachemgr access from localhost
http_access allow manager localhost
http_access deny manager

# Deny requests to certain unsafe ports
http_access deny !Safe_ports

# Deny CONNECT to other than secure SSL ports
http_access deny CONNECT !SSL_ports

# We strongly recommend the following be uncommented to protect innocent
# web applications running on the proxy server who think the only
# one who can access services on "localhost" is a local user
#http_access deny to_localhost

#
# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
#

# Example rule allowing access from your local networks.
# Adapt localnet in the ACL section to list your (internal) IP networks
# from where browsing should be allowed
http_access allow localnet
http_access allow localhost
http_access allow RDnet

# And finally deny all other access to this proxy
http_access deny all

# Squid normally listens to port 3128
http_port 8080

# We recommend you to use at least the following line.
hierarchy_stoplist cgi-bin ?

# Uncomment and adjust the following to add a disk cache directory.
#cache_dir ufs /var/spool/squid 100 16 256

# Leave coredumps in the first cache dir
coredump_dir /var/spool/squid

# Add any of your own refresh_pattern entries above these.
refresh_pattern ^ftp:       1440    20% 10080
refresh_pattern ^gopher:    1440    0%  1440
refresh_pattern -i (/cgi-bin/|\?) 0 0%  0
refresh_pattern .       0   20% 4320

netstat -rn memberikan yang berikut:

[root@localhost squid]# netstat -rn
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
192.168.3.0     0.0.0.0         255.255.255.0   U         0 0          0 eth1
192.168.122.0   0.0.0.0         255.255.255.0   U         0 0          0 virbr0
10.18.240.0     0.0.0.0         255.255.248.0   U         0 0          0 eth0
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         10.18.247.254   0.0.0.0         UG        0 0          0 eth0

Saya membaca bahwa sebagai perutean paket apa pun (termasuk yang ke 10.63.78.243) ke 10.18.247.254 melalui eth0. Saya tahu ini dapat dijangkau (lihat hasil dari ping -R)

[root@localhost squid]# ping -c 1 -R 10.63.78.243
PING 10.63.78.243 (10.63.78.243) 56(124) bytes of data.
64 bytes from 10.63.78.243: icmp_seq=1 ttl=50 time=377 ms
RR:     10.18.240.66
    10.138.156.186
    10.17.182.22
    10.190.11.66
    112.78.255.4
    198.19.1.41
    10.143.222.81
    10.143.222.98
    172.31.206.129


--- 10.63.78.243 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 377ms
rtt min/avg/max/mdev = 377.644/377.644/377.644/0.000 ms

Adakah pikiran? Satu pemikiran yang saya alami adalah bahwa Squid menerima permintaan dengan baik dan mencoba mengirimkannya tetapi .... Kemana mungkin pergi? Tuan rumah ini hanya memiliki 2 antarmuka, dan paket ke 10.xxx harus keluar eth0. Tetapi tidak ada paket muncul di Wireshark. Jadi saya agak tersesat.

UPDATE: Menambahkan yang berikut ke file konfigurasi:

cache_peer 10.159.3.23 parent 8080 0 default

Itu memungkinkan proxy saya untuk meneruskan permintaan ke proxy yang sebenarnya bisa mencapai host 10.63.78.243.


kesalahan ketik - dikatakan "Saya mencoba mengirim permintaan HTTP dari 192.168.3.200 ke 110.63.78.243 melalui proksi" tetapi alamat tujuan harus 10 .63.78.243, bukan 110 .xxx (PEMBARUAN: diperbarui dalam pertanyaan )
Cubs Fan Ron

Saya punya pemikiran - mungkin saya harus menambahkan antarmuka bahwa paket 10.xxx perlu digunakan untuk konfigurasi squid. Saya mencoba menjalankan klien Firefox lokal pada mesin "host proxy" dengan konfigurasi yang menyuruhnya menggunakan proxy dan gagal dengan cara yang sama. Pointer ke informasi konfigurasi semacam itu ???
Cubs Fan Ron

@ Card memberi saya petunjuk di bawah ini - saya menambahkan baris berikut ke file konfigurasi untuk memungkinkan proxy saya meneruskan ke proxy lain yang benar-benar dapat mencapai host yang saya coba jangkau! cache_peer 10.159.3.23 parent 8080 0 default
Cubs Fan Ron

Jawaban:


0

MISS / 000 berarti dibatalkan, tidak yakin itu dari klien atau tidak ada jawaban kembali setelah melewati permintaan ke 10.63.78.243:8080

Apa yang Anda dapatkan dengan "telnet 10.63.78.243 8080" DARI host squid? GET / HTTP / 1.1 Host: 10.63.78.243:8080


Yah itu tidak berhasil, tetapi jika saya mencoba memuat halaman web di Firefox dari host yang sama itu berhasil. Mengetahui perbedaannya? Firefox menggunakan proxy!
Cubs Fan Ron

Saya telah membuat perubahan konfigurasi dan terdaftar di atas. Anda tidak memberi saya jawabannya, tetapi Anda benar-benar menuntun saya ke sana. Itu cukup baik untuk saya - Anda mendapat +1 dan tanda centang!
Cubs Fan Ron

(Saya tidak memiliki cukup kemuliaan untuk memberi Anda +1, tetapi ketika saya melakukannya saya akan kembali dan melakukannya)
Cubs Fan Ron

Terima kasih ^^, saya perhatikan pagi ini bahwa server dst tidak ke dalam subnet antarmuka proxy, titik ini mengarah ke banyak masalah lain yang mungkin sebagai proxy maju, perutean atau pemblokiran FW ..
Kartu
Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.