I have some cisco config files in the folder. I wrote the for loop to iterate thru each config files and find vlan1 ports as follows. I check the permissions and security for the folder, files for all the config files and they're the same. Ironically, CiscoConfParse can open, read, and produced results for some config files, but not others. if I removed the config file that it cannot open, then it produced the result as expected. When I put that config file back into the same folder, then it could not open and gave the [FATAL] filenotfound error. I researched online and found some suggested solutions such as performing chkdsk /f /r and then sfc /scannow to scan and repair the corrupted files. I did all that but the issue still persists. I hope someone has solved this issue before and help. Thank you
import os
import re
import csv
from ciscoconfparse import CiscoConfParse
def check_vlan1_ports():
configs = (r'C:\Documents\Tutorials\Python\Scripts\NetworkAudit\Data')
with open (r'c:\documents\result.csv', 'a', newline='') as csv_file:
Header = ['Device', 'Rule', 'Exception', 'Status', 'Code', 'Severity', 'Reason']
writer = csv.DictWriter(csv_file, fieldnames=Header)
writer.writeheader()
for config in os.listdir(configs):
if config.endswith(".txt"):
filename = os.path.split(config)
#print(filename[1])
parse = CiscoConfParse(config)
vlan1 = parse.find_objects(r"^1\s+default.*")
str_vlan1 = str(vlan1)
#print(filename, vlan1)
vlan1_ports = re.findall(r'(Gi\d{1,3}\/\d{1,3})|(Fa\d{1,3}\/\d{1,3})', str_vlan1)
if (vlan1_ports):
with open (r'c:\documents\result.csv', 'a', newline='') as \
csv_file:
writer = csv.DictWriter(csv_file, fieldnames=Header)
writer.writerow({'Device':filename[1], 'Rule': 1, 'Exception': \
'Check Vlan1 ports', \
'Status': 'Failed', 'Code': '1', 'Severity': 'High', \
'Reason': vlan1_ports})
else:
with open (r'c:\documents\result.csv', 'a', newline='') as csv_file:
writer = csv.DictWriter(csv_file, fieldnames=Header)
writer.writerow({'Device':filename[1], 'Rule': 1, 'Exception': \
Check Vlan1 ports', \
'Status': 'Pass', 'Code': '1', 'Severity': 'High', \
'Reason': 'No ports in vlan1'})
check_vlan1_ports()
This problem was also reported as Github issue #204. The problem could not be reproduced. Note: before ciscoconfparse version 1.6.0, there was no config encoding parameter. Explicit encoding was added in ciscoconfparse version 1.6.0