Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Beide Seiten der vorigen Revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
linux:ansible:playbook_example_10 [23.09.2022 13:37. ] – [Ausgangssituation] django | linux:ansible:playbook_example_10 [24.09.2022 13:50. ] (aktuell) – [Links] django | ||
---|---|---|---|
Zeile 166: | Zeile 166: | ||
===== Lösungsmöglichkeit ===== | ===== Lösungsmöglichkeit ===== | ||
+ | Grundsätzlich alle möglichen Konfigurationsoptionen zur SSH-Clientkonfiguration finden wir in der zugehörigen man-page. | ||
+ | $ man ssh_config | ||
- | ===== lorem ipsum dolor sit amet ===== | + | Sehen wir uns unsere bisher manuell gepflegte SSH-Clientkonfigurationsdatei mal etwas genauer an und blenden mal ggf. besondere Fälle mal aus, so stellen wir zwei Dinge fest. |
+ | |||
+ | ==== Host-Beispiele | ||
+ | === Direkt erreichbare Hosts === | ||
+ | Wenn wir uns einmal folgendes Beispiel betrachten, dann sehen wir folgende Dinge. | ||
+ | <code bash ~/ | ||
+ | |||
+ | Host pml010003 | ||
+ | Hostname 10.10.10.3 | ||
+ | User django | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | ... | ||
+ | </ | ||
+ | |||
+ | Wir haben demnach in Summe sechs gesetzte Parameter: | ||
+ | * **'' | ||
+ | * **'' | ||
+ | * **'' | ||
+ | * **'' | ||
+ | * **'' | ||
+ | * **'' | ||
+ | |||
+ | === Hosts erreichbar nur via Jump-Host === | ||
+ | Bei einem Host, den wir nicht direkt erreichen können, sondern lediglich über einen Jump-Host stellen wir fest dass wir hier einen Parameter mehr haben. | ||
+ | <code bash ~/ | ||
+ | |||
+ | Host fwi | ||
+ | Hostname 10.30.30.20 | ||
+ | User django | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | ProxyCommand | ||
+ | |||
+ | Host fw3 | ||
+ | Hostname 10.50.50.250 | ||
+ | User django | ||
+ | Port 10022 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | ProxyCommand | ||
+ | |||
+ | ... | ||
+ | </ | ||
+ | |||
+ | Bei diesem Beispiel haben wir zwei Jumphost. Der erste Host **'' | ||
+ | ProxyCommand | ||
+ | Der Wert **'' | ||
+ | |||
+ | Zusätzlich zu den Parametern eines Standardhosts haben wir hier eine weitere Option **'' | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ==== Ansible-Playbook zum Erstellen der SSH-Client-Konfigurationsdatei ==== | ||
+ | === Playbook: ssh_client_config.yml === | ||
+ | Unser Playbook legen wir nun wie gewohnt in unserem Playbook-Verzeichnis | ||
+ | $ vim ~/ | ||
+ | <file c++ ssh_client_config.yml> | ||
+ | # Ansible Playbook zum automatisierten Anlegen der | ||
+ | # SSH Client Konfigurationsdatei | ||
+ | # auf den Inhalten des Inventories. | ||
+ | # | ||
+ | # Aufruf aus dem entsprechenden Arbeits-Verzeichnis via: | ||
+ | # ansible-playbook playbooks/ | ||
+ | # | ||
+ | - name: ssh_client_config.yml | ||
+ | hosts: localhost | ||
+ | vars: # | ||
+ | ssh_user: "{{ lookup(' | ||
+ | # | ||
+ | # | ||
+ | roles: | ||
+ | - ssh_client | ||
+ | ... # YML Ende</ | ||
+ | |||
+ | Dieses Playbook unterscheidet sich nun erst einmal gewaltig von denen der bisher hier gezeigten. Warum? Das werden wir uns nun im nachfolgendem Abschnitt ansehen. | ||
+ | === Rolle: ssh_client === | ||
+ | Im Gegensatz zu den bisherigen Playbook-Beispielen werden wir nun dem nächstem **[[|Ansible Kapitel " | ||
+ | |||
+ | Die Grundvoraussetzungen in Form der betreffenden Verzeichnisstruktur haben wir ja bereits bei der **[[playbook_example_07# | ||
+ | $ tree ~/ | ||
+ | < | ||
+ | ├── defaults | ||
+ | ├── files | ||
+ | ├── handlers | ||
+ | ├── library | ||
+ | ├── lookup_plugins | ||
+ | ├── meta | ||
+ | ├── module_utils | ||
+ | ├── tasks | ||
+ | ├── templates | ||
+ | └── vars | ||
+ | </ | ||
+ | |||
+ | Dies nehmen wir nun als Kopiervorlage und erstellen eine neue Rolle **'' | ||
+ | $ cp -avr ~/ | ||
+ | |||
+ | In unserem **[[# | ||
+ | $ vim ~/ | ||
+ | <file c++ main.yml> | ||
+ | - include_tasks: | ||
+ | tags: clientconfiguration | ||
+ | ... # YML Ende</ | ||
+ | |||
+ | Wie wir sehen, wird hier erst einmal nur ein weiterer **task** inkludiert, dessen YML-Datei noch fehlt. Diese Datei legen wir nun gleich noch als nächstes an. | ||
+ | $ vim ~/ | ||
+ | <file c++ client_config.yml> | ||
+ | # SSH Client Configdatei erzeugen und kopieren. | ||
+ | - name: " | ||
+ | ansible.builtin.template: | ||
+ | src: templates/ | ||
+ | dest: /home/{{ ssh_user }}/ | ||
+ | owner: '{{ ssh_user }}' | ||
+ | group: '{{ ssh_user }}' | ||
+ | mode: ' | ||
+ | ... # YML Ende</ | ||
+ | |||
+ | Mit Hilfe dieses Tasks wird nun, mit Hilfe des Ansible Modules **[[https:// | ||
+ | |||
+ | <WRAP center round tip 80%> | ||
+ | Man könte jetzt natürlich sagen, warum definiert man denn diesen Task nicht gleich direkt in der **'' | ||
+ | </ | ||
+ | |||
+ | === Jinja2-Template: | ||
+ | In dem Task **'' | ||
+ | $ vim ~/ | ||
+ | <file c++ ssh_client_config.j2># | ||
+ | # Clientkonfigurationsbeispiel für unterschiedliche Zielsysteme | ||
+ | |||
+ | ## statische Konfiguration | ||
+ | # localhost | ||
+ | Host localhost | ||
+ | Hostname | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | # externer Einwahl-Hosts | ||
+ | Host example | ||
+ | Hostname 93.184.216.34 | ||
+ | Port 12345 | ||
+ | Protocol 2 | ||
+ | ForwardX11 yes | ||
+ | ForwardAgent yes | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | ## dynamisch aus dem Inventory generierte Konfiguration | ||
+ | # interne Systeme - DMZ | ||
+ | {% for host in groups[' | ||
+ | Host {{ host }} | ||
+ | Hostname {{ hostvars[host][' | ||
+ | User {{ hostvars[host][' | ||
+ | Port {{ hostvars[host][' | ||
+ | Protocol {{ hostvars[host][' | ||
+ | IdentityFile {{ hostvars[host][' | ||
+ | |||
+ | Host {{ hostvars[host][' | ||
+ | Hostname {{ hostvars[host][' | ||
+ | User {{ hostvars[host][' | ||
+ | Port {{ hostvars[host][' | ||
+ | Protocol {{ hostvars[host][' | ||
+ | IdentityFile {{ hostvars[host][' | ||
+ | |||
+ | {% endfor %} | ||
+ | # interne Systeme - Intranet | ||
+ | {% for host in groups[' | ||
+ | Host {{ host }} | ||
+ | Hostname {{ hostvars[host][' | ||
+ | User {{ hostvars[host][' | ||
+ | Port {{ hostvars[host][' | ||
+ | Protocol {{ hostvars[host][' | ||
+ | IdentityFile {{ hostvars[host][' | ||
+ | |||
+ | Host {{ hostvars[host][' | ||
+ | Hostname {{ hostvars[host][' | ||
+ | User {{ hostvars[host][' | ||
+ | Port {{ hostvars[host][' | ||
+ | Protocol {{ hostvars[host][' | ||
+ | IdentityFile {{ hostvars[host][' | ||
+ | |||
+ | {% endfor %} | ||
+ | # externe System | ||
+ | {% for host in groups[' | ||
+ | Host {{ host }} | ||
+ | Hostname [{{ hostvars[host][' | ||
+ | User {{ hostvars[host][' | ||
+ | Port {{ hostvars[host][' | ||
+ | Protocol {{ hostvars[host][' | ||
+ | IdentityFile {{ hostvars[host][' | ||
+ | ProxyCommand | ||
+ | |||
+ | Host {{ host }}-extern | ||
+ | Hostname {{ hostvars[host][' | ||
+ | User {{ hostvars[host][' | ||
+ | Port {{ hostvars[host][' | ||
+ | Protocol {{ hostvars[host][' | ||
+ | IdentityFile {{ hostvars[host][' | ||
+ | |||
+ | {% endfor %} | ||
+ | {% for host in groups[' | ||
+ | Host {{ host }} | ||
+ | Hostname {{ hostvars[host][' | ||
+ | User {{ hostvars[host][' | ||
+ | Port {{ hostvars[host][' | ||
+ | Protocol {{ hostvars[host][' | ||
+ | IdentityFile {{ hostvars[host][' | ||
+ | ProxyCommand | ||
+ | |||
+ | Host {{ host }}-intern | ||
+ | Hostname {{ hostvars[host][' | ||
+ | User {{ hostvars[host][' | ||
+ | Port {{ hostvars[host][' | ||
+ | Protocol {{ hostvars[host][' | ||
+ | IdentityFile {{ hostvars[host][' | ||
+ | |||
+ | {% endfor %} | ||
+ | </ | ||
+ | |||
+ | Das Beispiel passen wir natürlich unserer Umgebung entsprechend an. Einzelne Netzsegmente haben wir in unserem **[[playbook_example_09# | ||
+ | |||
+ | === Inventory === | ||
+ | Die **[[playbook_example_09# | ||
+ | |||
+ | Für unser Playbook-Beispiel hier greifen wir auf das exemplarische **[[playbook_example_09# | ||
+ | $ less ~/ | ||
+ | |||
+ | <file bash hosts># Generiert mit Hilfe von Ansible am 2022-09-20 - diese Datei nicht manuell bearbeiten! | ||
+ | # Inventory Datei für die System-Umgebung bei nausch.org | ||
+ | # | ||
+ | # Hinweise: | ||
+ | # | ||
+ | # leere Zeilen werden ignoriert | ||
+ | # Host- und Gruppendefinitionen werden mit [] abgegrenzt | ||
+ | # Hosts können über ihren Hostnamen, FQN oder ihrer IP-Adresse definiert | ||
+ | # | ||
+ | # | ||
+ | # Host-Definitionen | ||
+ | |||
+ | # Hosts ohne Gruppenzuordnung | ||
+ | localhost | ||
+ | |||
+ | [intranet] | ||
+ | pml010002 | ||
+ | pml010003 | ||
+ | pml010004 | ||
+ | ... | ||
+ | ... | ||
+ | pml010124 | ||
+ | pml010125 | ||
+ | pml010126 | ||
+ | |||
+ | [IDMZ] | ||
+ | vml030010 | ||
+ | vml030020 | ||
+ | vml030030 | ||
+ | vml030040 | ||
+ | ... | ||
+ | ... | ||
+ | vml030230 | ||
+ | vml030240 | ||
+ | vml030250 | ||
+ | |||
+ | [EDMZ] | ||
+ | vml050010 | ||
+ | vml050020 | ||
+ | vml050030 | ||
+ | vml050040 | ||
+ | vml050250 | ||
+ | |||
+ | [TKDMZ] | ||
+ | vml070010 | ||
+ | vml070020 | ||
+ | vml070030 | ||
+ | |||
+ | [external] | ||
+ | customer_no_001 | ||
+ | customer_no_002 | ||
+ | ... | ||
+ | ... | ||
+ | customer_no_042 | ||
+ | |||
+ | [gluon] | ||
+ | ff_pliening_gbw__ug_ | ||
+ | ff_pliening_gbw_egod | ||
+ | ff_pliening_gbw_ogod | ||
+ | ff_pliening_gbw_dgod | ||
+ | ff_pliening_gbw_cpod | ||
+ | ff_roding_fwg_nausch | ||
+ | |||
+ | [raspbian] | ||
+ | ff_pliening_rpb4_ol_v6 | ||
+ | |||
+ | # Host-Gruppen-Definitionen | ||
+ | # (zu welcher Gruppe gehören Untergruppen bzw. Hosts) | ||
+ | |||
+ | [freifunk: | ||
+ | gluon | ||
+ | raspbian | ||
+ | |||
+ | [linux: | ||
+ | intranet | ||
+ | IDMZ | ||
+ | EDMZ | ||
+ | TKDMZ | ||
+ | external | ||
+ | </ | ||
+ | |||
+ | Die betreffenden Hostspezifischen Variablen halten wir hier in entsprechenden Dateien bzw. Unterverzeichnissen vor. Das nachfolgende Beispiel hier zeigt die Host-spezifischen Variablen eines Hosts im Intranet. | ||
+ | $ less ~/ | ||
+ | |||
+ | <file c++ vml030010># | ||
+ | host_alias: fw1 | ||
+ | host_mac: " | ||
+ | host_ipv4: " | ||
+ | host_ipv6: ":: | ||
+ | ssh_port: 22 | ||
+ | ssh_protocol: | ||
+ | ssh_keyfile: | ||
+ | |||
+ | Als Beispiel für einen externen Host, der nur via Jump-Host erreichbar ist sehen wir uns die Inventory-Host-Definition des Hosts **'' | ||
+ | $ less ~/ | ||
+ | |||
+ | |||
+ | <file c++ ff_pliening_gbw__ug_># | ||
+ | host_alias: | ||
+ | host_ipv4: | ||
+ | host_ipv6: 2001: | ||
+ | ssh_user: root | ||
+ | ssh_port: 22 | ||
+ | ssh_protocol: | ||
+ | ssh_keyfile: | ||
+ | host_sshjump: | ||
+ | |||
+ | branch: " | ||
+ | domain: " | ||
+ | director: " | ||
+ | node_contact_address: | ||
+ | node_hostname: | ||
+ | node_latitude: | ||
+ | node_longitude: | ||
+ | node_model: " | ||
+ | node_share_location: | ||
+ | node_ghostmode: | ||
+ | node_release: | ||
+ | node_autoupdate: | ||
+ | </ | ||
+ | |||
+ | Hier sehen wir nun dass unter anderem ein anderer SSH-User, ein anderes SSH-Keyfile sowie ein Jump-Host benutzt wird. Ferner finden sich im Anschluß noch weitere Host-spezische Variablen, für die Konfiguration des betreffenden **[[https:// | ||
+ | |||
+ | === Playbook-Lauf === | ||
+ | Dank der **[[playbook_example_08# | ||
+ | $ ansible-playbook ~/ | ||
+ | |||
+ | < | ||
+ | <pre class=" | ||
+ | <font style=" | ||
+ | PLAY [ssh_client_config.yml] ****************************************************************************************************** | ||
+ | |||
+ | TASK [Gathering Facts] ************************************************************************************************************</ | ||
+ | <font style=" | ||
+ | <font style=" | ||
+ | TASK [ssh_client : include_tasks] *************************************************************************************************</ | ||
+ | <font style=" | ||
+ | <font style=" | ||
+ | TASK [ssh_client : Generieren und kopieren der SSH Client Konfiguration ~/ | ||
+ | <font style=" | ||
+ | <font style=" | ||
+ | PLAY RECAP *************************************************************************************************************************</ | ||
+ | <font style=" | ||
+ | </ | ||
+ | </ | ||
+ | === Ergebnis: ~/ | ||
+ | Als Ergebnis erhalten wir dann quasi auf Knopfdruck immer eine aktuelle SSH-Client-Konfigurationsdatei **'' | ||
+ | |||
+ | <file bash ~/ | ||
+ | # Clientkonfigurationsbeispiel für unterschiedliche Zielsysteme | ||
+ | |||
+ | ## statische Konfiguration | ||
+ | # localhost | ||
+ | Host localhost | ||
+ | Hostname | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | # externer Einwahl-Hosts | ||
+ | Host example | ||
+ | Hostname 93.184.216.34 | ||
+ | Port 12345 | ||
+ | Protocol 2 | ||
+ | ForwardX11 yes | ||
+ | ForwardAgent yes | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | ## dynamisch aus dem Inventory generierte Konfiguration | ||
+ | # interne Systeme - IDMZ | ||
+ | Host vml030010 | ||
+ | Hostname 10.30.30.10 | ||
+ | User django | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | Host fw1 | ||
+ | Hostname 10.30.30.10 | ||
+ | User django | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | Host vml030020 | ||
+ | Hostname 10.30.30.20 | ||
+ | User django | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | Host fw2 | ||
+ | Hostname 10.30.30.2 | ||
+ | User django | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | Host vml030030 | ||
+ | Hostname 10.30.30.30 | ||
+ | User django | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | Host | ||
+ | Hostname 10.30.30.30 | ||
+ | User django | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | ... | ||
+ | ... | ||
+ | |||
+ | Host vml030250 | ||
+ | Hostname 10.30.30.250 | ||
+ | User django | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | Host db_clusternode_3 | ||
+ | Hostname 10.30.30.250 | ||
+ | User django | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | # interne Systeme - Intranet | ||
+ | Host pml010002 | ||
+ | Hostname 10.10.10.2 | ||
+ | User django | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | Host kvm_1 | ||
+ | Hostname 10.10.10.2 | ||
+ | User django | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | ... | ||
+ | ... | ||
+ | |||
+ | Host pml010126 | ||
+ | Hostname 10.10.10.126 | ||
+ | User django | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | Host feinstaubsensor | ||
+ | Hostname 10.10.10.126 | ||
+ | User django | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | # externe System | ||
+ | Host ff_pliening_gbw__ug_ | ||
+ | Hostname [2001: | ||
+ | User root | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | ProxyCommand | ||
+ | |||
+ | Host ff_pliening_gbw__ug_-extern | ||
+ | Hostname 2001: | ||
+ | User root | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | ... | ||
+ | ... | ||
+ | |||
+ | Host ff_roding_fwg_nausch | ||
+ | Hostname [2001: | ||
+ | User root | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | ProxyCommand | ||
+ | |||
+ | Host ff_roding_fwg_nausch-extern | ||
+ | Hostname 2001: | ||
+ | User root | ||
+ | Port 22 | ||
+ | Protocol 2 | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | </ | ||
+ | |||
+ | ===== Fazit und Ausblick ===== | ||
+ | <WRAP center round info 80%> | ||
+ | |||
+ | Die manuelle, zeitraubende und ggf. Fehlerbehaftete Pflege der SSH-Client-Konfigurations-Datei durch mehrere Admins auf verschiedenen Ansible-Kontroll-Knoten ist somit Geschichte. Ferner sind wir unabhängig und können so viele SSH-Jump-Hosts verwenden, die eben zum Erreichen der Zielhost von Nöten sind. | ||
+ | |||
+ | Die initiale Fragestellung //Wie wird sicher gestellt, dass alle Ziele auch erreichbar sind?//, die wir bei unseren **[[detail# | ||
+ | </ | ||
+ | |||
+ | ====== Links ====== | ||
+ | * **[[detail|zurück zum Kapitel " | ||
+ | * **=> [[playbook_example_11|weiter zum Kapitel " | ||
+ | * **[[start|Zurück zur " | ||
+ | * **[[wiki: | ||
+ | * **[[http:// | ||
- | :KRIT: FIXME :KRIT: | ||