dotfiles/.ssh/config

26 lines
659 B
Text
Raw Normal View History

2021-07-12 09:02:46 +02:00
ServerAliveInterval 15
ServerAliveCountMax 3
2021-01-03 12:44:05 +01:00
ControlMaster auto
2023-06-06 12:49:24 +02:00
ControlPath ${XDG_RUNTIME_DIR}/ssh_control:%h:%p:%r
2021-04-04 09:50:44 +02:00
ControlPersist 1200
2021-01-03 12:44:05 +01:00
Ciphers aes128-gcm@openssh.com,aes256-gcm@openssh.com,chacha20-poly1305@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
AddressFamily inet
2021-01-12 19:39:52 +01:00
RequestTty yes
2021-04-04 09:50:44 +02:00
PreferredAuthentications=publickey
2020-11-19 14:58:18 +01:00
2023-03-17 11:27:56 +01:00
Include ~/.ssh/private_config
2023-06-06 12:49:24 +02:00
Host 10.1.100.16
Host dln-dev
Hostname 10.1.100.16
ForwardAgent yes
ExitOnForwardFailure yes
Compression yes
LocalForward 127.0.0.1:3000 127.0.0.1:3000
LocalForward 127.0.0.1:8000 127.0.0.1:8000
LocalForward 127.0.0.1:8080 127.0.0.1:8080
2023-08-25 10:12:37 +02:00
LocalForward 127.0.0.1:9090 127.0.0.1:9090
2023-06-06 12:49:24 +02:00
Host *
ForwardAgent no