summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLeonardo Amaral <contato@leonardoamaral.com.br>2024-06-11 18:03:33 -0300
committerLeonardo Amaral <contato@leonardoamaral.com.br>2024-06-11 18:03:33 -0300
commit946a6088923016631e870943e9b904fe821d48d6 (patch)
treef39b4480dd1db26e03a701f23ede0fbdd81abaa6 /tools
parent26181773ef684701c0154b99ebea307e672d5f17 (diff)
downloadvyos-build-946a6088923016631e870943e9b904fe821d48d6.tar.gz
vyos-build-946a6088923016631e870943e9b904fe821d48d6.zip
docker: arm: T6474: Initial support for dynamic arch toml loading.
Signed-off-by: Leonardo Amaral <contato@leonardoamaral.com.br>
Diffstat (limited to 'tools')
-rw-r--r--tools/container/config.boot.default40
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 {
+ }
+}