12345678910111213141516 |
- # This uses 'sft resolv' when ssh is called to determine if sft
- # is required to ssh to the destination system.
- #
- # This is used for XDR.
- #
- #SFT configuration. Add the !User centos to ssh using the msoc_build key
- Match exec "/usr/local/bin/sft resolve -q %h" !User centos
- ProxyCommand "/usr/local/bin/sft" proxycommand %h
- UserKnownHostsFile "/Users/bradpoulton/Library/Application Support/ScaleFT/proxycommand_known_hosts"
- # github is listening on port 22, so to ssh to the box, we need to override to use
- # port 122. Must be connected to the VPN.
- Host github
- Port 122
- User admin
- HostName 10.80.101.78
|