diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-12-16 23:39:23 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-12-16 23:39:48 +0100 |
commit | 6d49b646a1cd4840621e9d07a0431c87eeec2482 (patch) | |
tree | 19713044015f40ae3d6fbd4f61e50f84b3c9c2f3 /templates/protocols/rpki/cache | |
parent | e663ba7c320132ee21ad6ef3d6141700428f057c (diff) | |
download | vyatta-cfg-quagga-6d49b646a1cd4840621e9d07a0431c87eeec2482.tar.gz vyatta-cfg-quagga-6d49b646a1cd4840621e9d07a0431c87eeec2482.zip |
T865: prototype RPKI implementation.
Diffstat (limited to 'templates/protocols/rpki/cache')
8 files changed, 25 insertions, 0 deletions
diff --git a/templates/protocols/rpki/cache/node.def b/templates/protocols/rpki/cache/node.def new file mode 100644 index 00000000..f28cf2c6 --- /dev/null +++ b/templates/protocols/rpki/cache/node.def @@ -0,0 +1,3 @@ +tag: +type: txt +help: RPKI cache server instance diff --git a/templates/protocols/rpki/cache/node.tag/address/node.def b/templates/protocols/rpki/cache/node.tag/address/node.def new file mode 100644 index 00000000..de110206 --- /dev/null +++ b/templates/protocols/rpki/cache/node.tag/address/node.def @@ -0,0 +1,2 @@ +type: txt +help: RPKI cache server address diff --git a/templates/protocols/rpki/cache/node.tag/port/node.def b/templates/protocols/rpki/cache/node.tag/port/node.def new file mode 100644 index 00000000..e97c2477 --- /dev/null +++ b/templates/protocols/rpki/cache/node.tag/port/node.def @@ -0,0 +1,3 @@ +type: u32 +help: TCP port number +val_help: u32:1-65535; TCP port number diff --git a/templates/protocols/rpki/cache/node.tag/ssh/known-hosts-file/node.def b/templates/protocols/rpki/cache/node.tag/ssh/known-hosts-file/node.def new file mode 100644 index 00000000..40f2c3dc --- /dev/null +++ b/templates/protocols/rpki/cache/node.tag/ssh/known-hosts-file/node.def @@ -0,0 +1,5 @@ +type: txt +help: RPKI SSH known hosts file + +syntax:expression: exec "test -f $VAR(@)"; "Must be an existing file path" + diff --git a/templates/protocols/rpki/cache/node.tag/ssh/node.def b/templates/protocols/rpki/cache/node.tag/ssh/node.def new file mode 100644 index 00000000..2fb48499 --- /dev/null +++ b/templates/protocols/rpki/cache/node.tag/ssh/node.def @@ -0,0 +1 @@ +help: RPKI SSH connection settings diff --git a/templates/protocols/rpki/cache/node.tag/ssh/private-key-file/node.def b/templates/protocols/rpki/cache/node.tag/ssh/private-key-file/node.def new file mode 100644 index 00000000..8cfb580f --- /dev/null +++ b/templates/protocols/rpki/cache/node.tag/ssh/private-key-file/node.def @@ -0,0 +1,5 @@ +type: txt +help: RPKI SSH private key file + +syntax:expression: exec "test -f $VAR(@)"; "Must be an existing file path" + diff --git a/templates/protocols/rpki/cache/node.tag/ssh/public-key-file/node.def b/templates/protocols/rpki/cache/node.tag/ssh/public-key-file/node.def new file mode 100644 index 00000000..31de9562 --- /dev/null +++ b/templates/protocols/rpki/cache/node.tag/ssh/public-key-file/node.def @@ -0,0 +1,4 @@ +type: txt +help: RPKI SSH public key file path + +syntax:expression: exec "test -f $VAR(@)"; "Must be an existing file path" diff --git a/templates/protocols/rpki/cache/node.tag/ssh/username/node.def b/templates/protocols/rpki/cache/node.tag/ssh/username/node.def new file mode 100644 index 00000000..4391509d --- /dev/null +++ b/templates/protocols/rpki/cache/node.tag/ssh/username/node.def @@ -0,0 +1,2 @@ +type: txt +help: RPKI SSH username |