diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-07-23 17:07:34 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-23 17:07:34 +0700 |
commit | d11d4b6e44b6db649b2402500c955af5f8d310c6 (patch) | |
tree | 613944f1de089105950a86501507b6aa2151380d /tools/cloud-init/openstack/config.boot.default | |
parent | b229f0bd958a42c6faa345c91500c2ed8ccdc919 (diff) | |
parent | 6056acfa06c2b79ee8981b9f36a1ced2dac29111 (diff) | |
download | vyos-build-d11d4b6e44b6db649b2402500c955af5f8d310c6.tar.gz vyos-build-d11d4b6e44b6db649b2402500c955af5f8d310c6.zip |
Merge pull request #57 from runborg/equuleus-merged
Sync equuleus with current.
Diffstat (limited to 'tools/cloud-init/openstack/config.boot.default')
-rw-r--r-- | tools/cloud-init/openstack/config.boot.default | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tools/cloud-init/openstack/config.boot.default b/tools/cloud-init/openstack/config.boot.default new file mode 100644 index 00000000..de724f0b --- /dev/null +++ b/tools/cloud-init/openstack/config.boot.default @@ -0,0 +1,40 @@ +system { + host-name vyos + login { + user vyos { + authentication { + encrypted-password "*" + plaintext-password "" + } + level admin + } + } + syslog { + global { + facility all { + level info + } + facility protocols { + level debug + } + } + } + ntp { + server "0.pool.ntp.org" + server "1.pool.ntp.org" + server "2.pool.ntp.org" + } + console { + device ttyS0 { + speed 9600 + } + } + config-management { + commit-revisions 100 + } +} + +interfaces { + loopback lo { + } +} |