SSH पोर्ट परिवर्तन को Ansible के साथ कैसे प्रबंधित करें?


27

मैं नए सर्वर इंस्टेंस की सेटअप प्रक्रिया को स्वचालित करने के लिए Ansible का उपयोग करने की कोशिश कर रहा हूं। सेटअप कार्यों में से एक डिफ़ॉल्ट SSH पोर्ट को बदलता है, इसलिए मुझे मेजबानों की सूची को अपडेट करने की आवश्यकता है।

क्या कनेक्शन को डिफ़ॉल्ट SSH पोर्ट में स्थापित नहीं किया जा सकता है, तो किसी निर्दिष्ट पोर्ट पर Ansible फॉलबैक होने से इसे स्वचालित करना संभव है?

जवाबों:


15

आप मेजबानों पर एक स्थानीय_करण की कोशिश कर सकते हैं यह देखने के लिए कि क्या आप संबंधित बंदरगाहों से जुड़ सकते हैं और एक को पंजीकृत कर सकते हैं जो सफल होता है और इसे एक तथ्य के रूप में सेट करता है। आप एकत्रित तथ्यों को बंद करना चाहते हैं क्योंकि अन्यथा सेटअप मॉड्यूल विफल हो जाएगा जब यह उन मेजबानों के साथ जुड़ने की कोशिश करता है जो पहले से ही पुनर्गठित हो चुके हैं। एक बार जब आप इस नाटक को कर लेते हैं, तो बस नीचे इकट्ठा दूसरों के साथ जोड़िए_फैक्ट और बाकी सभी।

- name: determine ssh port
  hosts: all
  gather_facts: false
  vars:
    custom_ssh_port: 222
  tasks:
    - name: test default ssh port
      local_action: wait_for port=22 timeout=5 host={{inventory_hostname}}
      register: default_ssh
      ignore_errors: true
    - name: set ansible_ssh_port to default
      set_fact: ansible_ssh_port=22
      when: default_ssh.elapsed < 5
    - name: test ssh on high port
      local_action: wait_for port={{custom_ssh_port}} timeout=5 host={{inventory_hostname}}
      register: high_ssh
      when: default_ssh.elapsed >= 5
      ignore_errors: true
    - name: set ansible_ssh_port high
      set_fact: ansible_ssh_port={{custom_ssh_port}}
      when: default_ssh.elapsed >= 5 and high_ssh.elapsed < 5

यह मेरे लिए इंगित किया गया था कि यह आपके द्वारा उपयोग की जाने वाली प्लेबुक के लिए समय निकाल देगा। आप नाटकों के vars खंड में ansible_ssh_port भी सेट कर सकते हैं जिसे केवल होस्ट पर पुन: कॉन्फ़िगर किए गए ssh पोर्ट के साथ चलाया जाना चाहिए। जैसे

- name: change ssh ports
  tasks:
    - name: edit sshd_config
      lineinfile ..
      notify: restart ssh
   handlers:
     - name: restart ssh
       service: sshd state=restarted
- name: continue setup
  vars:
    - ansible_ssh_port : 5422
  tasks:
    ...

तथ्यों को सेट करने के साथ संयोजन में पोर्ट परीक्षण की आपकी रणनीति इन मामलों के लिए एक आदर्श दृष्टिकोण की तरह लगती है। धन्यवाद!!!
जे टेलर

10

@RichardSalts मुझे इसके साथ शुरू करने के लिए धन्यवाद। मैंने बंदरगाहों की जांच करने के लिए nc का उपयोग किया जो कि बहुत तेज होना चाहिए। यह मेरा bootstrap.xml है:

अंतिम अद्यतन 2014/01/28 20:26:03 अंतिम 1.5 (3b8fd62ff9) का उपयोग करके परीक्षण किया गया

---
# Be sure to set the following variables for all hosts:
# vars:
#   oldsshport: 22
#   sshport: 555
# Might fail without setting remote_tmp = /tmp/ansible/$USER in your ansible.cfg. Also fix for directly below.
# Once host is setup most of the checks are skipped and works very quickly.
# Also, be sure to set non-standard shells in a different playbook later. Stick with /bin/bash until you can run apt install.
# Assumes root user has sshkey setup already. Not sure how to utilize the --ask-pass option. For now, use ssh-copy-id prior to running playbook on new host for root user (if needed).

# Test new ssh port
- name: ssh test nc {{ sshport }}
  local_action: shell nc -z -w5 {{ inventory_hostname }} {{ sshport }}
  register: nc_ssh_port
  failed_when: nc_ssh_port.stdout.find('failed') != -1
  changed_when: nc_ssh_port.stdout == ""
  ignore_errors: yes

# Set port to new port if connection success
- name: set ansible_ssh_port
  set_fact: ansible_ssh_port={{ sshport }}
  when: nc_ssh_port|success

# Fail back to old port if new ssh port fails
- name: ssh test nc port {{ oldsshport }}
  local_action: shell nc -z -w5 {{ inventory_hostname }} {{ oldsshport }}
  register: nc_ssh_default
  changed_when: nc_ssh_default.stdout == ""
  ignore_errors: yes
  when: nc_ssh_port|changed

# Set ansible to old port since new failed
- name: set ansible_ssh_port to {{ oldsshport }}
  set_fact: ansible_ssh_port={{ oldsshport }}
  when: nc_ssh_default|success and nc_ssh_port|changed

# Check if root user can ssh
- name: find user
  local_action: shell ssh -o StrictHostKeyChecking=no -o BatchMode=yes -o ConnectTimeout=5 -p {{ ansible_ssh_port }} root@{{ inventory_hostname }} exit
  register: ssh_as_root
  failed_when: ssh_as_root.stdout.find('failed') != -1
  changed_when: ssh_as_root.stderr.find('Permission denied') == -1

# If root user success, set this up to change later
- name: first user
  set_fact: first_user={{ ansible_ssh_user }}
  when: ssh_as_root|changed

# Set ssh user to root
- name: root user
  set_fact: ansible_ssh_user=root
  when: ssh_as_root|changed

# ANSIBLE FIX: /tmp/ansible isn't world-writable for setting remote_tmp = /tmp/ansible/$USER in ansible.cfg
- name: /tmp/ansible/ directory exists with 0777 permission
  file: path=/tmp/ansible/ owner=root group=root mode=0777 recurse=no state=directory
  changed_when: False
  sudo: yes

# Setup user accounts
- include: users.yml

# Set ssh user back to default user (that was setup in users.yml)
- name: ansible_ssh_user back to default
  set_fact: ansible_ssh_user={{ first_user }}
  when: ssh_as_root|changed

# Reconfigure ssh with new port (also disables non-ssh key logins and disable root logins)
- name: sshd.conf
  template: src=sshd_config.j2 dest=/etc/ssh/sshd_config owner=root group=root mode=0644
  register: sshd_config
  sudo: yes

# Force changes immediately to ssh
- name: restart ssh
  service: name=ssh state=restarted
  when: sshd_config|changed
  sudo: yes

# Use updated ssh port
- name: set ansible_ssh_port
  set_fact: ansible_ssh_port={{ sshport }}
  when: nc_ssh_port|changed

5

चूँकि आप संभवतः अपने ssh config को जल्दी से तैनात करते हैं, इसलिए आपको वास्तव में इसे सरल रखना चाहिए। पहली बार अपने ssh कॉन्फिगरेशन को तैनात करते समय अपनी इन्वेंट्री को लक्ष्य के साथ कॉन्फ़िगर करें ansible_ssh_portऔर उपयोग -eकरें:

ansible-playbook bootstrap_ssh.yml -e 'ansible_ssh_port=22'

ध्यान दें कि ansible_ssh_port2.0 में पदावनत किया गया है (द्वारा अधिक्रमित ansible_port)


3

क्या कनेक्शन को डिफ़ॉल्ट SSH पोर्ट में स्थापित नहीं किया जा सकता है, तो किसी निर्दिष्ट पोर्ट पर Ansible फॉलबैक होने से इसे स्वचालित करना संभव है?

मुझे भी इसी तरह की कार्यक्षमता की आवश्यकता थी, इसलिए मैंने उम्मीद की थी कि अन्सिबल एसएच प्लगइन को पैच किया और उम्मीद की कि एन्सिबल इंक इसे अपनाएगी; उन्होंने नहीं किया। यह देखने के लिए कि वे खुले हुए हैं या नहीं तो डिफ़ॉल्ट ssh पोर्ट पर लौट जाते हैं या नहीं, यह देखने के लिए गैर-एसटीडी ssh पोर्ट विनिर्देशों का परीक्षण करता है। यह एक बहुत छोटा सा पैच है, जो https://github.com/crlb/ansible पर उपलब्ध है ।


1

यदि आपके पास बंदरगाहों की सूची है और आप उन सभी को जांचना चाहते हैं और काम कर रहे एक का उपयोग करना चाहते हैं, तो आप इसे अपनी प्लेबुक में उपयोग कर सकते हैं:

- name: just test
  hosts: server
  gather_facts: false
  vars:
    list_of_ssh_ports: [22, 222, 234]
  tasks:
    - name: test ssh on port
      sudo: no
      local_action: wait_for port={{item}} timeout=5 host={{inventory_hostname}}
      register: ssh_checks
      with_items: "{{list_of_ssh_ports}}"
      ignore_errors: true
    - debug: msg = "{{item}}"
      with_items: "{{ssh_checks.results}}"
    - name: set available ansible_ssh_port 
      sudo: no
      set_fact: ansible_ssh_port={{item.item}}
      when: ssh_checks is defined and {{item.elapsed}} < 5
      with_items: "{{ssh_checks.results}}"

0

मैं SSH पोर्ट को बदलने और अपनी इन्वेंट्री फ़ाइल को बदलने के बिना सही पोर्ट से कनेक्ट करने के लिए एक भूमिका निभाने के लिए एक मजबूत बेरोजगार कार्य सूची के साथ आया था। मैंने अपने ब्लॉग पर विवरण पोस्ट किया है: https://dmsimard.com/2016/03/15/changing-the-ssh-port-with-ansible/


3
हम वास्तव में सामग्री को इंगित न करने के लिए सामग्री को इंगित करने के लिए उत्तर पसंद करते हैं जो आसानी से खो सकते हैं।
user9517

इसके अलावा आपकी स्क्रिप्ट विफल हो रही है, default_ssh.state एक अपवाद को बढ़ाता है'dict object' has no attribute 'state'
सैंड्रे89
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.