diff options
author | Christian Breunig <christian@breunig.cc> | 2024-06-15 22:32:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-15 22:32:13 +0200 |
commit | 2b3d1167850b8575eb0f9e2e9dae1c90666641bf (patch) | |
tree | ff9ddd748aa86cff23c4b71ce4e9549e6af6339c /tools | |
parent | 710351e0b53bc2fed5630a240070054939128825 (diff) | |
parent | c0af57d68c7bfefcd65bb460ef28b79cadc5a087 (diff) | |
download | vyos-build-2b3d1167850b8575eb0f9e2e9dae1c90666641bf.tar.gz vyos-build-2b3d1167850b8575eb0f9e2e9dae1c90666641bf.zip |
Merge pull request #653 from ZenithTecnologia/current
docker: arm: T6474: Initial support for dynamic arch toml loading
Diffstat (limited to 'tools')
-rw-r--r-- | tools/container/config.boot.default | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tools/container/config.boot.default b/tools/container/config.boot.default new file mode 100644 index 00000000..f115c442 --- /dev/null +++ b/tools/container/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 "time1.vyos.net" + server "time2.vyos.net" + server "time3.vyos.net" + } + console { + device ttyS0 { + speed 115200 + } + } + config-management { + commit-revisions 100 + } +} + +interfaces { + loopback lo { + } +} |