1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #Example file. Removing a stanza will result in system defaults for that section.
- #cloud-config
- blink_config:
- configure: "true"
- gateway_cluster_member: "false"
- download_info: "true"
- upload_info: "true"
- ftw_sic_key: "${pass_sic}"
- ssh_authorized_keys:
- - "${ssh_key}"
- system:
- hostname: FW-B
- #domainname: test.com
- #dns1: 10.128.0.2
- dns2: 8.8.8.8
- dns3: 4.2.2.2
- ntp1:
- address: ntp.checkpoint.com
- version: 4
- ntp2:
- address: ntp2.checkpoint.com
- version: 4
- # Please configure interfaces per OpenStack or Generic image instructions !!!!!
- #interfaces:
- # - name: eth0
- # ipv4-address: 192.168.1.35
- # subnet-length: 24
- # - name: eth1
- # ipv4-address: DHCP
- routing:
- static:
- - dst: "${dst-1}"
- nexthop: "${next-hop-1}"
- - dst: "${dst-2}"
- nexthop: "${next-hop-2}"
- clishcmd:
- - 'set static-route default nexthop gateway address "${next-hop-1}" on'
- - 'set static-route default nexthop gateway address 192.168.2.1 off'
- - 'save config'
|