-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #480 from cisco/release_1.8.0
Release 1.8.0
- Loading branch information
Showing
77 changed files
with
2,198 additions
and
670 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ Gemfile.lock | |
*~ | ||
*.swp | ||
hosts.cfg | ||
vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# Manifest to demo cisco_acl providers | ||
# | ||
# Copyright (c) 2017 Cisco and/or its affiliates. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
class ciscopuppet::cisco::demo_object_group { | ||
|
||
cisco_object_group { 'ipv4 address my_addr1': | ||
ensure => 'present', | ||
} | ||
|
||
cisco_object_group_entry { 'ipv4 address my_addr1 10': | ||
ensure => 'present', | ||
address => '1.2.3.4 2.3.4.5', | ||
} | ||
|
||
cisco_object_group_entry { 'ipv4 address my_addr1 20': | ||
ensure => 'present', | ||
address => '3.3.3.3/24', | ||
} | ||
|
||
cisco_object_group_entry { 'ipv4 address my_addr1 30': | ||
ensure => 'present', | ||
address => 'host 4.4.4.4', | ||
} | ||
|
||
cisco_object_group { 'ipv6 address my_addr2': | ||
ensure => 'present' | ||
} | ||
|
||
cisco_object_group_entry { 'ipv6 address my_addr2 20': | ||
ensure => 'present', | ||
address => '2000::1/64', | ||
} | ||
|
||
cisco_object_group_entry { 'ipv6 address my_addr2 30': | ||
ensure => 'present', | ||
address => 'host 2001::10', | ||
} | ||
|
||
cisco_object_group { 'ipv4 port my_port': | ||
ensure => 'present' | ||
} | ||
|
||
cisco_object_group_entry { 'ipv4 port my_port 20': | ||
ensure => 'present', | ||
port => 'range 100 200', | ||
} | ||
|
||
cisco_object_group_entry { 'ipv4 port my_port 30': | ||
ensure => 'present', | ||
port => 'neq 154', | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.