Skip to content

Commit b3534f5

Browse files
authored
Cryptomap converter: documentation improvements
1 parent e53a3f0 commit b3534f5

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

asa_cryptomap_converter/README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ A tool to import cryptomap-based site-to-site VPN tunnel entries from an ASA con
55

66
# Important notes
77

8-
* The script will only import VPN tunnel configuration as third-party VPN peers, not firewalling rules.
8+
* The script will only import VPN tunnel configuration as third-party VPN peers, not firewalling rules
99
* The script has been built as a MVP to convert a very specific ASA 9.8(4)20 configuration. Using it with other configurations may require modification of the script
10+
* The script consists of two files, **cryptomap_converter.py** and **asa_config_parser_module.py**, which need to be in the same folder for the script to run. The one you run to initiate the script is **cryptomap_converter.py**
1011

1112
# Prerequisites
1213

@@ -22,12 +23,12 @@ A tool to import cryptomap-based site-to-site VPN tunnel entries from an ASA con
2223

2324
Script syntax, Windows:
2425
```
25-
python asa_cryptomap_converter.py [-k <api_key>] [-o <org_name>] [-f <file_name>] [-t <tag>]
26+
python cryptomap_converter.py [-k <api_key>] [-o <org_name>] [-f <file_name>] [-t <tag>]
2627
```
2728

2829
Script syntax, Linux and Mac:
2930
```
30-
python3 asa_cryptomap_converter.py [-k <api_key>] [-o <org_name>] [-f <file_name>] [-t <tag>]
31+
python3 cryptomap_converter.py [-k <api_key>] [-o <org_name>] [-f <file_name>] [-t <tag>]
3132
```
3233

3334
Optional arguments:
@@ -39,5 +40,5 @@ Optional arguments:
3940
Example, convert configuration stored in file "asa.cfg" into organization with name "Big Industries Inc" and
4041
make it available to MXs in networks tagged "asa-vpn":
4142
```
42-
python asa_cryptomap_converter.py -k 1234 -o "Big Industries Inc" -t asa-vpn
43+
python cryptomap_converter.py -k 1234 -o "Big Industries Inc" -t asa-vpn
4344
```

asa_cryptomap_converter/cryptomap_converter.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
* Then run the script using the syntax below:
1111
1212
Windows:
13-
python asa_cryptomap_converter.py [-k <api_key>] [-o <org_name>] [-f <file_name>] [-t <tag>]
13+
python cryptomap_converter.py [-k <api_key>] [-o <org_name>] [-f <file_name>] [-t <tag>]
1414
1515
Linux and Mac:
16-
python3 asa_cryptomap_converter.py [-k <api_key>] [-o <org_name>] [-f <file_name>] [-t <tag>]
16+
python3 cryptomap_converter.py [-k <api_key>] [-o <org_name>] [-f <file_name>] [-t <tag>]
1717
1818
Optional arguments:
1919
-k <api_key> Your Meraki Dashboard API key. If omitted, the script will try to use one stored in
@@ -27,7 +27,7 @@
2727
2828
Example, convert configuration stored in file "asa.cfg" into organization with name "Big Industries Inc" and
2929
make it available to MXs in networks tagged "asa-vpn"
30-
python asa_cryptomap_converter.py -k 1234 -o "Big Industries Inc" -t asa-vpn
30+
python cryptomap_converter.py -k 1234 -o "Big Industries Inc" -t asa-vpn
3131
3232
Required Python 3 modules:
3333
requests

0 commit comments

Comments
 (0)