কীভাবে ওয়েব লিঙ্কের মাধ্যমে ক্রোমের সুরক্ষিত শেল এসএসএস প্লাগইন চালু করা যায়


0

আমি কীভাবে একটি URL বা লিঙ্ক তৈরি করব তা ক্লায়েন্টের এসএসএইচ অধিবেশন চালায়। আমি 'সিকিউর শেল' নামে পরিচিত ক্রোম এক্সটেনশানটি পেয়েছি, তবে ডকুমেন্টেশনটি বরং ন্যূনতম।

মূলত, আমি যে আচরণটি সন্ধান করছি তা হ'ল:

1) user is presented with a list of VM links
2) user clicks a link
3) user's client system starts an SSH session
4) if this is the first time the session has been started, the user is 
   prompted to select the appropriate authentication method (i.e. enter 
   username/password or select ssh key, etc.)
5) if this is not the first time the session has been started, the 
   client remembers the user's previous selections and opens the client 
   using those selections

সিকিউর শেল বা অন্য কোনও প্লাগইন / অ্যাপ্লিকেশন দিয়ে এটি করার কোনও উপায় আছে কি?

উত্তর:


0

একই ধারণা নিয়মিত ওয়েব পৃষ্ঠাগুলির লিঙ্ক হিসাবে প্রয়োগ করা হয়। কেবল প্রোটোকলকে সরাসরি কল করুন এবং এটি কেবল ক্রোমে কাজ করবে। এটি কীভাবে করবেন তা নীচে একটি নমুনা দেওয়া আছে।

<HTML>
<body>
<a href="chrome-extension://pnhechapfaindjhompbnflcldabbghjo/html/nassh.html">Secure Shell</a>
</body>
</HTML>
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.