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

Fix typos #29

Merged
merged 1 commit into from
Jul 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
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
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