Find the HIDDEN SECRETS that THEY DON'T WANT YOU TO KNOW! $ man ssh
It’s been a while since I’ve heard RTFM
SSH Secret Menu
101–110 of 184 posts
Re: SSH Secret Menu
#102Re: SSH Secret Menu
#103Earlier quoted context omitted.
Many Linux man pages have the thoroughness of a fortune cookie, so I can understand the skepticism. Jackpot if they're just a pointer to an 'info' page.
The real jackpot is if they're the same as the --help command
Re: SSH Secret Menu
#104Earlier quoted context omitted.
Note this is only an issue if not using IPv6. CGNAT is for access to legacy IPv4 only.
Well, for different reasons, but you have similar issues with IPv6 as well. If your client uses temporary addresses (most likely since they're enabled by default on most OS), OpenSSH will pick one of them over the stable address and when they're rotated the connection breaks. For some reason, OpenSSH devs refuse to fix this issue, so I have to patch it myself: --- a/sshconnect.c +++ b/sshconnect.c @@ -26,6 +26,7 @@ #…
Re: SSH Secret Menu
#105Earlier quoted context omitted.
man ssh_config is even more interesting and hidden ProxyCommand is fun
Honest question, why is ProxyCommand `fun`? What do I get out of ProxyCommand that i do not get out of setting the correct order for ProxyJump and doing an ssh finalhost -- domy --bidding?
[0]: https://developers.cloudflare.com/cloudflare-one/networks/co...
Re: SSH Secret Menu
#106Earlier quoted context omitted.
What I usually do when I have to read large man pages like bash(1) is I read them as PDFs: man -Tpdf bash | zathura - Replace zathura with any PDF viewer reading from stdin or just save the PDF. Hope that can be useful to someone!
my manpager is `vim -`, can't beat that
https://wiki.archlinux.org/title/Neovim#Use_as_a_pager
https://neovim.io/doc/user/filetype/#_man
I've also been running (neo)vim as a manpager. You get the same features as with vim (like easily copying text or opening referenced files/other manpages without using the mouse), but neovim also parses the page and creates a table of contents, which can be used for navigation within the page. It doesn't always work perfectly, but is usually better than nothing.
Re: SSH Secret Menu
#107Earlier quoted context omitted.
man ssh_config is even more interesting and hidden ProxyCommand is fun
Honest question, why is ProxyCommand `fun`? What do I get out of ProxyCommand that i do not get out of setting the correct order for ProxyJump and doing an ssh finalhost -- domy --bidding?
Re: SSH Secret Menu
#108Find the HIDDEN SECRETS that THEY DON'T WANT YOU TO KNOW! $ man ssh
Re: SSH Secret Menu
#109I've used ~. for a long time but did not know about others. I know, should have read man page. Anyway, if you try it from shell prompt it is likely will not work as pressing ENTER shows the next prompt. Try `cat` followed by ENTER and then ~?
The point of the return is to prime it to accept the start of a new escape sequence. Presumably the idea is that `~.` is not completely unlikely to occur as part of text entered remotely, but less so at the beginning of a new line.