You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@
26
26
27
27
## Overview
28
28
29
-
The `cisco-cookbook` allows a network administrator to manage Cisco Network Elements using Chef. This cookbook bundles a set of Chef Resources, providers, Sample Recipes and installation Tools for effective network management. The resources and capabilities provided by this cookbook will grow with contributions from Cisco, Chef inc, and the open source community.
29
+
The `cisco-cookbook` allows a network administrator to manage Cisco Network Elements using Chef. This cookbook bundles a set of Chef Resources, providers, Sample Recipes and installation Tools for effective network management. The resources and capabilities provided by this cookbook will grow with contributions from Cisco, Chef Software Inc., and the open source community.
30
30
31
31
The Cisco Network Elements and Operating Systems managed by this cookbook are continuously expanding. Please refer to the [Limitations](#limitations) section for details on currently supported hardware and software. The Limitations section also provides details on compatible Chef client and Chef Server versions.
32
32
@@ -47,7 +47,7 @@ The set of supported network element platforms is continuously expanding. Please
47
47
The `cisco-cookbook` is installed on the Chef server. Please see [The Chef Server](https://docs.chef.io/server/) for information on Chef server setup. See Chef's [knife cookbook site](https://docs.chef.io/knife_cookbook_site.html) for general information on Chef cookbook installation.
48
48
49
49
#### Chef Client
50
-
The Chef Client (agent) requires installation and setup on each device. Agent setup can be performed as a manual process or it may be automated. For more information please see the [README-agent-install.md](docs/README-agent-install.md) document for detailed instructions on agent installation and configuration on Cisco Nexus devices.
50
+
The Chef Client (agent) requires installation and setup on each device. Agent setup can be performed as a manual process or it may be automated. For more information please see the [README-agent-install.md](docs/README-agent-install.md) document for detailed instructions on agent installation and configuration on Cisco Nexus devices.
51
51
52
52
##### Artifacts
53
53
@@ -71,7 +71,7 @@ The cisco-cookbook has dependencies on a few ruby gems. These gems are already i
71
71
Place a dependency on cisco-cookbook in your cookbook's metadata.rb
72
72
73
73
```ruby
74
-
depends 'cisco-cookbook', '~> 0.1'
74
+
depends 'cisco-cookbook', '~> 1.0'
75
75
```
76
76
77
77
See the recipes directory for example usage of cisco providers and resources.
@@ -137,7 +137,7 @@ The `cisco_command_config` resource allows raw configurations to be managed by c
137
137
* Order is important. Some dependent commands may fail if their associated `feature` configuration is not enabled first
138
138
* Indentation counts! It implies sub-mode configuration. Use the switch's running-config as a guide and do not indent configurations that are not normally indented. Do not use tabs to indent.
139
139
* Inline comments must be prefixed by ! or #
140
-
* Negating a submode will also remove configuratons under that submode, without having to specify every submode config statement: `no router ospf RED` removes all configuration under router ospf RED
140
+
* Negating a submode will also remove configurations under that submode, without having to specify every submode config statement: `no router ospf RED` removes all configuration under router ospf RED
141
141
* Syntax does not auto-complete: use `Ethernet1/1`, not `Eth1/1`
142
142
* If a CLI command is rejected during configuration, the resource will abort at that point and will not continue to issue any remaining CLI. For this reason it is recommended to limit the scope of each instance of this resource.
143
143
@@ -164,7 +164,7 @@ end
164
164
### cisco_interface
165
165
166
166
The `cisco_interface` resource is used to manage general configuration of all
167
-
interface types, including ethernet, port-channel, loopback, and SVI (Vlan).
167
+
interface types, including ethernet, port-channel, loopback, and SVI (vlan).
168
168
169
169
#### Examples
170
170
@@ -291,14 +291,14 @@ end
291
291
-`hello_interval` - The OSPF hello interval on this interface, in seconds.
292
292
Default value: `10`.
293
293
294
-
-`message_digest` - Enable or disable message-digest authentication on
295
-
on the interface. Available options are `true` and `false`. Default value:
296
-
`false`.
294
+
-`message_digest` - Enable or disable message-digest authentication on
295
+
on the interface. Available options are `true` and `false`. Default value:
Default value: `md5`, which is currently the only supported value.
300
300
301
-
-`message_digest_encryption_type` - Encryption type for the message digest
301
+
-`message_digest_encryption_type` - Encryption type for the message digest
302
302
password. Available options are `'cleartext'`, `'3des'`, and `'cisco_type_7'`.
303
303
Default value: `'cleartext'`.
304
304
@@ -425,7 +425,7 @@ end
425
425
426
426
The `cisco_package` resource is a subclass of the Chef `yum_package` resource.
427
427
Unlike `yum_package`, it will always install packages into the NX-OS native
428
-
environment, even if the Chef agent is running within Guestshell.
428
+
environment, even if the Chef agent is running within `guestshell`.
429
429
430
430
#### Examples
431
431
@@ -764,12 +764,12 @@ Minimum Requirements:
764
764
765
765
Contributions to cisco-cookbook are welcome and encouraged. Please follow this general workflow for new contributions. See [CONTRIBUTING.md](CONTRIBUTING.md) for more information.
766
766
767
-
1. Fork the cisco-cookbook repository on [Github](https://github.com/chef-partners/cisco-cookbook)
767
+
1. Fork the cisco-cookbook repository on [GitHub](https://github.com/cisco/cisco-network-chef-cookbook)
768
768
2. Create a named feature branch (like `add_component_x`)
0 commit comments