diff options
author | Yuya Kusakabe <yuya.kusakabe@gmail.com> | 2018-06-21 17:12:20 +0900 |
---|---|---|
committer | Yuya Kusakabe <yuya.kusakabe@gmail.com> | 2018-06-21 17:12:20 +0900 |
commit | b01eb7ec15541b8c0c102d7601fc0be95a8a70c5 (patch) | |
tree | 7162603274ecbccccb945011a796123d15a9390a /roles/vmware/files | |
parent | 8c9f3a8e7bd9a937bcc4401a27246e258c5b4e4c (diff) | |
download | vyos-vm-images-b01eb7ec15541b8c0c102d7601fc0be95a8a70c5.tar.gz vyos-vm-images-b01eb7ec15541b8c0c102d7601fc0be95a8a70c5.zip |
Initial VMware support
Diffstat (limited to 'roles/vmware/files')
-rw-r--r-- | roles/vmware/files/config.boot | 41 | ||||
-rw-r--r-- | roles/vmware/files/persistence.conf | 1 |
2 files changed, 42 insertions, 0 deletions
diff --git a/roles/vmware/files/config.boot b/roles/vmware/files/config.boot new file mode 100644 index 0000000..f1ec4f5 --- /dev/null +++ b/roles/vmware/files/config.boot @@ -0,0 +1,41 @@ +service { + ssh { + port 22 + } +} +system { + host-name vyos + login { + user vyos { + authentication { + encrypted-password "$6$MjV2YvKQ56q$QbL562qhRoyUu8OaqrXagicvcsNpF1HssCY06ZxxghDJkBCfSfTE/4FlFB41xZcd/HqYyVBuRt8Zyq3ozJ0dc." + plaintext-password "" + } + level admin + } + } + syslog { + global { + facility all { + level notice + } + facility protocols { + level debug + } + } + } + ntp { + server "0.pool.ntp.org" + server "1.pool.ntp.org" + server "2.pool.ntp.org" + } + config-management { + commit-revisions 100 + } +} +interfaces { + ethernet eth0 { + address dhcp + } + loopback lo +} diff --git a/roles/vmware/files/persistence.conf b/roles/vmware/files/persistence.conf new file mode 100644 index 0000000..f500aef --- /dev/null +++ b/roles/vmware/files/persistence.conf @@ -0,0 +1 @@ +/ union |