mirror of
https://github.com/The-Art-of-Hacking/h4cker
synced 2024-11-21 10:23:02 +00:00
Create inventory-example
This commit is contained in:
parent
b947137a92
commit
961307f2bf
1 changed files with 49 additions and 0 deletions
49
build_your_own_lab/ansible/inventory-example
Normal file
49
build_your_own_lab/ansible/inventory-example
Normal file
|
@ -0,0 +1,49 @@
|
|||
all:
|
||||
|
||||
children:
|
||||
|
||||
stations:
|
||||
station1:
|
||||
station1_laptops:
|
||||
hosts:
|
||||
192.168.10.[1:5]
|
||||
station1_switch:
|
||||
hosts:
|
||||
sw.station1.rtov.net
|
||||
|
||||
station2:
|
||||
station2_laptops:
|
||||
hosts:
|
||||
192.168.11.[1:5]
|
||||
# station2 switch controlled by Omar
|
||||
|
||||
station3:
|
||||
station1_laptops:
|
||||
hosts:
|
||||
192.168.12.[1:5]
|
||||
station3_switch:
|
||||
hosts:
|
||||
sw.station3.rtov.net
|
||||
|
||||
station4:
|
||||
station1_laptops:
|
||||
hosts:
|
||||
192.168.13.[1:5]
|
||||
station4_switch:
|
||||
hosts:
|
||||
sw.station4.rtov.net
|
||||
|
||||
station5:
|
||||
station5_laptops:
|
||||
hosts:
|
||||
192.168.14.[1:5]
|
||||
station5_switch:
|
||||
hosts:
|
||||
sw.station5.rtov.net
|
||||
|
||||
# created a "switches" child, so that we can also just push initial configs
|
||||
# or change anything to all the switches at once
|
||||
|
||||
switches:
|
||||
hosts:
|
||||
sw.station[1:5].rtov.net
|
Loading…
Reference in a new issue