diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-06-06 09:49:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-06 09:49:51 +0200 |
commit | f6752de811ba8a553abd631427e7735b191c1f91 (patch) | |
tree | 4aa1bcced8024d5949dd9dc2fab1e94134302131 /data/config.boot.default | |
parent | 77cb661d81da44ac89b3fe3a0bca0e255dc430b7 (diff) | |
parent | d34edc5c15f939f87648b0f8588f99474c53b459 (diff) | |
download | vyos-1x-f6752de811ba8a553abd631427e7735b191c1f91.tar.gz vyos-1x-f6752de811ba8a553abd631427e7735b191c1f91.zip |
Merge pull request #3587 from jestabro/config-default-system-version
migration: T6006: add system component version to config.boot.default by separating activation from migration
Diffstat (limited to 'data/config.boot.default')
-rw-r--r-- | data/config.boot.default | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/data/config.boot.default b/data/config.boot.default new file mode 100644 index 000000000..93369d9b7 --- /dev/null +++ b/data/config.boot.default @@ -0,0 +1,53 @@ +interfaces { + loopback lo { + } +} +service { + ntp { + allow-client { + address "127.0.0.0/8" + address "169.254.0.0/16" + address "10.0.0.0/8" + address "172.16.0.0/12" + address "192.168.0.0/16" + address "::1/128" + address "fe80::/10" + address "fc00::/7" + } + server time1.vyos.net { + } + server time2.vyos.net { + } + server time3.vyos.net { + } + } +} +system { + config-management { + commit-revisions "100" + } + console { + device ttyS0 { + speed "115200" + } + } + host-name "vyos" + login { + user vyos { + authentication { + encrypted-password "$6$QxPS.uk6mfo$9QBSo8u1FkH16gMyAVhus6fU3LOzvLR9Z9.82m3tiHFAxTtIkhaZSWssSgzt4v4dGAL8rhVQxTg0oAG9/q11h/" + plaintext-password "" + } + } + } + syslog { + global { + facility all { + level "info" + } + facility local7 { + level "debug" + } + } + } +} |