Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,246 @@
{
"name" : "ipmi",
"connectionForms" : [

{
"name" : "network",
"fields" : [
{
"name" : "hostname",
"type" : "TEXT"
},
{
"name" : "port",
"type" : "NUMERIC"
},
{
"name" : "timeout",
"type" : "NUMERIC"
}
]
},

{
"name" : "authentication",
"fields" : [
{
"name" : "username",
"type" : "USERNAME"
},
{
"name" : "password",
"type" : "PASSWORD"
},
{
"name" : "k-g",
"type" : "PASSWORD"
},
{
"name" : "privilege-level",
"type" : "ENUM",
"options" : [ "", "user", "operator", "admin" ]
}
]
},

{
"name" : "security",
"fields" : [
{
"name" : "cipher-suite",
"type" : "ENUM",
"options" : [ "", "3", "17" ]
},
{
"name" : "encryption-policy",
"type" : "ENUM",
"options" : [ "", "required", "preferred", "none" ]
},
{
"name" : "workaround-flags",
"type" : "ENUM",
"options" : [ "", "supermicro", "intel", "sun", "dell", "hpe", "lenovo" ]
}
]
},

{
"name" : "serial-over-lan",
"fields" : [
{
"name" : "sol-payload-instance",
"type" : "NUMERIC"
},
{
"name" : "keepalive-interval",
"type" : "NUMERIC"
}
]
},

{
"name" : "power",
"fields" : [
{
"name" : "power-on-connect",
"type" : "ENUM",
"options" : [ "", "none", "on", "reset", "cycle" ]
},
{
"name" : "boot-device",
"type" : "ENUM",
"options" : [ "", "none", "pxe", "disk", "cdrom", "bios" ]
},
{
"name" : "boot-device-persistent",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
},

{
"name" : "display",
"fields" : [
{
"name" : "color-scheme",
"type" : "TERMINAL_COLOR_SCHEME",
"options" : [ "", "black-white", "gray-black", "green-black", "white-black" ]
},
{
"name" : "font-name",
"type" : "TEXT"
},
{
"name" : "font-size",
"type" : "ENUM",
"options" : [ "", "8", "9", "10", "11", "12", "14", "18", "24", "30", "36", "48", "60", "72", "96" ]
},
{
"name" : "scrollback",
"type" : "NUMERIC"
},
{
"name" : "read-only",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
},

{
"name" : "clipboard",
"fields" : [
{
"name" : "disable-copy",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "disable-paste",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
},

{
"name" : "behavior",
"fields" : [
{
"name" : "backspace",
"type" : "ENUM",
"options" : [ "", "127", "8" ]
},
{
"name" : "terminal-type",
"type" : "ENUM",
"options" : [ "", "xterm", "xterm-256color", "vt220", "vt100", "ansi", "linux" ]
}
]
},

{
"name" : "typescript",
"fields" : [
{
"name" : "typescript-path",
"type" : "TEXT"
},
{
"name" : "typescript-name",
"type" : "TEXT"
},
{
"name" : "create-typescript-path",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "typescript-write-existing",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
},

{
"name" : "recording",
"fields" : [
{
"name" : "recording-path",
"type" : "TEXT"
},
{
"name" : "recording-name",
"type" : "TEXT"
},
{
"name" : "recording-exclude-output",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "recording-exclude-mouse",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "recording-include-keys",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "recording-include-clipboard",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "create-recording-path",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "recording-write-existing",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
}

],
"sharingProfileForms" : [

{
"name" : "display",
"fields" : [
{
"name" : "read-only",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
}

]
}
Loading