Code Monkey home page Code Monkey logo

otus-task24's Introduction

Домашнее задание: Строим бонды и вланы

Решение:

Задание выполнено на машинах vagrant с помощью Ansible. В связи с тем, что требуется создать несколько виртулальных машин, а для них потребно памяти на хосте 10Гб, пришлось:

  • Копировать файлы задания в NFS-шару;
  • Поднимать машины vagrant на домашнем сервер, где есть нужные ресурсы и эта самая шара;
  • Запускать там vagrant
  • Забирать обратно файлы задания и логи.

Скрипт deploy.sh:

  • создаёт виртуальные машины с помощью Vagrantfile;
  • заускает единственную роль deploy_network, которая настраивает сеть на ВМ, тестирует результат и сохраняет логи;
  • получает логи;
  • Сохраняет лог своей работы.

Файлы с логами, полученными после отработки ролей находится в директории со скриптом deploy.sh Сам скрипт и ансибл-роль снабжены комментариями.

Вывод лога работы скрипта
 Создаём виртуальные машины vagrant
Bringing machine 'inetRouter' up with 'virtualbox' provider...
Bringing machine 'centralRouter' up with 'virtualbox' provider...
Bringing machine 'office1Router' up with 'virtualbox' provider...
Bringing machine 'testClient1' up with 'virtualbox' provider...
Bringing machine 'testServer1' up with 'virtualbox' provider...
Bringing machine 'testClient2' up with 'virtualbox' provider...
Bringing machine 'testServer2' up with 'virtualbox' provider...
==> inetRouter: Importing base box 'centos/8'...

�[KProgress: 20%
�[KProgress: 40%
�[KProgress: 50%
�[KProgress: 70%
�[KProgress: 90%
�[K==> inetRouter: Matching MAC address for NAT networking...
==> inetRouter: Checking if box 'centos/8' version '1.0.0' is up to date...
==> inetRouter: Setting the name of the VM: vagrant_inetRouter_1706558589685_14197
==> inetRouter: Clearing any previously set network interfaces...
==> inetRouter: Preparing network interfaces based on configuration...
    inetRouter: Adapter 1: nat
    inetRouter: Adapter 2: intnet
    inetRouter: Adapter 3: intnet
    inetRouter: Adapter 8: hostonly
==> inetRouter: Forwarding ports...
    inetRouter: 22 (guest) => 2222 (host) (adapter 1)
==> inetRouter: Running 'pre-boot' VM customizations...
==> inetRouter: Booting VM...
==> inetRouter: Waiting for machine to boot. This may take a few minutes...
    inetRouter: SSH address: 127.0.0.1:2222
    inetRouter: SSH username: vagrant
    inetRouter: SSH auth method: private key
    inetRouter: 
    inetRouter: Vagrant insecure key detected. Vagrant will automatically replace
    inetRouter: this with a newly generated keypair for better security.
    inetRouter: 
    inetRouter: Inserting generated public key within guest...
    inetRouter: Removing insecure key from the guest if it's present...
    inetRouter: Key inserted! Disconnecting and reconnecting using new SSH key...
==> inetRouter: Machine booted and ready!
==> inetRouter: Checking for guest additions in VM...
    inetRouter: No guest additions were detected on the base box for this VM! Guest
    inetRouter: additions are required for forwarded ports, shared folders, host only
    inetRouter: networking, and more. If SSH fails on this machine, please install
    inetRouter: the guest additions and repackage the box to continue.
    inetRouter: 
    inetRouter: This is not an error message; everything may continue to work properly,
    inetRouter: in which case you may ignore this message.
==> inetRouter: Setting hostname...
==> inetRouter: Configuring and enabling network interfaces...
==> inetRouter: Rsyncing folder: /mnt/STORAGE/Shared/OTUS-Task24/vagrant/ => /vagrant
==> inetRouter: Running provisioner: shell...
    inetRouter: Running: inline script
==> inetRouter: Running provisioner: shell...
    inetRouter: Running: inline script
==> inetRouter: Running provisioner: shell...
    inetRouter: Running: inline script
==> inetRouter: Running provisioner: shell...
    inetRouter: Running: inline script
==> inetRouter: Running provisioner: shell...
    inetRouter: Running: inline script
==> inetRouter: Running provisioner: shell...
    inetRouter: Running: inline script
==> inetRouter: Running provisioner: shell...
    inetRouter: Running: inline script
==> inetRouter: Running provisioner: shell...
    inetRouter: Running: inline script
==> inetRouter: Running provisioner: shell...
    inetRouter: Running: inline script
==> centralRouter: Importing base box 'centos/8'...

�[KProgress: 20%
�[KProgress: 40%
�[KProgress: 50%
�[KProgress: 70%
�[KProgress: 90%
�[K==> centralRouter: Matching MAC address for NAT networking...
==> centralRouter: Checking if box 'centos/8' version '1.0.0' is up to date...
==> centralRouter: Setting the name of the VM: vagrant_centralRouter_1706558662885_63449
==> centralRouter: Fixed port collision for 22 => 2222. Now on port 2200.
==> centralRouter: Clearing any previously set network interfaces...
==> centralRouter: Preparing network interfaces based on configuration...
    centralRouter: Adapter 1: nat
    centralRouter: Adapter 2: intnet
    centralRouter: Adapter 3: intnet
    centralRouter: Adapter 6: intnet
    centralRouter: Adapter 8: hostonly
==> centralRouter: Forwarding ports...
    centralRouter: 22 (guest) => 2200 (host) (adapter 1)
==> centralRouter: Running 'pre-boot' VM customizations...
==> centralRouter: Booting VM...
==> centralRouter: Waiting for machine to boot. This may take a few minutes...
    centralRouter: SSH address: 127.0.0.1:2200
    centralRouter: SSH username: vagrant
    centralRouter: SSH auth method: private key
    centralRouter: 
    centralRouter: Vagrant insecure key detected. Vagrant will automatically replace
    centralRouter: this with a newly generated keypair for better security.
    centralRouter: 
    centralRouter: Inserting generated public key within guest...
    centralRouter: Removing insecure key from the guest if it's present...
    centralRouter: Key inserted! Disconnecting and reconnecting using new SSH key...
==> centralRouter: Machine booted and ready!
==> centralRouter: Checking for guest additions in VM...
    centralRouter: No guest additions were detected on the base box for this VM! Guest
    centralRouter: additions are required for forwarded ports, shared folders, host only
    centralRouter: networking, and more. If SSH fails on this machine, please install
    centralRouter: the guest additions and repackage the box to continue.
    centralRouter: 
    centralRouter: This is not an error message; everything may continue to work properly,
    centralRouter: in which case you may ignore this message.
==> centralRouter: Setting hostname...
==> centralRouter: Configuring and enabling network interfaces...
==> centralRouter: Rsyncing folder: /mnt/STORAGE/Shared/OTUS-Task24/vagrant/ => /vagrant
==> centralRouter: Running provisioner: shell...
    centralRouter: Running: inline script
==> centralRouter: Running provisioner: shell...
    centralRouter: Running: inline script
==> centralRouter: Running provisioner: shell...
    centralRouter: Running: inline script
==> centralRouter: Running provisioner: shell...
    centralRouter: Running: inline script
==> centralRouter: Running provisioner: shell...
    centralRouter: Running: inline script
==> centralRouter: Running provisioner: shell...
    centralRouter: Running: inline script
==> centralRouter: Running provisioner: shell...
    centralRouter: Running: inline script
==> centralRouter: Running provisioner: shell...
    centralRouter: Running: inline script
==> centralRouter: Running provisioner: shell...
    centralRouter: Running: inline script
==> office1Router: Importing base box 'centos/8'...

�[KProgress: 20%
�[KProgress: 40%
�[KProgress: 50%
�[KProgress: 70%
�[KProgress: 90%
�[K==> office1Router: Matching MAC address for NAT networking...
==> office1Router: Checking if box 'centos/8' version '1.0.0' is up to date...
==> office1Router: Setting the name of the VM: vagrant_office1Router_1706558738369_98274
==> office1Router: Fixed port collision for 22 => 2222. Now on port 2201.
==> office1Router: Clearing any previously set network interfaces...
==> office1Router: Preparing network interfaces based on configuration...
    office1Router: Adapter 1: nat
    office1Router: Adapter 2: intnet
    office1Router: Adapter 3: intnet
    office1Router: Adapter 4: intnet
    office1Router: Adapter 5: intnet
    office1Router: Adapter 6: intnet
    office1Router: Adapter 8: hostonly
==> office1Router: Forwarding ports...
    office1Router: 22 (guest) => 2201 (host) (adapter 1)
==> office1Router: Running 'pre-boot' VM customizations...
==> office1Router: Booting VM...
==> office1Router: Waiting for machine to boot. This may take a few minutes...
    office1Router: SSH address: 127.0.0.1:2201
    office1Router: SSH username: vagrant
    office1Router: SSH auth method: private key
    office1Router: 
    office1Router: Vagrant insecure key detected. Vagrant will automatically replace
    office1Router: this with a newly generated keypair for better security.
    office1Router: 
    office1Router: Inserting generated public key within guest...
    office1Router: Removing insecure key from the guest if it's present...
    office1Router: Key inserted! Disconnecting and reconnecting using new SSH key...
==> office1Router: Machine booted and ready!
==> office1Router: Checking for guest additions in VM...
    office1Router: No guest additions were detected on the base box for this VM! Guest
    office1Router: additions are required for forwarded ports, shared folders, host only
    office1Router: networking, and more. If SSH fails on this machine, please install
    office1Router: the guest additions and repackage the box to continue.
    office1Router: 
    office1Router: This is not an error message; everything may continue to work properly,
    office1Router: in which case you may ignore this message.
==> office1Router: Setting hostname...
==> office1Router: Configuring and enabling network interfaces...
==> office1Router: Rsyncing folder: /mnt/STORAGE/Shared/OTUS-Task24/vagrant/ => /vagrant
==> office1Router: Running provisioner: shell...
    office1Router: Running: inline script
==> office1Router: Running provisioner: shell...
    office1Router: Running: inline script
==> office1Router: Running provisioner: shell...
    office1Router: Running: inline script
==> office1Router: Running provisioner: shell...
    office1Router: Running: inline script
==> office1Router: Running provisioner: shell...
    office1Router: Running: inline script
==> office1Router: Running provisioner: shell...
    office1Router: Running: inline script
==> office1Router: Running provisioner: shell...
    office1Router: Running: inline script
==> office1Router: Running provisioner: shell...
    office1Router: Running: inline script
==> office1Router: Running provisioner: shell...
    office1Router: Running: inline script
==> testClient1: Importing base box 'centos/8'...

�[KProgress: 20%
�[KProgress: 40%
�[KProgress: 50%
�[KProgress: 70%
�[KProgress: 90%
�[K==> testClient1: Matching MAC address for NAT networking...
==> testClient1: Checking if box 'centos/8' version '1.0.0' is up to date...
==> testClient1: Setting the name of the VM: vagrant_testClient1_1706558813762_45684
==> testClient1: Fixed port collision for 22 => 2222. Now on port 2202.
==> testClient1: Clearing any previously set network interfaces...
==> testClient1: Preparing network interfaces based on configuration...
    testClient1: Adapter 1: nat
    testClient1: Adapter 2: intnet
    testClient1: Adapter 8: hostonly
==> testClient1: Forwarding ports...
    testClient1: 22 (guest) => 2202 (host) (adapter 1)
==> testClient1: Running 'pre-boot' VM customizations...
==> testClient1: Booting VM...
==> testClient1: Waiting for machine to boot. This may take a few minutes...
    testClient1: SSH address: 127.0.0.1:2202
    testClient1: SSH username: vagrant
    testClient1: SSH auth method: private key
    testClient1: 
    testClient1: Vagrant insecure key detected. Vagrant will automatically replace
    testClient1: this with a newly generated keypair for better security.
    testClient1: 
    testClient1: Inserting generated public key within guest...
    testClient1: Removing insecure key from the guest if it's present...
    testClient1: Key inserted! Disconnecting and reconnecting using new SSH key...
==> testClient1: Machine booted and ready!
==> testClient1: Checking for guest additions in VM...
    testClient1: No guest additions were detected on the base box for this VM! Guest
    testClient1: additions are required for forwarded ports, shared folders, host only
    testClient1: networking, and more. If SSH fails on this machine, please install
    testClient1: the guest additions and repackage the box to continue.
    testClient1: 
    testClient1: This is not an error message; everything may continue to work properly,
    testClient1: in which case you may ignore this message.
==> testClient1: Setting hostname...
==> testClient1: Configuring and enabling network interfaces...
==> testClient1: Rsyncing folder: /mnt/STORAGE/Shared/OTUS-Task24/vagrant/ => /vagrant
==> testClient1: Running provisioner: shell...
    testClient1: Running: inline script
==> testClient1: Running provisioner: shell...
    testClient1: Running: inline script
==> testClient1: Running provisioner: shell...
    testClient1: Running: inline script
==> testClient1: Running provisioner: shell...
    testClient1: Running: inline script
==> testClient1: Running provisioner: shell...
    testClient1: Running: inline script
==> testClient1: Running provisioner: shell...
    testClient1: Running: inline script
==> testClient1: Running provisioner: shell...
    testClient1: Running: inline script
==> testClient1: Running provisioner: shell...
    testClient1: Running: inline script
==> testClient1: Running provisioner: shell...
    testClient1: Running: inline script
==> testServer1: Importing base box 'centos/8'...

�[KProgress: 20%
�[KProgress: 40%
�[KProgress: 50%
�[KProgress: 70%
�[KProgress: 90%
�[K==> testServer1: Matching MAC address for NAT networking...
==> testServer1: Checking if box 'centos/8' version '1.0.0' is up to date...
==> testServer1: Setting the name of the VM: vagrant_testServer1_1706558882639_4354
==> testServer1: Fixed port collision for 22 => 2222. Now on port 2203.
==> testServer1: Clearing any previously set network interfaces...
==> testServer1: Preparing network interfaces based on configuration...
    testServer1: Adapter 1: nat
    testServer1: Adapter 2: intnet
    testServer1: Adapter 8: hostonly
==> testServer1: Forwarding ports...
    testServer1: 22 (guest) => 2203 (host) (adapter 1)
==> testServer1: Running 'pre-boot' VM customizations...
==> testServer1: Booting VM...
==> testServer1: Waiting for machine to boot. This may take a few minutes...
    testServer1: SSH address: 127.0.0.1:2203
    testServer1: SSH username: vagrant
    testServer1: SSH auth method: private key
    testServer1: 
    testServer1: Vagrant insecure key detected. Vagrant will automatically replace
    testServer1: this with a newly generated keypair for better security.
    testServer1: 
    testServer1: Inserting generated public key within guest...
    testServer1: Removing insecure key from the guest if it's present...
    testServer1: Key inserted! Disconnecting and reconnecting using new SSH key...
==> testServer1: Machine booted and ready!
==> testServer1: Checking for guest additions in VM...
    testServer1: No guest additions were detected on the base box for this VM! Guest
    testServer1: additions are required for forwarded ports, shared folders, host only
    testServer1: networking, and more. If SSH fails on this machine, please install
    testServer1: the guest additions and repackage the box to continue.
    testServer1: 
    testServer1: This is not an error message; everything may continue to work properly,
    testServer1: in which case you may ignore this message.
==> testServer1: Setting hostname...
==> testServer1: Configuring and enabling network interfaces...
==> testServer1: Rsyncing folder: /mnt/STORAGE/Shared/OTUS-Task24/vagrant/ => /vagrant
==> testServer1: Running provisioner: shell...
    testServer1: Running: inline script
==> testServer1: Running provisioner: shell...
    testServer1: Running: inline script
==> testServer1: Running provisioner: shell...
    testServer1: Running: inline script
==> testServer1: Running provisioner: shell...
    testServer1: Running: inline script
==> testServer1: Running provisioner: shell...
    testServer1: Running: inline script
==> testServer1: Running provisioner: shell...
    testServer1: Running: inline script
==> testServer1: Running provisioner: shell...
    testServer1: Running: inline script
==> testServer1: Running provisioner: shell...
    testServer1: Running: inline script
==> testServer1: Running provisioner: shell...
    testServer1: Running: inline script
==> testClient2: Importing base box 'ubuntu/focal64'...

�[KProgress: 10%
�[KProgress: 90%
�[K==> testClient2: Matching MAC address for NAT networking...
==> testClient2: Checking if box 'ubuntu/focal64' version '1.0.0' is up to date...
==> testClient2: Setting the name of the VM: vagrant_testClient2_1706558948931_55576
==> testClient2: Fixed port collision for 22 => 2222. Now on port 2204.
==> testClient2: Clearing any previously set network interfaces...
==> testClient2: Preparing network interfaces based on configuration...
    testClient2: Adapter 1: nat
    testClient2: Adapter 2: intnet
    testClient2: Adapter 8: hostonly
==> testClient2: Forwarding ports...
    testClient2: 22 (guest) => 2204 (host) (adapter 1)
==> testClient2: Running 'pre-boot' VM customizations...
==> testClient2: Booting VM...
==> testClient2: Waiting for machine to boot. This may take a few minutes...
    testClient2: SSH address: 127.0.0.1:2204
    testClient2: SSH username: vagrant
    testClient2: SSH auth method: private key
    testClient2: Warning: Connection reset. Retrying...
    testClient2: Warning: Remote connection disconnect. Retrying...
    testClient2: Warning: Connection reset. Retrying...
    testClient2: Warning: Remote connection disconnect. Retrying...
    testClient2: 
    testClient2: Vagrant insecure key detected. Vagrant will automatically replace
    testClient2: this with a newly generated keypair for better security.
    testClient2: 
    testClient2: Inserting generated public key within guest...
    testClient2: Removing insecure key from the guest if it's present...
    testClient2: Key inserted! Disconnecting and reconnecting using new SSH key...
==> testClient2: Machine booted and ready!
==> testClient2: Checking for guest additions in VM...
==> testClient2: Setting hostname...
==> testClient2: Configuring and enabling network interfaces...
==> testClient2: Mounting shared folders...
    testClient2: /vagrant => /mnt/STORAGE/Shared/OTUS-Task24/vagrant
==> testClient2: Running provisioner: shell...
    testClient2: Running: inline script
==> testClient2: Running provisioner: shell...
    testClient2: Running: inline script
==> testClient2: Running provisioner: shell...
    testClient2: Running: inline script
==> testClient2: Running provisioner: shell...
    testClient2: Running: inline script
==> testClient2: Running provisioner: shell...
    testClient2: Running: inline script
==> testClient2: Running provisioner: shell...
    testClient2: Running: inline script
==> testClient2: Running provisioner: shell...
    testClient2: Running: inline script
==> testClient2: Running provisioner: shell...
    testClient2: Running: inline script
==> testClient2: Running provisioner: shell...
    testClient2: Running: inline script
==> testServer2: Importing base box 'ubuntu/focal64'...

�[KProgress: 90%
�[K==> testServer2: Matching MAC address for NAT networking...
==> testServer2: Checking if box 'ubuntu/focal64' version '1.0.0' is up to date...
==> testServer2: Setting the name of the VM: vagrant_testServer2_1706559039813_88889
==> testServer2: Fixed port collision for 22 => 2222. Now on port 2205.
==> testServer2: Clearing any previously set network interfaces...
==> testServer2: Preparing network interfaces based on configuration...
    testServer2: Adapter 1: nat
    testServer2: Adapter 2: intnet
    testServer2: Adapter 8: hostonly
==> testServer2: Forwarding ports...
    testServer2: 22 (guest) => 2205 (host) (adapter 1)
==> testServer2: Running 'pre-boot' VM customizations...
==> testServer2: Booting VM...
==> testServer2: Waiting for machine to boot. This may take a few minutes...
    testServer2: SSH address: 127.0.0.1:2205
    testServer2: SSH username: vagrant
    testServer2: SSH auth method: private key
    testServer2: Warning: Connection reset. Retrying...
    testServer2: Warning: Remote connection disconnect. Retrying...
    testServer2: 
    testServer2: Vagrant insecure key detected. Vagrant will automatically replace
    testServer2: this with a newly generated keypair for better security.
    testServer2: 
    testServer2: Inserting generated public key within guest...
    testServer2: Removing insecure key from the guest if it's present...
    testServer2: Key inserted! Disconnecting and reconnecting using new SSH key...
==> testServer2: Machine booted and ready!
==> testServer2: Checking for guest additions in VM...
==> testServer2: Setting hostname...
==> testServer2: Configuring and enabling network interfaces...
==> testServer2: Mounting shared folders...
    testServer2: /vagrant => /mnt/STORAGE/Shared/OTUS-Task24/vagrant
==> testServer2: Running provisioner: shell...
    testServer2: Running: inline script
==> testServer2: Running provisioner: shell...
    testServer2: Running: inline script
==> testServer2: Running provisioner: shell...
    testServer2: Running: inline script
==> testServer2: Running provisioner: shell...
    testServer2: Running: inline script
==> testServer2: Running provisioner: shell...
    testServer2: Running: inline script
==> testServer2: Running provisioner: shell...
    testServer2: Running: inline script
==> testServer2: Running provisioner: shell...
    testServer2: Running: inline script
==> testServer2: Running provisioner: shell...
    testServer2: Running: inline script
==> testServer2: Running provisioner: shell...
    testServer2: Running: inline script
Подождём пару минут...
Сделаем снапшоты со всех vagrant-машин
Подождём ещё минуту...
==> inetRouter: Snapshotting the machine as '1'...
==> inetRouter: Snapshot saved! You can restore the snapshot at any time by
==> inetRouter: using `vagrant snapshot restore`. You can delete it using
==> inetRouter: `vagrant snapshot delete`.
==> centralRouter: Snapshotting the machine as '2'...
==> centralRouter: Snapshot saved! You can restore the snapshot at any time by
==> centralRouter: using `vagrant snapshot restore`. You can delete it using
==> centralRouter: `vagrant snapshot delete`.
==> office1Router: Snapshotting the machine as '3'...
==> office1Router: Snapshot saved! You can restore the snapshot at any time by
==> office1Router: using `vagrant snapshot restore`. You can delete it using
==> office1Router: `vagrant snapshot delete`.
==> testClient1: Snapshotting the machine as '4'...
==> testClient1: Snapshot saved! You can restore the snapshot at any time by
==> testClient1: using `vagrant snapshot restore`. You can delete it using
==> testClient1: `vagrant snapshot delete`.
==> testClient2: Snapshotting the machine as '5'...
==> testClient2: Snapshot saved! You can restore the snapshot at any time by
==> testClient2: using `vagrant snapshot restore`. You can delete it using
==> testClient2: `vagrant snapshot delete`.
==> testServer1: Snapshotting the machine as '6'...
==> testServer1: Snapshot saved! You can restore the snapshot at any time by
==> testServer1: using `vagrant snapshot restore`. You can delete it using
==> testServer1: `vagrant snapshot delete`.
==> testServer2: Snapshotting the machine as '7'...
==> testServer2: Snapshot saved! You can restore the snapshot at any time by
==> testServer2: using `vagrant snapshot restore`. You can delete it using
==> testServer2: `vagrant snapshot delete`.
Настраиваем сервер и клиент NFS

PLAY [all] *********************************************************************

TASK [Gathering Facts] *********************************************************
ok: [inetRouter]
ok: [testClient1]
ok: [centralRouter]
ok: [office1Router]
ok: [testClient2]
ok: [testServer1]
ok: [testServer2]

TASK [deploy_network : fix repos] **********************************************
skipping: [testClient2]
changed: [testClient1]
skipping: [testServer2]
changed: [testServer1]
changed: [centralRouter]
changed: [office1Router]
changed: [inetRouter]

TASK [deploy_network : install softs on CentOS] ********************************
skipping: [testClient2]
changed: [centralRouter]
skipping: [testServer2]
changed: [testClient1]
changed: [office1Router]
changed: [testServer1]
changed: [inetRouter]

TASK [deploy_network : install softs on Debian-based] **************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testServer1]
changed: [testServer2]
changed: [testClient2]

TASK [deploy_network : copy conf-file to client1] ******************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient2]
skipping: [testServer1]
skipping: [testServer2]
changed: [testClient1]

TASK [deploy_network : copy conf-file to server1] ******************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testClient2]
skipping: [testServer2]
changed: [testServer1]

TASK [deploy_network : Restart service network] ********************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient2]
skipping: [testServer2]
changed: [testServer1]
changed: [testClient1]

TASK [deploy_network : Add logs ip on client1] *********************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient2]
skipping: [testServer1]
skipping: [testServer2]
changed: [testClient1]

TASK [deploy_network : Add logs ping client1] **********************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient2]
skipping: [testServer1]
skipping: [testServer2]
changed: [testClient1]

TASK [deploy_network : Add logs ip on server1] *********************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testClient2]
skipping: [testServer2]
changed: [testServer1]

TASK [deploy_network : fetch logfile] ******************************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient2]
skipping: [testServer1]
skipping: [testServer2]
changed: [testClient1]

TASK [deploy_network : fetch logfile] ******************************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testClient2]
skipping: [testServer2]
changed: [testServer1]

TASK [deploy_network : copy conf-file to client2] ******************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testServer1]
skipping: [testServer2]
changed: [testClient2]

TASK [deploy_network : copy conf-file to server2] ******************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testClient2]
skipping: [testServer1]
changed: [testServer2]

TASK [deploy_network : Restart service network] ********************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testServer1]
changed: [testClient2]
changed: [testServer2]

TASK [deploy_network : Add logs ip on client2] *********************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testServer1]
skipping: [testServer2]
changed: [testClient2]

TASK [deploy_network : Add logs ping client2] **********************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testServer1]
skipping: [testServer2]
changed: [testClient2]

TASK [deploy_network : Add logs ip on server2] *********************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testClient2]
skipping: [testServer1]
changed: [testServer2]

TASK [deploy_network : fetch logfile] ******************************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testServer1]
skipping: [testServer2]
changed: [testClient2]

TASK [deploy_network : fetch logfile] ******************************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testClient2]
skipping: [testServer1]
changed: [testServer2]

TASK [deploy_network : set up vlan1] *******************************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient2]
skipping: [testServer2]
changed: [testClient1]
changed: [testServer1]

TASK [deploy_network : Restart service network] ********************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient2]
skipping: [testServer2]
changed: [testClient1]
changed: [testServer1]

TASK [deploy_network : set up vlan2] *******************************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testServer1]
changed: [testClient2]
changed: [testServer2]

TASK [deploy_network : apply set up vlan2] *************************************
skipping: [inetRouter]
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testServer1]
changed: [testClient2]
changed: [testServer2]

TASK [deploy_network : set up ifcfg-bond0] *************************************
skipping: [office1Router]
skipping: [testClient1]
skipping: [testClient2]
skipping: [testServer1]
skipping: [testServer2]
changed: [inetRouter]
changed: [centralRouter]

TASK [deploy_network : set up eth1,eth2] ***************************************
skipping: [office1Router] => (item=ifcfg-eth1) 
skipping: [office1Router] => (item=ifcfg-eth2) 
skipping: [testClient1] => (item=ifcfg-eth1) 
skipping: [testClient1] => (item=ifcfg-eth2) 
skipping: [office1Router]
skipping: [testClient1]
skipping: [testClient2] => (item=ifcfg-eth1) 
skipping: [testClient2] => (item=ifcfg-eth2) 
skipping: [testServer1] => (item=ifcfg-eth1) 
skipping: [testServer1] => (item=ifcfg-eth2) 
skipping: [testClient2]
skipping: [testServer1]
skipping: [testServer2] => (item=ifcfg-eth1) 
skipping: [testServer2] => (item=ifcfg-eth2) 
skipping: [testServer2]
changed: [inetRouter] => (item=ifcfg-eth1)
changed: [centralRouter] => (item=ifcfg-eth1)
changed: [inetRouter] => (item=ifcfg-eth2)
changed: [centralRouter] => (item=ifcfg-eth2)

TASK [deploy_network : restart hosts for bond0] ********************************
skipping: [office1Router]
skipping: [testClient1]
skipping: [testClient2]
skipping: [testServer1]
skipping: [testServer2]
changed: [centralRouter]
changed: [inetRouter]

TASK [deploy_network : Add logs ping inetRouter] *******************************
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testClient2]
skipping: [testServer1]
skipping: [testServer2]
changed: [inetRouter]

TASK [deploy_network : Down eth1 on centralRouter] *****************************
skipping: [inetRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testClient2]
skipping: [testServer1]
skipping: [testServer2]
changed: [centralRouter]

TASK [deploy_network : Add logs ping inetRouter] *******************************
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testClient2]
skipping: [testServer1]
skipping: [testServer2]
changed: [inetRouter]

TASK [deploy_network : Down eth1 on centralRouter] *****************************
skipping: [inetRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testClient2]
skipping: [testServer1]
skipping: [testServer2]
changed: [centralRouter]

TASK [deploy_network : fetch logfile] ******************************************
skipping: [centralRouter]
skipping: [office1Router]
skipping: [testClient1]
skipping: [testClient2]
skipping: [testServer1]
skipping: [testServer2]
changed: [inetRouter]

PLAY RECAP *********************************************************************
centralRouter              : ok=8    changed=7    unreachable=0    failed=0    skipped=24   rescued=0    ignored=0   
inetRouter                 : ok=9    changed=8    unreachable=0    failed=0    skipped=23   rescued=0    ignored=0   
office1Router              : ok=3    changed=2    unreachable=0    failed=0    skipped=29   rescued=0    ignored=0   
testClient1                : ok=10   changed=9    unreachable=0    failed=0    skipped=22   rescued=0    ignored=0   
testClient2                : ok=9    changed=8    unreachable=0    failed=0    skipped=23   rescued=0    ignored=0   
testServer1                : ok=9    changed=8    unreachable=0    failed=0    skipped=23   rescued=0    ignored=0   
testServer2                : ok=8    changed=7    unreachable=0    failed=0    skipped=24   rescued=0    ignored=0   

Файлы с логами находятся рядом со скриптом

Содержимое файла logfile_test_client1
 Проверим сеть на клиенте1 (ip a) 

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 52:54:00:27:8b:50 brd ff:ff:ff:ff:ff:ff
    inet 10.0.2.15/24 brd 10.0.2.255 scope global dynamic noprefixroute eth0
       valid_lft 85795sec preferred_lft 85795sec
    inet6 fe80::5054:ff:fe27:8b50/64 scope link 
       valid_lft forever preferred_lft forever
3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 08:00:27:4f:f0:b5 brd ff:ff:ff:ff:ff:ff
    inet6 fe80::4b36:8a73:48f6:8d19/64 scope link noprefixroute 
       valid_lft forever preferred_lft forever
4: eth2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 08:00:27:71:d5:ad brd ff:ff:ff:ff:ff:ff
    inet 192.168.56.21/24 brd 192.168.56.255 scope global noprefixroute eth2
       valid_lft forever preferred_lft forever
    inet6 fe80::a00:27ff:fe71:d5ad/64 scope link 
       valid_lft forever preferred_lft forever


 Проверим сеть на клиенте1 (ping -c 4 10.10.10.1)) 

PING 10.10.10.1 (10.10.10.1) 56(84) bytes of data.
64 bytes from 10.10.10.1: icmp_seq=1 ttl=64 time=0.693 ms
64 bytes from 10.10.10.1: icmp_seq=2 ttl=64 time=1.04 ms
64 bytes from 10.10.10.1: icmp_seq=3 ttl=64 time=0.435 ms
64 bytes from 10.10.10.1: icmp_seq=4 ttl=64 time=0.984 ms

--- 10.10.10.1 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 101ms
rtt min/avg/max/mdev = 0.435/0.787/1.038/0.243 ms

Содержимое файла logfile_test_client1
-e 

 Проверим сеть на клиенте2 (ip a) 

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: enp0s3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 02:a2:a1:70:a2:36 brd ff:ff:ff:ff:ff:ff
    inet 10.0.2.15/24 brd 10.0.2.255 scope global dynamic enp0s3
       valid_lft 86399sec preferred_lft 86399sec
    inet6 fe80::a2:a1ff:fe70:a236/64 scope link 
       valid_lft forever preferred_lft forever
3: enp0s8: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 08:00:27:c6:7a:16 brd ff:ff:ff:ff:ff:ff
    inet6 fe80::a00:27ff:fec6:7a16/64 scope link 
       valid_lft forever preferred_lft forever
4: enp0s19: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 08:00:27:52:95:d4 brd ff:ff:ff:ff:ff:ff
    inet 192.168.56.31/24 brd 192.168.56.255 scope global enp0s19
       valid_lft forever preferred_lft forever
    inet6 fe80::a00:27ff:fe52:95d4/64 scope link 
       valid_lft forever preferred_lft forever
5: vlan2@enp0s8: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether 08:00:27:c6:7a:16 brd ff:ff:ff:ff:ff:ff
    inet 10.10.10.254/24 brd 10.10.10.255 scope global vlan2
       valid_lft forever preferred_lft forever
    inet6 fe80::a00:27ff:fec6:7a16/64 scope link 
       valid_lft forever preferred_lft forever
-e 

 Проверим сеть на клиенте2 (ping -c 4 10.10.10.1)) 

PING 10.10.10.1 (10.10.10.1) 56(84) bytes of data.
64 bytes from 10.10.10.1: icmp_seq=1 ttl=64 time=0.609 ms
64 bytes from 10.10.10.1: icmp_seq=2 ttl=64 time=0.431 ms
64 bytes from 10.10.10.1: icmp_seq=3 ttl=64 time=0.223 ms
64 bytes from 10.10.10.1: icmp_seq=4 ttl=64 time=0.272 ms

--- 10.10.10.1 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3145ms
rtt min/avg/max/mdev = 0.223/0.383/0.609/0.151 ms

logfile_test_server1 ```bash

Проверим сеть на сервере1 (ip a)

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000 link/ether 52:54:00:27:8b:50 brd ff:ff:ff:ff:ff:ff inet 10.0.2.15/24 brd 10.0.2.255 scope global dynamic noprefixroute eth0 valid_lft 86396sec preferred_lft 86396sec inet6 fe80::5054:ff:fe27:8b50/64 scope link valid_lft forever preferred_lft forever 3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000 link/ether 08:00:27:0a:de:23 brd ff:ff:ff:ff:ff:ff inet6 fe80::358a:18d4:13a1:7275/64 scope link noprefixroute valid_lft forever preferred_lft forever 4: eth2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000 link/ether 08:00:27:f6:8e:40 brd ff:ff:ff:ff:ff:ff inet 192.168.56.22/24 brd 192.168.56.255 scope global noprefixroute eth2 valid_lft forever preferred_lft forever inet6 fe80::a00:27ff:fef6:8e40/64 scope link valid_lft forever preferred_lft forever 5: eth1.1@eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000 link/ether 08:00:27:0a:de:23 brd ff:ff:ff:ff:ff:ff inet 10.10.10.1/24 brd 10.10.10.255 scope global noprefixroute eth1.1 valid_lft forever preferred_lft forever inet6 fe80::a00:27ff:fe0a:de23/64 scope link valid_lft forever preferred_lft forever

</details>

<details>
<summary>logfile_test_server2</summary>
```bash

-e 

 Проверим сеть на сервере1 (ip a) 

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: enp0s3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 02:a2:a1:70:a2:36 brd ff:ff:ff:ff:ff:ff
    inet 10.0.2.15/24 brd 10.0.2.255 scope global dynamic enp0s3
       valid_lft 86395sec preferred_lft 86395sec
    inet6 fe80::a2:a1ff:fe70:a236/64 scope link 
       valid_lft forever preferred_lft forever
3: enp0s8: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 08:00:27:0f:1f:0f brd ff:ff:ff:ff:ff:ff
    inet6 fe80::a00:27ff:fe0f:1f0f/64 scope link 
       valid_lft forever preferred_lft forever
4: enp0s19: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 08:00:27:3e:77:97 brd ff:ff:ff:ff:ff:ff
    inet 192.168.56.32/24 brd 192.168.56.255 scope global enp0s19
       valid_lft forever preferred_lft forever
    inet6 fe80::a00:27ff:fe3e:7797/64 scope link 
       valid_lft forever preferred_lft forever
5: vlan2@enp0s8: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether 08:00:27:0f:1f:0f brd ff:ff:ff:ff:ff:ff
    inet 10.10.10.1/24 brd 10.10.10.255 scope global vlan2
       valid_lft forever preferred_lft forever
    inet6 fe80::a00:27ff:fe0f:1f0f/64 scope link 
       valid_lft forever preferred_lft forever


logfile_test_inetRouter ```bash

Проверим сеть на клиенте2 (ping -c 4 192.168.255.2))

PING 192.168.255.2 (192.168.255.2) 56(84) bytes of data. 64 bytes from 192.168.255.2: icmp_seq=1 ttl=64 time=0.422 ms 64 bytes from 192.168.255.2: icmp_seq=2 ttl=64 time=0.404 ms 64 bytes from 192.168.255.2: icmp_seq=3 ttl=64 time=0.979 ms 64 bytes from 192.168.255.2: icmp_seq=4 ttl=64 time=0.392 ms

--- 192.168.255.2 ping statistics --- 4 packets transmitted, 4 received, 0% packet loss, time 701ms rtt min/avg/max/mdev = 0.392/0.549/0.979/0.248 ms

Проверим сеть на клиенте2 ещё раз (ping -c 4 192.168.255.2))

PING 192.168.255.2 (192.168.255.2) 56(84) bytes of data. 64 bytes from 192.168.255.2: icmp_seq=1 ttl=64 time=0.597 ms 64 bytes from 192.168.255.2: icmp_seq=2 ttl=64 time=0.370 ms 64 bytes from 192.168.255.2: icmp_seq=3 ttl=64 time=0.341 ms 64 bytes from 192.168.255.2: icmp_seq=4 ttl=64 time=0.268 ms

--- 192.168.255.2 ping statistics --- 4 packets transmitted, 4 received, 0% packet loss, time 97ms rtt min/avg/max/mdev = 0.268/0.394/0.597/0.122 ms

</details>

otus-task24's People

Contributors

nargamard avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.