[WARNING]: Could not match supplied host pattern, ignoring: unprovisioned PLAY [Deploy initial device configuration] ************************************* TASK [Set variables that cannot be set with VARS] ****************************** ok: [dut] ok: [r1] ok: [r2] ok: [r3] ok: [r4] TASK [Find device readiness script] ******************************************** ok: [dut] ok: [r1] ok: [r2] ok: [r3] ok: [r4] TASK [Wait for device to become ready] ***************************************** skipping: [dut] skipping: [r1] skipping: [r2] skipping: [r3] skipping: [r4] TASK [Deploy initial configuration] ******************************************** included: /home/pipi/net101/tools/netsim/ansible/tasks/deploy-module.yml for dut, r1, r2, r3, r4 TASK [Figure out whether to deploy the module initial on current device] ******* ok: [dut] ok: [r1] ok: [r2] ok: [r3] ok: [r4] TASK [Find configuration template for initial] ********************************* ok: [dut] ok: [r1] ok: [r2] ok: [r3] ok: [r4] TASK [Print deployed configuration when running in verbose mode] *************** ok: [dut] => msg: |- initial configuration for dut ========================================= #!/bin/vbash source /opt/vyatta/etc/functions/script-template if [ "$(id -g -n)" != 'vyattacfg' ] ; then exec sg vyattacfg -c "/bin/vbash $(readlink -f $0) $@" fi # Configuration items start here configure set system host-name 'dut' set vrf name blue table 101 set vrf name red table 100 set interfaces dummy dum0 address 10.0.0.1/32 set interfaces ethernet eth1 description 'dut -> r1 [external]' # Need to set the same address as loopback (dum0) to make it behave as unnumbered set interfaces ethernet eth1 address 10.0.0.1/32 set interfaces ethernet eth1 ipv6 set interfaces ethernet eth1 vrf red set interfaces ethernet eth2 description 'dut -> r2 [external]' # Need to set the same address as loopback (dum0) to make it behave as unnumbered set interfaces ethernet eth2 address 10.0.0.1/32 set interfaces ethernet eth2 ipv6 set interfaces ethernet eth2 vrf red set interfaces ethernet eth3 description 'dut -> r3 [external]' # Need to set the same address as loopback (dum0) to make it behave as unnumbered set interfaces ethernet eth3 address 10.0.0.1/32 set interfaces ethernet eth3 ipv6 set interfaces ethernet eth3 vrf blue set interfaces ethernet eth4 description 'dut -> r4 [external]' # Need to set the same address as loopback (dum0) to make it behave as unnumbered set interfaces ethernet eth4 address 10.0.0.1/32 set interfaces ethernet eth4 ipv6 set interfaces ethernet eth4 vrf blue set service lldp interface all set service lldp interface eth0 disable set service router-advert interface eth1 set service router-advert interface eth2 set service router-advert interface eth3 set service router-advert interface eth4 # Commit, save and exit from subshell commit save exit # Restart FRR to pick up the new hostname sudo service frr restart ok: [r1] => msg: |- initial configuration for r1 ========================================= #!/bin/bash # set -e set -x # # Create bash profile script # cat <