স্কুইডকে এইচটিটিপিএস ফরোয়ার্ড প্রক্সি হিসাবে কনফিগার করবেন?


9

আমার সমস্যা সম্পর্কে এখানে কিছু ব্যাকগ্রাউন্ড রয়েছে:

  • আমার একটি হেরোকুতে একটি ওয়েব পরিষেবা চলছে, যার সাথে একটি ডায়নামিক আইপি ঠিকানা রয়েছে। হেরোকুতে স্থির আইপি কোনও বিকল্প নয়।
  • আমার একটি বাহ্যিক ওয়েব পরিষেবাতে সংযোগ স্থাপন করা দরকার যা ফায়ারওয়ালের পিছনে রয়েছে। বাহ্যিক ওয়েব পরিষেবা পরিচালিত লোকেরা কেবলমাত্র একটি নির্দিষ্ট স্ট্যাটিক আইপিতে তাদের ফায়ারওয়ালটি খুলবে।

আমার প্রয়াস সমাধান হেরোকু থেকে বাহ্যিক পরিষেবাতে ফরোয়ার্ড-প্রক্সি অনুরোধের জন্য স্ট্যাটিক আইপি সহ একটি পৃথক সার্ভারে স্কুইড ব্যবহার করা। এইভাবে, বাহ্যিক পরিষেবা সর্বদা হেরোকু পরিষেবার গতিশীল আইপি এর পরিবর্তে প্রক্সি সার্ভারের স্ট্যাটিক আইপিটি দেখে।

যেহেতু আমার প্রক্সি সার্ভার প্রমাণীকরণের জন্য কোনও আইপি ঠিকানার উপর নির্ভর করতে পারে না (এটিই সমস্যাটি শুরু করতে হবে!) সুতরাং এটি অবশ্যই ব্যবহারকারীর নাম এবং পাসওয়ার্ডের উপর নির্ভর করবে। তদ্ব্যতীত, ব্যবহারকারীর নাম এবং পাসওয়ার্ড স্পষ্ট পাঠ্যে প্রেরণ করা যায় না, কারণ কোনও আক্রমণকারী যদি সেই স্পষ্ট পাঠটিকে বাধা দেয় তবে তারা আমার বলে ভান করে আমার প্রক্সিটির সাথে সংযোগ করতে পারত, আমার প্রক্সিটির স্ট্যাটিক আইপি ব্যবহার করে বহির্মুখী অনুরোধ করতে পারে এবং এইভাবে বাহ্যিক প্রতিরোধ করতে পারে ওয়েব পরিষেবাদির ফায়ারওয়াল

অতএব, স্কুইড প্রক্সিটি কেবলমাত্র HTTPS- র মাধ্যমে সংযোগগুলি গ্রহণ করতে হবে HT (বাহ্যিক ওয়েব সেবার সংযোগটি HTTP বা HTTPS হতে পারে))

আমি CentOS 6.5.x এ 3.1.10 স্কুইড চালাচ্ছি, এবং squid.confএখন পর্যন্ত আমার এখানে । শুধুমাত্র সমস্যা সমাধানের উদ্দেশ্যে, আমি অস্থায়ীভাবে এইচটিটিপি এবং এইচটিটিপিএস উভয়ই প্রক্সিং সক্ষম করেছি, তবে আমি কেবল এইচটিটিপিএসই ব্যবহার করতে চাই।

#
# 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 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

# Authorization

auth_param digest program /usr/lib64/squid/digest_pw_auth -c /etc/squid/squid_passwd
auth_param digest children 20 startup=0 idle=1
auth_param digest realm squid
auth_param digest nonce_garbage_interval 5 minutes
auth_param digest nonce_max_duration 30 minutes
auth_param digest nonce_max_count 50

acl authenticated proxy_auth REQUIRED

#
# 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 authenticated

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

# Squid normally listens to port 3128
http_port 3128

https_port 3129 cert=/etc/squid/ssl/cert.pem key=/etc/squid/ssl/key.pem

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

# Disable all caching
cache deny all

# 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

এই সেটআপটি ব্যবহার করে, এইচটিটিপি প্রক্সিং সূক্ষ্মভাবে কাজ করে, তবে এইচটিটিপিএস প্রক্সিং করে না।

একটি স্থানীয় বাক্স থেকে এইচটিটিপি প্রক্সি অনুরোধ এখানে রয়েছে:

$ curl --proxy http://my-proxy-server.example:3128 \
  --proxy-anyauth --proxy-user redacted:redacted -w '\n' \
  http://urlecho.appspot.com/echo?body=OK
OK

ভাল, এটাই আমি প্রত্যাশা করেছিলাম। এতে এক লাইনে ফলাফল /var/log/squid/access.log:

1390250715.137     41 my.IP.address.redacted TCP_MISS/200 383 GET http://urlecho.appspot.com/echo? redacted DIRECT/74.125.142.141 text/html

এখানে এইচটিটিপিএসের সাথে আরও একটি অনুরোধ রইল:

$ curl --proxy https://my-proxy-server.example:3129 \
  --proxy-anyauth --proxy-user redacted:redacted -w '\n' \
  http://urlecho.appspot.com/echo?body=OK

curl: (56) Recv failure: Connection reset by peer

এর access.logপরে আর কিছুই নয়, কিন্তু এতে cache.log:

2014/01/20 20:46:15| clientNegotiateSSL: Error negotiating SSL connection on FD 10: error:1407609C:SSL routines:SSL23_GET_CLIENT_HELLO:http request (1/-1)

উপরের আবার এখানে, আরও মৌখিকভাবে:

$ curl -v --proxy https://my-proxy-server.example:3129 \
  --proxy-anyauth --proxy-user redacted:redacted -w '\n' \
  http://urlecho.appspot.com/echo?body=OK
* Adding handle: conn: 0x7f9a30804000
* Adding handle: send: 0
* Adding handle: recv: 0
* Curl_addHandleToPipeline: length: 1
* - Conn 0 (0x7f9a30804000) send_pipe: 1, recv_pipe: 0
* About to connect() to proxy my-proxy-server.example port 3129 (#0)
*   Trying proxy.server.IP.redacted...
* Connected to my-proxy-server.example (proxy.server.IP.redacted) port 3129 (#0)
> GET http://urlecho.appspot.com/echo?body=OK HTTP/1.1
> User-Agent: curl/7.30.0
> Host: urlecho.appspot.com
> Accept: */*
> Proxy-Connection: Keep-Alive
> 
* Recv failure: Connection reset by peer
* Closing connection 0

curl: (56) Recv failure: Connection reset by peer

কোনও এসএসএল ত্রুটি বলে মনে হচ্ছে। তবে, আমি উপরোক্ত কনফিগারেশনে cert.pemএবং key.pemঅন্য ওয়েব সার্ভারগুলিতে সফলভাবে মোতায়েন করেছি এমন একটি সাবডোমেন-ওয়াইল্ডকার্ড এসএসএল শংসাপত্র পুনরায় ব্যবহার করছি । তদতিরিক্ত, কার্লের সাথে সরাসরি প্রক্সি সার্ভার অ্যাক্সেস করা বা কমপক্ষে এসএসএল পর্যায়ে কোনও সংযোগ স্থাপন করে:

$ curl https://my-proxy-server.example:3129
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>ERROR: The requested URL could not be retrieved</title>

[--SNIP--]

<div id="content">
<p>The following error was encountered while trying to retrieve the URL: <a href="https://serverfault.com/">/</a></p>

<blockquote id="error">
<p><b>Invalid URL</b></p>
</blockquote>

<p>Some aspect of the requested URL is incorrect.</p>

<p>Some possible problems are:</p>
<ul>
<li><p>Missing or incorrect access protocol (should be <q>http://</q> or similar)</p></li>
<li><p>Missing hostname</p></li>
<li><p>Illegal double-escape in the URL-Path</p></li>
<li><p>Illegal character in hostname; underscores are not allowed.</p></li>
</ul>

[--SNIP--]

কোন ধারণা আমি কি ভুল করছি? আমি কি সম্ভব চেষ্টা করছি? আগাম ধন্যবাদ.


2
আমি মনে করি না যে স্কুইডের এভাবে কাজ করার কথা। আমার কোনও এইচটিটিপিএস বা একটি এইচটিটিপিএস অনুরোধটি এইচটিটিপিএস সংযোগের প্রক্সড করতে সক্ষম হবে। অন্যথায় পরামর্শ দেওয়ার জন্য ডকুমেন্টেশনে আমি কিছুই দেখতে পাচ্ছি না। নির্বিশেষে, যাই হোক না কেন আপনি যা পরামর্শ দিয়েছেন তা আমি চেষ্টা করেছি এবং এটি কার্যকর হয়নি (উপরের মতো একই ফলাফল)।
ডেভিড

আমার আগের মন্তব্যটি অন্য ব্যবহারকারীর মন্তব্যগুলির জবাবে ছিল যা মুছে ফেলা হয়েছে বলে মনে হয়। কেবলমাত্র নোট করতে চেয়েছি যে আমি এই প্রশ্নটি স্কুইড মেলিং তালিকায় ক্রস পোস্ট করেছি: mail-archive.com/squid-users@squid-cache.org/msg93592.html
ডেভিড

যার মতো একটি দৃশ্য ছিল, আমরা প্রক্সি পদ্ধতির চেষ্টা করেছি, সফল হয়েছি এবং তারপরে অ্যাপ্লিকেশনটিকে হেরোকু থেকে সরিয়ে একটি স্ট্যাটিক আইপি সহ ভার্চুয়াল / উত্সর্গীকৃত মেশিনের মতো সরবরাহকারীর কাছে স্থানান্তরিত করার পক্ষে হয়েছি। কেবলমাত্র এই উদ্দেশ্যে ফরওয়ার্ড প্রক্সি সার্ভার বজায় রাখার অতিরিক্ত ওভারহেড রয়েছে।
শ্যাম সুন্দর সিএস

উত্তর:


1

@ ডেভিড, স্কুইড এমএল -তে আপনার থ্রেড অনুসারে - আমি স্টানেল সলিউশন নিয়ে যাওয়ার পরামর্শ দেব। আপনার প্রমাণীকরণটি টানেলের উভয় প্রান্তে এসএসএল শংসাপত্র হবে, বাকী সেই টানেলের মধ্যে "স্পষ্ট পাঠ্য" চলে যাবে, বা আপনি যেমন ইচ্ছা তেমন ডাইজেস্ট করতে পারেন।

আমি দুর্দান্ত সাফল্যের সাথে এনএফএস শেষ পয়েন্টগুলিকে "প্রমাণীকরণ" করতে অনুরূপ সমাধান ব্যবহার করেছি।

লিনাক্সগ্যাজেটের সুরক্ষিত যোগাযোগের মধ্যে স্ট্যান্ডেলের সাথে এই জাতীয় প্রমাণীকরণের নমুনা ব্যবহার দেখা যায়


1

আপনি দেখতে পাচ্ছেন যে এটি কীভাবে এই ছোট ডকারের ছবিতে হয়েছে: ইয়েগোর 256 / স্কুইড-প্রক্সি । আপনার কোডের সাথে সমস্যাটি হ'ল aclনির্দেশের পরে কনফিগারেশনটি চলে । কেবল তাদের অদলবদল করুন এবং এটি সমস্ত কাজ শুরু করে।

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.