diff --git a/drawings/cisco_ftd/.$Rules.drawio.bkp b/drawings/cisco_ftd/.$Rules.drawio.bkp index 9164399..31f04a6 100644 --- a/drawings/cisco_ftd/.$Rules.drawio.bkp +++ b/drawings/cisco_ftd/.$Rules.drawio.bkp @@ -1,6 +1,6 @@ - + - + @@ -16,9 +16,6 @@ - - - @@ -280,39 +277,368 @@ - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/drawings/cisco_ftd/.$Rules.drawio.dtmp b/drawings/cisco_ftd/.$Rules.drawio.dtmp deleted file mode 100644 index 59b3605..0000000 --- a/drawings/cisco_ftd/.$Rules.drawio.dtmp +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/drawings/cisco_ftd/Rules.drawio b/drawings/cisco_ftd/Rules.drawio index c213380..12c9dc0 100644 --- a/drawings/cisco_ftd/Rules.drawio +++ b/drawings/cisco_ftd/Rules.drawio @@ -1,6 +1,6 @@ - + - + @@ -277,39 +277,368 @@ - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/drawings/cisco_ftd/ftd_rules.puml b/drawings/cisco_ftd/ftd_rules.puml new file mode 100644 index 0000000..9dc7482 --- /dev/null +++ b/drawings/cisco_ftd/ftd_rules.puml @@ -0,0 +1,74 @@ +@startuml +package time_range { + +} +package eff_start_dt { + +} +package eff_end_dt { + +} +package start_time { + +} +package end_time { + +} +package days { + +} +package source_networks { + +} +package destination_zones { + +} + +package source_zones { + +} +package source_ise_metadata { + +} +package action { + +} +package position { + +} + +package name { +} + + +map CiscoFTDRule { + name *-> name + position *-> position + action *-> action + source_ise_metadata *-> source_ise_metadata + source_zones *-> source_zones + destination_zones *-> destination_zones + source_networks *-> source_networks + destination_networks => + source_ports => + destination_ports => + application => + username => + urls => + dc => + beginning => + end => + files => + safe_search => + rule_hits => + variable_set => + time_range *-> time_range + eff_start_dt *-> eff_start_dt + eff_end_dt *-> eff_end_dt + start_time *-> start_time + end_time *-> end_time + days *-> days +} + + +@enduml \ No newline at end of file diff --git a/golang/pointers/main.go b/golang/pointers/main.go new file mode 100644 index 0000000..2cfc7c1 --- /dev/null +++ b/golang/pointers/main.go @@ -0,0 +1,9 @@ +package main + +import "fmt" + +func main() { + testString := "Hello" + pointerToTestString := &testString + fmt.Println(pointerToTestString) +}