⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme

📁 对cisco路由器的命令模拟
💻
字号:
Cisco-Version## ----------------------------------------------------------------------------------------------## Cisco::Version#### Cisco "Show Version" parser.## Try to parse some useful info from the "show version" output like memory, software, flash, etc.#### $Id: README 75 2007-07-23 20:59:08Z mwallraf $## $Author: mwallraf $## $Date: 2007-07-23 22:59:08 +0200 (Mon, 23 Jul 2007) $#### This program is free software; you can redistribute it and/or## modify it under the same terms as Perl itself.## ----------------------------------------------------------------------------------------------NAMECisco::Version - Cisco 'show version' parserVERSIONversion 0.02INSTALLATIONTo install this module, run the following commands:    perl Makefile.PL    make    make test    make installSYNOPSIS	use Cisco::Version;	my $cv = new Cisco::Version($show_version);	$cv->parse();		print $cv->get_memory();	print $cv->get_software_version();	print $cv->get_chassis_type();	print $cv->get_uptime();		use Data::Dumper;	print &Dumper($cv->get_summary());		print $cv->get_not_found_value();	$cv->set_not_found_value("<NOT FOUND>");	etc.	DESCRIPTIONThis module is a parser for Cisco 'show version'.We try to parse as much useful information as possible from the 'show version' output :software version, chassis type, memory information, flash information, uptime etc.The 'show version' output may differ for each chassis type or software version so the parsed informationmay look different as well.SUPPORT AND DOCUMENTATIONAfter installing, you can find documentation for this module with the perldoc command.    perldoc Cisco::VersionYou can also look for information at:    Search CPAN        http://search.cpan.org/dist/Cisco-Version    CPAN Request Tracker:        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Cisco-Version    AnnoCPAN, annotated CPAN documentation:        http://annocpan.org/dist/Cisco-Version    CPAN Ratings:        http://cpanratings.perl.org/d/Cisco-VersionCOPYRIGHT AND LICENCECopyright (C) 2007 Maarten WallrafThis program is free software; you can redistribute it and/or modify itunder the same terms as Perl itself.CONTACTperl@2nms.com

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -