summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-01-04Cosmetic () for print instruction.Guillaume Mazoyer
2014-12-23Release 1.1.0.looking-glass-1.1.0Guillaume Mazoyer
2014-12-19Update jquery to 2.1.3.Guillaume Mazoyer
2014-12-18Option to configure the header's link.Guillaume Mazoyer
Use $config['frontpage']['header_link'] to give a link to be used when the header is clicked. The default value is null and means that no link will be used.
2014-12-13Option to hide commands.Guillaume Mazoyer
Set $config\['output'\]\['show_command'\] to true or false to show or hide the command in the output. Also fix ping/traceroute without FQDN on BIRD, Quagga and Cisco.
2014-12-13Not sure why I removed 'ipv6'.Guillaume Mazoyer
2014-12-13Fix for Cisco routers, no source for traceroute in IPv6, really?Guillaume Mazoyer
2014-12-13Typo fix.Guillaume Mazoyer
2014-12-13Fix traceroute for Cisco when using 'source'.Guillaume Mazoyer
On Cisco, when using traceroute 'source' option with a FQDN, you need to explicitly specify if you want an IPv4 or an IPv6 traceroute. To fix this we try to resolve the given FQDN and then pass the IPv4 or IPv6 address instead of the FQDN Also make sure that the FQDN is used in the issued command. Do not use the resolved IP anymore.
2014-12-12Improve 'source-interface-id' option.Guillaume Mazoyer
On software router, an IPv4 and IPv6 addresses need to be specified. Not specifying one of them or both will result in the router trying to use the best address to contact the destination. This fix the bug where software routers could not ping or traceroute IPv6 destination with only a IPv4 source address (obviously).
2014-12-10Add option to specify an interface or an address for routers.Guillaume Mazoyer
The interface is used on routers to source ping and traceroute. On software routers, an address is required instead of the interface.
2014-12-10Update phpseclib to 0.3.9.Guillaume Mazoyer
2014-12-10Release 1.0.0.looking-glass-1.0.0Guillaume Mazoyer
2014-12-09First shot to configuration documentation.Guillaume Mazoyer
2014-12-08Update bootstrap to 3.3.1.Guillaume Mazoyer
2014-12-08Define more default values.Guillaume Mazoyer
Some can be set to 'null' to avoid displaying some info.
2014-11-17Code format. Always use () for functions.Guillaume Mazoyer
2014-11-04Add Juniper JunOS documentationGuillaume Mazoyer
Must be improved with user restricted to specific commands.
2014-10-31Fix loading of Bootstrap JS.Guillaume Mazoyer
2014-10-30Update Boostrap to 3.3.0.Guillaume Mazoyer
2014-10-10Handle apache2 version >= 2.4 and <= 2.4.Guillaume Mazoyer
2014-09-25Start documentation for the configuration options.Guillaume Mazoyer
2014-09-25Add documentation section in README.md.Guillaume Mazoyer
2014-09-24Log format can be configured.Guillaume Mazoyer
The format for each log can be configured with the configuration option defined by $config['logs']['format']. %D is for the time, %R is for the requester IP address, %H is for the host on which the command has been executed and %C is for the command. Warning! The configuration option to choose the logs file has been moved from $config['misc']['logs'] to $config['logs']['file'].
2014-09-24Externalize output formatter to a dedicated function.Guillaume Mazoyer
The dedicated function 'format_output(command, output)' can be redefined by router and can be used to format the output according to what is inside. In this way, the output can be formatted differently according to the router type and the command.
2014-09-10Merge pull request #12 from bcollet/masterGuillaume Mazoyer
Fixing show route AS behaviour on Juniper platforms.
2014-09-10Fixing show route AS behaviour on Juniper platformsBenjamin Collet
2014-09-08Remove useless condition.Guillaume Mazoyer
2014-09-08Improve output filters.Guillaume Mazoyer
Fix filters that could lead to filtered HTML output. Do not remove empty lines anymore, except for the last line. Do not try to loop over each line of the output if no filter are defined.
2014-09-03Parameter needs to be given.Guillaume Mazoyer
2014-09-03Add config to disallow the use of private and reserved IP ranges.Guillaume Mazoyer
2014-08-29Real fix for doc update when page has been reset.Guillaume Mazoyer
2014-08-29Revert "Fix help dialog not displaying proper text after clicking on the ↵Guillaume Mazoyer
reset button." This reverts commit 5d0e0cd50373d02aaf6e9f0289ade1f1a22fbe5f. Another fix must be found.
2014-08-29Fix help dialog not displaying proper text after clicking on the reset button.Guillaume Mazoyer
2014-08-29Remove useless checks for variables that should always be defined.Guillaume Mazoyer
2014-08-26Remove command in label to use kbd (not a proper use of label).Guillaume Mazoyer
2014-08-13Tiny change, pass as parameter of the constructor.Guillaume Mazoyer
2014-08-10Fix typo.Guillaume Mazoyer
2014-08-10Add ability to use another Bootstrap theme.Guillaume Mazoyer
2014-08-10Add config option to enable/disable the bootstrap theme.Guillaume Mazoyer
2014-08-07Tiny changes on BIRD doc.Guillaume Mazoyer
2014-08-06More code documentation.Guillaume Mazoyer
2014-08-06Merge pull request #11 from rboissat/masterGuillaume Mazoyer
Fixing quagga instructions.
2014-08-06fixing quagga instructionsRomain Boissat rboissat
2014-08-06Don't forget to add 'lg' in the 'bird' group.Guillaume Mazoyer
2014-08-06Add documentation for BIRD.Guillaume Mazoyer
2014-08-06Start some functions documentation.Guillaume Mazoyer
2014-08-06Add ping/traceroute for FQDN on BIRD and Quagga.Guillaume Mazoyer
Basically this can work with all Linux boxes. It gets A and AAAA records from DNS and decide if it can uses IPv6 or IPv4 to ping or to traceroute. IPv6 is always preferred of course.
2014-08-06Reminder of the command in the help modal.Guillaume Mazoyer
2014-08-06Merge pull request #10 from rboissat/masterGuillaume Mazoyer
Fixing FQDN input for Cisco.