कनेक्ट करने के लिए उपनाम बनाएं


14

मैं विशिष्ट सर्वर से जुड़ने में तेजी लाना चाहता हूं।

मेरे पास सर्वर हैं जो कहते हैं:

123.123.123.1
123.123.123.2
123.123.123.3

मैं आम तौर पर निम्नलिखित के साथ जोड़ता हूं:

ssh -p 12345 my_user@123.123.123.1

यह एक दर्द है क्योंकि सर्वर के बीच एकमात्र अंतर आईपी की अंतिम संख्या है।

मैंने निम्नलिखित कोड आज़माया:

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 पते और होस्टनाम भी जोड़ सकते हैं, 123.123.123.1 host1फिर फॉर्म में उपयोग कर सकते हैंssh myuser@host1 -p12345
Arronical

4
उन्हें
केविन

यदि आप सर्वर का एक गुच्छा प्रबंधित कर रहे हैं, तो संभवतः आपको व्यक्तिगत रूप से प्रबंधित करने के बजाय Ansible जैसी किसी चीज़ का उपयोग करना चाहिए।
मोनिका सेलियो

जवाबों:


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यह किसी भी इंटरैक्टिव सत्र में उपलब्ध होने के लिए अपने में रखो ।


बहुत अच्छा! हालाँकि इसे पूरा करने के लिए, उपयोगकर्ता के exitसाथ बदलें returnऔर शामिल करें my_user। :)
कार्ल मॉरिसन 14

@ कर्लमोरिसन स्वीकृत।
हेमायल

2
"यह एक फ़ंक्शन के लिए कॉल करता है" मैं एक ही नियम-का-अंगूठे का उपयोग करता हूं, यदि पैरामीटर शामिल हैं, तो एक उपनाम के बजाय एक फ़ंक्शन का उपयोग करें।
लासे मेयर

मुझे यह उत्तर पसंद है, मुझे लगता है कि यह कुछ अतिरिक्त इनपुट हैंडलिंगoctet=$1; [[ $octet =~ ^[0-9]+$ ]] && [[ $octet -lt 255 ]] && [[ $octet -gt 0 ]] && ssh -p <portNumber> user@hostname
sdkks

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
मुझे लगता है कि ओपी एक तर्क (अंतिम अष्टक) लेने वाली किसी चीज़ के साथ स्वचालित रूप से जुड़ने की कोशिश कर रहा है, न कि सांख्यिकीय रूप से कुछ भी डालने के लिए (यह तब सबसे अच्छा तरीका होगा)।
heemayl

यह अनुमान लगाने में मुश्किल है कि यह गतिशील या स्थिर उपनाम के लिए अनुरोध है या नहीं। लेकिन यह लेखन को सरल बनाने का मानक तरीका है और भले ही यह गतिशील के लिए हो, वह पोर्ट और उपयोगकर्ता को लिखने से छुटकारा पा सकता है। अन्य जवाब पहले से ही होम-ब्रूफ़ संभावनाओं पर चर्चा करते हैं कि इसे बैश कार्यों के साथ कैसे किया जाए।
जकूजी

1
@ जाकुजे हेमायला सही है। मुझे एक तर्क पारित करने में सक्षम होने की आवश्यकता है। अन्यथा इस पद्धति को उत्तर के रूप में चुना जाएगा :)
कार्ल मॉरिसन

2
आप अभी भी एक ssh config लाइन प्रदान कर सकते हैं Host 123.123.123.*जो पोर्ट और यूजरनेम को निर्दिष्ट करती है!
रेकिंग

@Riking टिप्पणी के लिए धन्यवाद। हाँ। इसके अतिरिक्त, आईपी स्वतः पूर्ण हो जाएगा, इसलिए आप ज्यादातर अंतिम संख्या लिखना समाप्त कर देंगे।
जकूज़ी

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

सबसे अच्छा जवाब तुम्हारा है, न कि मेरी उच्च दर की प्रति;)
रेवेक्सिना

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 में डालना चाहिए?
कार्ल मॉरिसन

हाँ, आपको इसे कहीं और लगाना होगा .bashrcया .bash_funcफिर अपनी .bashrcफ़ाइल में स्रोत करना होगा ।
रवेक्सिना

3

आपको ssht जैसे नाम का उपयोग करने की भी आवश्यकता नहीं है। अंकों से शुरू होने वाले नाम, यहां तक ​​कि केवल अंक ssh config फाइल में मान्य होस्टनाम हैं।

नीचे 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))
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.