Dustin S
unread,Aug 18, 2023, 9:44:24 AM8/18/23Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to chromium-hterm, vap...@google.com, chromium-hterm, Dustin S
Thanks, I was looking at that documentation when I formed my example url, but it looks like I can only submit 1 argument at a time
ssh://user[;option=value]@host[:port] However on the connections page I can enter several so I was curious if I was forming my url incorrectly. Please forgive my ignorance if it's obvious how to submit multiple arguments in the url, but it's not clear to me from the documentation.
I've tried the following different combinations for forming the url, but none of them worked:
Using Commas to Separate Options:
ssh://user;KexAlgorithms=+diffie-hellman-group1-sha1,HostKeyAlgorithms=+ssh-rsa,Cipher=
aes25...@192.168.1.10:22Using Ampersands to Separate Options:
ssh://user;KexAlgorithms=+diffie-hellman-group1-sha1&HostKeyAlgorithms=+ssh-rsa&Cipher=
aes25...@192.168.1.10:22Including the -o Prefix for Options:
ssh://user;KexAlgorithms=+diffie-hellman-group1-sha1&HostKeyAlgorithms=+ssh-rsa&Cipher=
aes25...@192.168.1.10:22Using URL Encoding for Special Characters:
ssh://user;KexAlgorithms=%2Bdiffie-hellman-group1-sha1;HostKeyAlgorithms=%2Bssh-rsa;Cipher=
aes25...@192.168.1.10:22