Background: I am pulling the connection table of a firewall in order to build a top talkers/listeners list.
In some cases, the connection table is 200,000+ entries. I am using telnetlib to remote to the firewall and grab the connection table. I use read_until to capture the data. However, when the table is larger than 40,000 entries it hangs. When I kill it, I see the following:
Traceback (most recent call last):
File "test2.py", line 152, in ?
main()
File "test2.py", line 120, in main
tmp_text = telnet.read_until(pager_text)
File "/usr/lib/python2.3/telnetlib.py", line 317, in read_until
self.process_rawq()
File "/usr/lib/python2.3/telnetlib.py", line 488, in process_rawq
self.cookedq = self.cookedq + buf[0]
KeyboardInterrupt
Am I hitting some sort of buffer? What would be a better way to obtain this data?
Thanks.