SSH 연결을위한 별명 작성


14

특정 서버에 빠르게 연결하고 싶습니다.

서버에 다음과 같이 말하십시오.

123.123.123.1
123.123.123.2
123.123.123.3

나는 일반적으로 다음과 연결합니다 :

ssh -p 12345 my_user@123.123.123.1

서버 간의 유일한 차이점은 IP의 마지막 숫자이기 때문에 이것은 고통입니다.

다음 코드를 시도했습니다.

alias ssht='{ ip=$(cat -); ssh -p 12345 my_user@"123.123.123.$ip"; }<<<'

그러나 오류가 발생합니다.

karl@karls-laptop ~/scripts $ ssht 1
Pseudo-terminal will not be allocated because stdin is not a terminal.

이 작업을 수행하는 방법이 있습니까?



IP 주소와 호스트 이름을 / etc / hosts 파일에 추가 한 다음 형식 123.123.123.1 host1으로 사용할 수 있습니다.ssh myuser@host1 -p12345
Arronical

4
~ / .ssh / config에 추가
Kevin

많은 서버를 관리하는 경우 개별적으로 관리하는 대신 Ansible과 같은 것을 사용해야합니다.
Monica Cellio에 대한 보이콧 SE

답변:


21

이것은 단순하고 강력한 기능을 요구하지만 alias이 경우에는 취약합니다.

이 같은 일을해야합니다 :

function ssht () {
    [[ $1 =~ ^(1|2|3)$ ]] || { echo 'Not a valid last octet value !!' && return ;}
    ip=123.123.123.$1
    ssh my_user@"$ip" -p 12345
}

조건 [[ $1 =~ ^(1|2|3)$ ]]은 첫 번째 인수로 1, 2, 3 중 하나를 입력했는지 확인합니다 (후행 인수는 무시 됨).

이제 원하는 마지막 옥텟을 첫 번째 인수로 지정할 수 있습니다.

ssht 1
ssht 2
ssht 3

~/.bashrc모든 대화식 세션에서 사용할 수 있도록 이것을 넣으십시오 .


아주 좋아요! 그러나, 그것은 완전하게 대체하기 exitreturn하고 사용자를 포함한다 my_user. :)
Karl Morrison

@KarlMorrison 승인 됨.
heemayl

2
"이것은 함수를 호출합니다"매개 변수가 관련되어있는 경우 별명 대신 함수를 사용합니다.
Lasse Meyer

이 답변이 마음에 octet=$1; [[ $octet =~ ^[0-9]+$ ]] && [[ $octet -lt 255 ]] && [[ $octet -gt 0 ]] && ssh -p <portNumber> user@hostname
듭니다.

1
이것은 효과가 있지만 과잉이며 필요하지 않습니다. 내장 ~/.ssh/config파일을 사용 하십시오
ivanivan

55

의도 한 방법을 사용하여 옵션 및 별명을 ~/.ssh/config다음에 작성하십시오 .

Host 1
  Port 12345
  User my_user
  HostName 123.123.123.1

Host 2
  Port 12345
  User my_user
  HostName 123.123.123.2

등등...

그런 다음 사용하여 연결하십시오.

ssh 1
ssh 2
...

1
OP는 정적 인 것을 넣지 않고 하나의 인수 (마지막 옥텟)를 취하는 무언가와 자동으로 연결하려고한다고 생각합니다 (이것이 최선의 방법 일 것입니다).
heemayl

동적 또는 정적 별칭에 대한 요청인지 추측하기 어렵습니다. 그러나 이것은 쓰기를 단순화하는 표준 방법이며, 동적 일 경우에도 포트 및 사용자 쓰기를 제거 할 수 있습니다. 다른 답변은 이미 bash 기능으로 수행하는 방법에 대한자가 양조 가능성에 대해 설명합니다.
Jakuje

1
@Jakuje heemayl이 맞습니다. 인수를 전달할 수 있어야합니다. 그렇지 않으면이 방법이 답으로 선택되었을 것입니다.
Karl Morrison

2
Host 123.123.123.*포트 및 사용자 이름을 지정 하는 ssh 구성 줄을 계속 제공 할 수 있습니다 !
Riking

@Riking 의견을 주셔서 감사합니다. 예. 또한 IP가 자동 완성되므로 대부분 마지막 숫자 만 작성하게됩니다.
Jakuje

16

의 패턴을 사용할 수 있습니다 ~/.ssh/config. 보낸 사람 man ssh_config:

PATTERNS
     A pattern consists of zero or more non-whitespace characters, ‘*’ (a
     wildcard that matches zero or more characters), or ‘?’ (a wildcard that
     matches exactly one character).  For example, to specify a set of
     declarations for any host in the “.co.uk” set of domains, the following
     pattern could be used:

           Host *.co.uk

     The following pattern would match any host in the 192.168.0.[0-9] network
     range:

           Host 192.168.0.?

와 결합 :

HostName
    Specifies the real host name to log into.  This can be used to
    specify nicknames or abbreviations for hosts.  If the hostname
    contains the character sequence ‘%h’, then this will be replaced
    with the host name specified on the command line (this is useful
    for manipulating unqualified names).  The character sequence ‘%%’
    will be replaced by a single ‘%’ character, which may be used
    when specifying IPv6 link-local addresses.

따라서에 ~/.ssh/config넣으십시오.

Host ?
    Hostname 123.123.123.%h
    Port 12345
    User my_user

그때:

$ ssh -v 1
OpenSSH_7.4p1, LibreSSL 2.5.0
debug1: Reading configuration data /home/muru/.ssh/config
debug1: /home/muru/.ssh/config line 41: Applying options for ?
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Connecting to 123.123.123.1 [123.123.123.1] port 12345.
debug1: connect to address 123.123.123.1 port 12345: Connection refused
ssh: connect to host 123.123.123.1 port 12345: Connection refused

가장 좋은 대답은, 당신 높은 속도를 내 복사하지 않는 것이)
Ravexina

7

대신 함수를 사용하십시오.

function ssht(){
 ssh -p 12345 my_user@123.123.123.$1
}
$ ssht 1
$ ssht 2
$ ...

더 나은 해결책은 ssh config파일 을 사용하는 것입니다 .

touch ~/.ssh/config

다음과 비슷한 줄이 있습니다.

Host some-name
    HostName 123.123.123.1
    User your_user
    Port 22

ssh 키를 사용하여 속도를 향상시킬 수도 있습니다.

ssh some-name

그리고 당신은 그 서버에 연결되어 있습니다.


함수와 함께 별칭을 어떻게 사용합니까? 이것을 .bashrc에 넣어야합니까?
Karl Morrison

그래, 당신은 같은 곳에 넣어해야 .bashrc하거나 .bash_func다음에 소스 .bashrc파일입니다.
Ravexina

3

ssht와 같은 이름을 사용할 필요조차 없습니다. 숫자로 시작하는 이름은 숫자만으로도 ssh 구성 파일에서 유효한 호스트 이름입니다.

Xubuntu Xenial에 대한 아래 작품

내 ~ / .ssh / config의 일부

Host 1
        Hostname bastion.example.me
        User said
        Port 22
        IdentityFile ~/.ssh/id_rsa
        ForwardAgent yes

내가 실행하는 명령 ( 기본적으로 화면에 -vv대한 자세한 로깅을 위해 추가 했습니다 STDOUT)

ssh -vv 1

산출

OpenSSH_7.2p2 Ubuntu-4ubuntu2.2, OpenSSL 1.0.2g  1 Mar 2016
debug1: Reading configuration data /home/said/.ssh/config
debug1: /home/said/.ssh/config line 24: Applying options for 1
debug1: /home/said/.ssh/config line 540: Applying options for *
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: resolving "bastion.example.me" port 22
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to bastion.example.me [XXX.YYY.120.51] port 22.
debug1: Connection established.
debug1: identity file /home/said/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /home/said/.ssh/id_rsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.2
debug1: Remote protocol version 2.0, remote software version OpenSSH_7.2p2 Ubuntu-4ubuntu2.2
debug1: match: OpenSSH_7.2p2 Ubuntu-4ubuntu2.2 pat OpenSSH* compat 0x04000000
debug2: fd 3 setting O_NONBLOCK
debug1: Authenticating to bastion.example.me:22 as 'said'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug2: local client KEXINIT proposal
debug2: KEX algorithms: curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,ext-info-c
debug2: host key algorithms: ecdsa-sha2-nistp256-cert-v01@openssh.com,ecdsa-sha2-nistp384-cert-v01@openssh.com,ecdsa-sha2-nistp521-cert-v01@openssh.com,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,ssh-ed25519-cert-v01@openssh.com,ssh-rsa-cert-v01@openssh.com,ssh-ed25519,rsa-sha2-512,rsa-sha2-256,ssh-rsa
debug2: ciphers ctos: chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com,aes128-cbc,aes192-cbc,aes256-cbc,3des-cbc
debug2: ciphers stoc: chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com,aes128-cbc,aes192-cbc,aes256-cbc,3des-cbc
debug2: MACs ctos: umac-64-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,hmac-sha1-etm@openssh.com,umac-64@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512,hmac-sha1
debug2: MACs stoc: umac-64-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,hmac-sha1-etm@openssh.com,umac-64@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512,hmac-sha1
debug2: compression ctos: none,zlib@openssh.com,zlib
debug2: compression stoc: none,zlib@openssh.com,zlib
debug2: languages ctos: 
debug2: languages stoc: 
debug2: first_kex_follows 0 
debug2: reserved 0 
debug2: peer server KEXINIT proposal
debug2: KEX algorithms: curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1
debug2: host key algorithms: ssh-rsa,rsa-sha2-512,rsa-sha2-256,ecdsa-sha2-nistp256,ssh-ed25519
debug2: ciphers ctos: chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
debug2: ciphers stoc: chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
debug2: MACs ctos: umac-64-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,hmac-sha1-etm@openssh.com,umac-64@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512,hmac-sha1
debug2: MACs stoc: umac-64-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,hmac-sha1-etm@openssh.com,umac-64@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512,hmac-sha1
debug2: compression ctos: none,zlib@openssh.com
debug2: compression stoc: none,zlib@openssh.com
debug2: languages ctos: 
debug2: languages stoc: 
debug2: first_kex_follows 0 
debug2: reserved 0 
debug1: kex: algorithm: curve25519-sha256@libssh.org
debug1: kex: host key algorithm: ecdsa-sha2-nistp256
debug1: kex: server->client cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
debug1: kex: client->server cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ecdsa-sha2-nistp256 SHA256:44tChrTUMwuRcOi6laiYlf6VM3qAD+PEn9EdNMribFw
debug1: Host 'bastion.example.me' is known and matches the ECDSA host key.
debug1: Found key in /home/said/.ssh/known_hosts:69
debug2: set_newkeys: mode 1
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug2: set_newkeys: mode 0
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS received
debug2: key: /home/said/.ssh/id_rsa (0x562c764294f0), explicit, agent
debug1: SSH2_MSG_EXT_INFO received
debug1: kex_input_ext_info: server-sig-algs=<rsa-sha2-256,rsa-sha2-512>
debug2: service_accept: ssh-userauth
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/said/.ssh/id_rsa
debug2: we sent a publickey packet, wait for reply
debug1: Server accepts key: pkalg rsa-sha2-512 blen 279
debug2: input_userauth_pk_ok: fp SHA256:KQNLYiJICyNbKmIxVVgc67RF+qRKjNi3w+0iXz/YDyk
debug1: Authentication succeeded (publickey).
Authenticated to bastion.example.me ([XXX.YYY.120.51]:22).
debug1: channel 0: new [client-session]
debug2: channel 0: send open
debug1: Requesting no-more-sessions@openssh.com
debug1: Entering interactive session.
debug1: pledge: network
debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0
debug2: callback start
debug1: Requesting authentication agent forwarding.
debug2: channel 0: request auth-agent-req@openssh.com confirm 0
debug2: fd 3 setting TCP_NODELAY
debug2: client_session2_setup: id 0
debug2: channel 0: request pty-req confirm 1
debug2: channel 0: request shell confirm 1
debug2: callback done
debug2: channel 0: open confirm rwindow 0 rmax 32768
debug2: channel_input_status_confirm: type 99 id 0
debug2: PTY allocation request accepted on channel 0
debug2: channel 0: rcvd adjust 2097152
debug2: channel_input_status_confirm: type 99 id 0
debug2: shell request accepted on channel 0
Welcome to Ubuntu 16.04.2 LTS (GNU/Linux 4.8.0-42-lowlatency x86_64)
<TRUNCATED CUSTOM MOTD>
$

업데이트-아래는 해킹 대안 솔루션입니다. 바쁜 운동을 위해, 아마도 빠르고 더러운 물건을 위해 가져 가십시오.

alias ssht='f(){ ssh -p 22 said@192.168.0.$@;unset -f f;}&&f'

그것이하는 일

  • 임시 기능 만들기
  • 모든 인수를 전달하십시오
  • SSH 연결을 수행하십시오
  • 세션이 끝나면 기능을 설정 해제하여 주변에 머 무르지 않도록하십시오.
  • 그것은 의미, 추가 인수를 취할 수 있습니다 할 수 있습니다 체인 추가 SSH 옵션 터널링 등 ( -L, -R, -D), 모드 (세부 -vv),없는 TTY ( -T등)

예를 들어 터미널없이 양말 프록시를 시작하고 싶습니다.

$ ssht 2 -vv -D 1080 -T
OpenSSH_7.2p2 Ubuntu-4ubuntu2.2, OpenSSL 1.0.2g  1 Mar 2016
debug1: Reading configuration data /home/said/.ssh/config
debug1: /home/said/.ssh/config line 540: Applying options for *
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: resolving "192.168.0.2" port 22
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to 192.168.0.2 [192.168.0.2] port 22.
debug1: Connection established.
<TRUNCATED>
Welcome to Linux Mint 18.1 Serena (GNU/Linux 4.4.0-81-generic x86_64)

 * Documentation:  https://www.linuxmint.com

98 packages can be updated.
0 updates are security updates.

당신이 볼 수 있듯이, 어떤 명령 프롬프트, 그것은으로 실행되지 -vv, -T, -D 1080인수.

내 컴퓨터에서도 터널 (기본적으로 SOCKS5 프록시)을 확인할 수 있습니다.

$ ss -ltnp | grep 1080
LISTEN     0      128    127.0.0.1:1080                     *:*                   users:(("ssh",pid=17038,fd=6))
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.