mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-06 23:43:20 +02:00
- Anonymous FTP, or URL encoded ftp://user:hostname@addr/oci.tar.gz - HTTP/HTTPS fetched with curl, optional credentials support - Verify download against an optional sha256 checksum Ensure the unpacked directory name does not contain a ':', it is a restricted character and cannot be part of the file name. If this syntax is used we retain it as the name and retag it after load. Fix #801 Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Infix Extensions to Klish
Tailor klish and klish-plugin-sysrepo to suit Infix. The resulting
CLI is, in many respects, still very similar to Juniper's JunOS, since
that is also the primary inspiration for klish, with some additions and
modifications.
Broadly speaking, the CLI is split up in two major modes:
- Admin/Exec: This is the default mode, where operational commands can be issued.
- Configure: Where a new candidate configuration is prepared.
Admin/Exec Mode
The following table lists the available commands:
| Command | Description | Hotkey |
|---|---|---|
configure |
Enter configuration mode | |
copy <src> <dst> |
Copy <src> to <dst> |
|
exit |
Exit | C-d |
logout |
Alias for exit |
|
shell |
Start system shell | |
show <item> |
Show various configuration and status |
Copy Command
copy <src> <dst>
Where <src> is one of:
factory-configstartup-configrunning-config
And <dst> is one of:
startup-configrunning-config
Show Command
show <item>
The following table lists the available items:
| Item | Description |
|---|---|
running-config |
Show the active system configuration |
Configure
The following table lists the available commands:
| Command | Description | Hotkey |
|---|---|---|
abort |
Abandon candidate | C-d |
check |
Validate candidate | |
commit |
Commit current candidate to running-config | |
delete |
Delete configuration setting(s) | |
diff |
Summarize uncommitted changes | |
do |
Execute operational mode command | |
edit |
Descend to the specified configuration node | |
exit |
Ascend to the parent configuration node, or abort (from top) | |
leave |
Finalize candidate and apply to running-config | C-z |
no |
Alias for delete | |
rollback |
Restore candidate to running-config | |
set |
Set configuration setting | |
show |
Show configuration | |
top |
Ascend to the configuration root | |
up |
Ascend to the parent configuration node | C-c |