एसएनएस टनलिंग पर अजीब आउटपुट: आउटपुट विफल; कनेक्ट विफल: कनेक्शन समय समाप्त हो गया;


18

मैं ssh user@xx.yy.zz.41 -p 1234 -D 9898टनलिंग के लिए कमांड का उपयोग करता हूं , और मैं फ़ायरफ़ॉक्स मोज़े 5 आईपी को 127.0.0.1 और इसके पोर्ट को 9898 पर सेट करता हूं। यह सफलतापूर्वक काम करता है, लेकिन टर्मिनल में मुझे आउटपुट में त्रुटि होती है:

channel 39: open failed: connect failed: Connection timed out
channel 41: open failed: connect failed: Connection timed out
channel 42: open failed: connect failed: Connection timed out
channel 43: open failed: connect failed: Connection timed out
channel 44: open failed: connect failed: Connection timed out

यह समय-समय पर होता है। यह क्या है? कोई समस्या है? मैं क्या कर सकता हूँ?

जवाबों:


21

मैंने ऐसे ही मुद्दों का अनुभव किया है। यदि आप ssh के माध्यम से फ़ायरफ़ॉक्स के साथ सुरंग बना रहे हैं, तो कुछ HTTP कनेक्शन बस सर्वर लोड या अनुचित कॉन्फ़िगरेशन के कारण टाइमआउट कर सकते हैं। जब कनेक्शन वास्तव में टाइमआउट करता है, तो आपको एक त्रुटि संदेश मिलेगा जैसे आपने संकेत दिया था।

आप निम्न आदेश के साथ इन संदेशों को दबा सकते हैं

ssh user@xx.yy.zz.41 -p 1234 -D 9898 -q

मैन पेज से ssh(1)

 -q      Quiet mode.  Causes most warning and diagnostic messages to be sup-
         pressed.

संदेश को दबाने से चेतावनी आपके ssh या स्क्रीन सत्र को गड़बड़ाने से बची रहेगी।


धन्यवाद इस समाधान महान काम करता है! एक प्रश्न: यह समयबाह्य समय-समय पर तब भी होता है जब सभी ब्राउज़र प्रक्रियाएँ बंद हो जाती हैं। मैं यह निर्धारित करने की कोशिश कर रहा हूं कि समयबाह्य क्या हो रहा है और अनुरोध कहां भेजा जा रहा है। किसी भी सुझाव कैसे ssh सुरंग के लिए अधिक क्रिया त्रुटि जानकारी प्रदर्शित करने के लिए?
19

3

सेट GatewayPortsकरने के लिए yesऔर फिर कोशिश करें।

ssh -o 'GatewayPorts yes' user@xx.yy.zz.41 -p 1234 -D 9898

man ssh_config

 DynamicForward
         Specifies that a TCP port on the local machine be forwarded over the secure channel, and the application protocol
         is then used to determine where to connect to from the remote machine.

         The argument must be [bind_address:]port.  IPv6 addresses can be specified by enclosing addresses in square
         brackets.  By default, the local port is bound in accordance with the GatewayPorts setting.  However, an explicit
         bind_address may be used to bind the connection to a specific address.  The bind_address of “localhost” indicates
         that the listening port be bound for local use only, while an empty address or ‘*’ indicates that the port should
         be available from all interfaces.

         Currently the SOCKS4 and SOCKS5 protocols are supported, and ssh(1) will act as a SOCKS server.  Multiple for‐
         wardings may be specified, and additional forwardings can be given on the command line.  Only the superuser can
         forward privileged ports.

 GatewayPorts
         Specifies whether remote hosts are allowed to connect to local forwarded ports.  By default, ssh(1) binds local
         port forwardings to the loopback address.  This prevents other remote hosts from connecting to forwarded ports.
         GatewayPorts can be used to specify that ssh should bind local port forwardings to the wildcard address, thus
         allowing remote hosts to connect to forwarded ports.  The argument must be “yes” or “no”.  The default is “no”.

1
मैं -o 'GatewayPorts हां' का उपयोग करता हूं, लेकिन यह त्रुटि फिर से हुई।
अरास मौसवी

गेटवेपोर्ट्स समस्या नहीं है। गेटवे पोर्ट्स ssh सर्वर को गैर-स्थानीय पोर्ट्स को सुनने की सुविधा देता है। रिवर्स सुरंग बनाते समय गेटवेपोर्ट बहुत उपयोगी हो जाता है - निजी नेटवर्क से मेजबान को आपके ssh क्लाइंट होस्ट से वापस कनेक्ट करने की अनुमति देता है। गॉर्डोलियो के ठीक ऊपर है: स्थानीय ssh द्वारा शुरू किया गया SOCKS सर्वर शिकायत कर रहा है जब यह SOCKS क्लाइंट उपयोगकर्ताओं द्वारा अनुरोधित होस्ट / पोर्ट तक नहीं पहुंच सकता है (जैसा कि गॉर्डोलियो के उदाहरण, फ़ायरफ़ॉक्स में है)।
मार्क
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.