Results 108 comments of Flávio J. Saraiva

After analyzing a packet capture of the ethernet link there are [CDP](http://wiki.wireshark.org/CDP) packets sent every 62 seconds (with 180 timeout) and [LOOP](http://wiki.wireshark.org/Loop) packets sent every 10 seconds. Playing around with...

Yes, a real ethernet card detects link up/down from the physical state. But I'm not sure how it informs the software driver of the change in status. =~~ Indeed we...

Yes, as you point out, it's not completely reliable in any scenario. That's why I was thinking of leaving it off by default (configurable in each nio). In my view...

Related topic: http://forum.gns3.net/topic9324.html

Looking at a random video about the `show version`command, it is clear from the `ROM:` line that our microcode didn't come from a real router. It also suggests that we...

I don't know how any of the microcodes should be compiled, so this is the general plan: 1. Choose possible cross compiler tuples and build the cross compilers (with crosstools-ng...

Disassembled ppc32_microcode. There is circumstantial evidence that the original was not an assembly file: (at least not totally) - consistent stack handling - variable args in the `fprintf`-like function -...

Thanks, I also found that one. :wink: Unfortunately it's a dump of a disassembly effort and not compilable source code, so it just helped me confirm the microcode isn't copied...

Work on this issue will be placed in this repository: https://github.com/flaviojs/dynamips-microcode

This library (or any conformant [PEG](https://en.wikipedia.org/wiki/Parsing_expression_grammar#Operational_interpretation_of_parsing_expressions) library) has a greedy `expression *` with no backtracking (can't go back 1 match), so if you want to stop earlier you will have...