Skip to content

Commit

Permalink
Merge pull request #29 from networktocode/general-tidyup
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
rickdonato authored Jul 29, 2020
2 parents c16af53 + 7fd8191 commit b464356
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,10 @@ The reference flow file strucutre is shown below:
**Example:**

```
./acl_auditor/auditor.py -c compare -d data/asa.cfg -r data/flows.yml -a acl-inside
./acl_auditor/auditor.py -c compare -d data/asa.cfg -r data/flows.yml -a acl-webfarm
```



### Unreachable ACL Entries
The unreachable acl entry option takes the following inputs:
* device configuration (`-d`)
Expand All @@ -76,7 +75,7 @@ The unreachable acl entry option takes the following inputs:
### HTML Report
An HTML report can be generated with the results. However, this option can only be run when running the `-c all` (check all) option.
```
./acl_auditor/auditor.py -c all -d data/asa.cfg -r data/flows.yml -a acl-inside -o html
./acl_auditor/auditor.py -c all -d data/asa.cfg -r data/flows.yml -a acl-webfarm -o html
```
Once complete a HTML report will be saved within `./data`. Below shows an example:
![alt text](https://github.com/networktocode/batfish-acl-auditor/blob/master/data/report-example.png?raw=true)
Expand Down
2 changes: 1 addition & 1 deletion acl_auditor/auditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

class ACLAuditor:
def __init__(self, config_file):
bf_session.host = "127.0.0.1"
bf_session.host = "batfish"
load_questions()
self.config_file = config_file

Expand Down

0 comments on commit b464356

Please sign in to comment.