Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

Add SSH protocol handler to Firefox

  • 1 답장
  • 2 이 문제를 만남
  • 8 보기
  • 최종 답변자: user1929

more options

I'm trying to get Firefox to recognize ssh protocol handlers when typing ssh://192.168.1.2 in my address bar and open my SSH client SecureCRT.

I've added the following registry files to my Windows 7 install

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\ssh] @="URL:SSH Protocol" "URL Protocol"=""

[HKEY_CLASSES_ROOT\ssh\shell]

[HKEY_CLASSES_ROOT\ssh\shell\open]

[HKEY_CLASSES_ROOT\ssh\shell\open\command] @="\"C:\\Program Files\\VanDyke Software\\SecureCRT\\SecureCRT.exe\" \"%1\""

This works perfectly under Internet Explorer (see attached photo). I can't get it working with Firefox v57 64bit. I've tried adding the following to my about:config with no luck

network.protocol-handler.external.ssh BOOL true network.protocol-handler.expose.ssh BOOL true network.protocol-handler.warn-external.ssh BOOL false

Any suggestions?

I'm trying to get Firefox to recognize ssh protocol handlers when typing ssh://192.168.1.2 in my address bar and open my SSH client SecureCRT. I've added the following registry files to my Windows 7 install Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\ssh] @="URL:SSH Protocol" "URL Protocol"="" [HKEY_CLASSES_ROOT\ssh\shell] [HKEY_CLASSES_ROOT\ssh\shell\open] [HKEY_CLASSES_ROOT\ssh\shell\open\command] @="\"C:\\Program Files\\VanDyke Software\\SecureCRT\\SecureCRT.exe\" \"%1\"" This works perfectly under Internet Explorer (see attached photo). I can't get it working with Firefox v57 64bit. I've tried adding the following to my about:config with no luck network.protocol-handler.external.ssh BOOL true network.protocol-handler.expose.ssh BOOL true network.protocol-handler.warn-external.ssh BOOL false Any suggestions?
첨부된 스크린샷

글쓴이 mikalcarbine 수정일시

모든 댓글 (1)

more options

I think it might work if you manually add the protocol to the file where Firefox stores this information:

  1. Type "about:profiles" in the address bar
  2. Find the profile listed as being "in use", and click the "show in Explorer" button in the "root directory" field
  3. Open the folder that appears, find the "handlers.json" file, and open it.

Next, you want to add an entry for the SSH protocol. At the end of the file, you should see several characters like this:

}]}}}

What you want to do is add a comma, and insert the snippet below, so that it matches this:

}]}, [snippet below] }}

Replace [snippet below] with the following:

"ssh":{"action":2,"ask":false,"handlers":[{"name":"SecureCRT","path":"C:\Path\To\Application"}]}

Replace "Path\To\Application" above with the location of the SecureCRT executable.

Once you've done that, save the file, and then restart Firefox. Type "about:preferences" in the searchbar, scroll down to the "Applications" section, and look for the "SSH" entry. Under "action", you should see "Use SecureCRT", and if you type an ssh:// url in the address bar, it should work now.

I don't have a copy of SecureCRT installed to test this with, so I'm not completely sure if this will work or not. Let me know what happens! (If if doesn't work, you can just remove the entry from handlers.json and restart Firefox again).