# Snippets - SSH **Kind**:: #snippets-collection **Source**:: #from/vsnip **Generated by**:: [[ob-snippets]] **Snippets**:: 3 ## ProxyCommand ➤ ssh (`proxyssh`) ``` ProxyCommand ssh -q ${1:n1.iany.me} nc -q0 %h %p ``` ## ProxyCommand ➤ nc (Linux) (`proxync`) ``` ProxyCommand nc -X connect -x ${1:10.31.0.6}:7890 %h %p ``` ## ProxyCommand ➤ ncat (Windows) (`proxync`) ``` ProxyCommand ncat --proxy ${1:10.31.0.6}:7890 %h %p ```