I have started exploring TextFSM by google, its great for screen scraping. But I'm stuck. Here is the template for the command: "show ip community-list"
Value TYPE (Standard|Extended)
Value CLNAME (\D+)
Value SEQ (\d+)
Value ACTION (permit|deny)
Value ASNUM (\d+)
Value TAGNUM (\d+)
Start
^${TYPE}\s+Community\s+List\s+${CLNAME}\s+ -> Community
Community
^\s+${SEQ}\s+${ACTION}\s+${ASNUM}\s+:\s+${TAGNUM}\s+ -> Record Start
Raw output looks like:
Expanded Community List ROUTES_CL1
1 permit "11111:10000"
Standard Community List ROUTES_CL2
1 permit 11111:10000
2 permit 22222:10000
3 permit 33333:10000
somereason doesn't parse into key and values.
There are several things which need to be fixed:
Using this template:
Will give the parsed output of:
A similar example with further explanation can be found on the textfsm wiki.