Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ASA show run object network add fqdn #1752

Merged
merged 2 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Fix test cases
  • Loading branch information
jmcgill298 committed Jul 16, 2024
commit 01b30d18c9aa47ffafa6210c1e56b482cde9e41c
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
Value Required NAME (\S )
Value DESCRIPTION (. )
Value TYPE ([hostubnerag] )
Value TYPE (host|subnet|range|fqdn)
Value HOST (\S )
Value NETWORK (\S )
Value NETMASK (\S )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 24,4 @@ object network internal-ipv6-range
object network internal-ipv6-subnet
subnet fd00::/8
object network fqdn_test
fqdn google.com
fqdn google.com
Original file line number Diff line number Diff line change
@@ -1,6 1,7 @@
---
parsed_sample:
- description: ""
fqdn: ""
end_ip: ""
host: ""
name: "corp"
Expand All @@ -10,6 11,7 @@ parsed_sample:
start_ip: ""
type: "subnet"
- description: ""
fqdn: ""
end_ip: ""
host: ""
name: "internal"
Expand All @@ -19,15 21,7 @@ parsed_sample:
start_ip: ""
type: "subnet"
- description: ""
end_ip: ""
host: ""
name: "any"
netmask: "0.0.0.0"
network: "0.0.0.0"
prefix_length: ""
start_ip: ""
type: "subnet"
- description: ""
fqdn: ""
end_ip: ""
host: "10.10.11.1"
name: "host-10.10.11.1"
Expand All @@ -37,6 31,7 @@ parsed_sample:
start_ip: ""
type: "host"
- description: ""
fqdn: ""
end_ip: ""
host: "10.75.51.11"
name: "block"
Expand All @@ -46,6 41,7 @@ parsed_sample:
start_ip: ""
type: "host"
- description: "dmz GW ip"
fqdn: ""
end_ip: ""
host: "11.1.2.2"
name: "dmz"
Expand All @@ -55,6 51,7 @@ parsed_sample:
start_ip: ""
type: "host"
- description: ""
fqdn: ""
end_ip: ""
host: "10.1.11.8"
name: "server-vip"
Expand All @@ -64,6 61,7 @@ parsed_sample:
start_ip: ""
type: "host"
- description: ""
fqdn: ""
end_ip: "10.10.10.60"
host: ""
name: "visitors"
Expand All @@ -73,6 71,7 @@ parsed_sample:
start_ip: "10.10.10.4"
type: "range"
- description: ""
fqdn: ""
end_ip: "10.75.51.100"
host: ""
name: "contractor"
Expand All @@ -82,6 81,7 @@ parsed_sample:
start_ip: "10.75.51.15"
type: "range"
- description: ""
fqdn: ""
end_ip: ""
host: "2606:4700:4700::1111"
name: "cloudflare-ipv6-dns-primary"
Expand All @@ -91,6 91,7 @@ parsed_sample:
start_ip: ""
type: "host"
- description: ""
fqdn: ""
end_ip: ""
host: "2001:4860:4860::8888"
name: "google-ipv6-dns-primary"
Expand All @@ -100,6 101,7 @@ parsed_sample:
start_ip: ""
type: "host"
- description: ""
fqdn: ""
end_ip: "fd00::ffff"
host: ""
name: "internal-ipv6-range"
Expand All @@ -109,6 111,7 @@ parsed_sample:
start_ip: "fd00::"
type: "range"
- description: ""
fqdn: ""
end_ip: ""
host: ""
name: "internal-ipv6-subnet"
Expand All @@ -117,3 120,13 @@ parsed_sample:
prefix_length: "8"
start_ip: ""
type: "subnet"
- description: ""
fqdn: "google.com"
end_ip: ""
host: ""
name: "fqdn_test"
netmask: ""
network: ""
prefix_length: ""
start_ip: ""
type: "fqdn"
Loading