diff --git a/tldr/cisco-ios/interface b/tldr/cisco-ios/interface new file mode 100644 index 00000000..7c7ff823 --- /dev/null +++ b/tldr/cisco-ios/interface @@ -0,0 +1,18 @@ +--- +syntax: markdown +tags: [tldr, cisco-ios] +source: https://github.com/tldr-pages/tldr.git +--- +# interface + +> Manage interfaces. +> Accessed in configuration mode. +> More information: . + +- Configure a VLAN: + +`interface vlan {{1}}` + +- Set an interface to be active or inactive (this is run inside the interface command): + +`{{no shutdown|shutdown}}` diff --git a/tldr/cisco-ios/show b/tldr/cisco-ios/show index b4824379..82638841 100644 --- a/tldr/cisco-ios/show +++ b/tldr/cisco-ios/show @@ -10,20 +10,20 @@ source: https://github.com/tldr-pages/tldr.git - Show switch IP addresses: -`{{[s|show]}} ip interface brief` +`{{[sh|show]}} ip interface brief` - Show specific interface configuration: -`{{[s|show]}} ip interface {{vlan1}}` +`{{[sh|show]}} ip interface {{vlan1}}` - Show vlan configuration: -`{{[s|show]}} vlan` +`{{[sh|show]}} vlan` - Show currently running configuration: -`{{[s|show]}} running-config` +`{{[sh|show]}} running-config` - Show SSH configuration: -`{{[s|show]}} ip ssh` +`{{[sh|show]}} ip ssh` diff --git a/tldr/linux/fprintd b/tldr/linux/fprintd index ee09ec4b..a4286ff0 100644 --- a/tldr/linux/fprintd +++ b/tldr/linux/fprintd @@ -8,6 +8,18 @@ source: https://github.com/tldr-pages/tldr.git > Fingerprint management daemon. > More information: . -- Display the man page for `fprintd`: +- View documentation for listing enrolled fingerprints: -`man fprintd` +`tldr fprintd-list` + +- View documentation for enrolling new fingerprints: + +`tldr fprintd-enroll` + +- View documentation for verifying a fingerprint against a database: + +`tldr fprintd-verify` + +- View documentation for deleteting fingerprints from a database: + +`tldr fprintd-delete` diff --git a/tldr/linux/qm-snapshot b/tldr/linux/qm-snapshot index c198c3f1..d985ab5b 100644 --- a/tldr/linux/qm-snapshot +++ b/tldr/linux/qm-snapshot @@ -8,7 +8,7 @@ source: https://github.com/tldr-pages/tldr.git > Create virtual machine snapshots. > More information: . -- Create a snapshot of a specific virtual machine: +- Create a snapshot of a specific virtual machine (name must start with a letter): `qm {{[sn|snapshot]}} {{vm_id}} {{snapshot_name}}` @@ -19,3 +19,11 @@ source: https://github.com/tldr-pages/tldr.git - Create a snapshot including the vmstate: `qm {{[sn|snapshot]}} {{vm_id}} {{snapshot_name}} --description {{description}} --vmstate 1` + +- List snapshots of a VM: + +`qm {{[lists|listsnapshot]}} {{100}}` + +- Rollback the state of a specific VM to a specified snapshot: + +`qm {{[ro|rollback]}} {{vm_id}} {{snap_name}}`