मैं SSH सुरंग के माध्यम से Google Chrome से सभी ट्रैफ़िक को आगे बढ़ाने का प्रयास कर रहा हूं।
जब फ़ायरफ़ॉक्स को सुरंग का उपयोग करने के लिए कॉन्फ़िगर किया गया है, तो यह काम करता है। जब क्रोम को संलग्न किए गए प्रॉक्सी आर्ग के साथ लॉन्च किया जाता है, तो यह जल्दी से ssh प्रक्रिया को बंद कर देता है और पृष्ठों को टाइमआउट करता है।
ग्राहक:
- OpenSSH_5.8p1 डेबियन -7, ओपनएसएसएल 1.0.0d 8 फरवरी 2011
- Google Chrome 17.0.963.79
सर्वर:
- OpenSSH_5.9p1 Debian-3ubuntu1, OpenSSL 1.0.0g 18 जनवरी 2012
सर्वर कॉन्फ़िगरेशन;
~$ cat /etc/ssh/sshd_config
...
PermitRootLogin no
AllowUsers testuser
ClientAliveInterval 60
ClientAliveCountMax 5
GatewayPorts yes
MaxSessions 100
#MaxStartups 100
ग्राहक का उपयोग कर जुड़ा हुआ है ~$ ssh -v -D 8118 testuser@example.net
क्रोम के साथ निष्पादित किया गया ~$ google-chrome --proxy-server="socks5://localhost:8118"
debug1: Connection to port 8118 forwarding to socks port 0 requested.
debug1: channel 3: new [dynamic-tcpip]
debug1: Connection to port 8118 forwarding to socks port 0 requested.
debug1: channel 4: new [dynamic-tcpip]
...
debug1: Connection to port 8118 forwarding to socks port 0 requested.
debug1: channel 51: new [dynamic-tcpip]
debug1: Connection to port 8118 forwarding to socks port 0 requested.
debug1: channel 52: new [dynamic-tcpip]
क्रोम रिपोर्ट में लोड किए गए पृष्ठ; Error 7 (net::ERR_TIMED_OUT): The operation timed out.
क्लाइंट साइड ssh प्रक्रिया लॉक हो जाती है और उसे मारना पड़ता है।