Skip to content
This repository has been archived by the owner on Nov 7, 2023. It is now read-only.

remove the -v parameter from the ssh command so it's not so noisy #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions static/src/docs/_posts/2017-08-25-using-a-bastion-host.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Suppose our bastion host is `bastion.krypt.co` and our destination server is `de

``` bash
Host dest.krypt.co
ProxyCommand krssh -p "ssh -v -W %h:%p bastion.krypt.co" -h %h
ProxyCommand krssh -p "ssh -W %h:%p bastion.krypt.co" -h %h

# Added by Krypton...
```
Expand All @@ -35,11 +35,11 @@ Usually more than one server is protected by a single bastion host. We can use `
``` bash
# Specify each proxied host individually
Host dest1.krypt.co dest2.krypt.co
ProxyCommand krssh -p "ssh -v -W %h:%p bastion.krypt.co" -h %h
ProxyCommand krssh -p "ssh -W %h:%p bastion.krypt.co" -h %h

# Proxy traffic for a group of servers
Host *.dev.krypt.co
ProxyCommand krssh -p "ssh -v -W %h:%p bastion.krypt.co" -h %h
ProxyCommand krssh -p "ssh -W %h:%p bastion.krypt.co" -h %h

# Added by Krypton...
```
Expand All @@ -52,10 +52,10 @@ For example, to proxy traffic through `hop1.krypt.co` to `hop2.krypt.co` and fin

```bash
Host hop2.krypt.co
ProxyCommand krssh -p "ssh -v -W %h:%p hop1.krypt.co" -h %h
ProxyCommand krssh -p "ssh -W %h:%p hop1.krypt.co" -h %h

Host dest.krypt.co
ProxyCommand krssh -p "ssh -v -W %h:%p hop2.krypt.co" -h %h
ProxyCommand krssh -p "ssh -W %h:%p hop2.krypt.co" -h %h

# Added by Krypton...
```