ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

CLI框架:klish安装与使用

2022-08-08 21:03:20  阅读:487  来源: 互联网

标签:bin autogen CLI 框架 clish klish configure


在通信设备领域,思科的路由器设备可以用CLI进行操作。这里介绍的开源项目klish是思科CLI风格(CISCO-like CLI)的框架。命令配置文件为xml格式。

源码:pkun/klish: The klish is a framework for implementing a CISCO-like CLI on a UNIX systems. It is configurable by XML files. - libcode

环境

Ubuntu 20.04.2 LTS

编译

版本:klish 2.2

//1. 运行autogen.sh生成configure文件
klish# ls
autogen.sh  
klish# ./autogen.sh
Makefile.am: installing 'aux_scripts/depcomp'
autoreconf: Leaving directory `.'

生成configure文件
klish# ls
autogen.sh  
configure  

//2. 运行configure生成Makefile文件
klish# ./configure
config.status: executing libtool commands
config.status: executing depfiles commands

生成makefile文件
klish# ls
autogen.sh 
configure 
Makefile

//3. make编译
klish# make
make[1]: Leaving directory '/workspace/klish'

//4. make install安装
klish# make install
Libraries have been installed in:
   /usr/local/lib

 /bin/mkdir -p '/usr/local/bin'
  /bin/bash ./libtool   --mode=install /usr/bin/install -c bin/clish bin/konfd bin/konf bin/sigexec '/usr/local/bin'

运行

klish-2.2# CLISH_PATH=xml-examples/klish/etc/clish bin/clish

> show
Syntax error: Unknown command

klish-2.2# CLISH_PATH=xml-examples/klish/etc/clish-enable bin/clish

# 
  !           Comments
  configure   Enter configuration mode
  copy        Copy from one file to another
  disable     Turn off privileged commands
  exit        Exit from the CLI
  ping        Send messages to network hosts
  reboot      Halt and perform a cold restart
  show        Show running system information
  traceroute  Print the route packets trace to network host

# configure terminal 
(config)# 
  !          Comments
  do         To run exec commands in config mode
  exit       Exit from configure mode
  hostname   Set system's network name
  interface  Select an interface to configure
  ip         Global IP configuration subcommands
  no         Negate a command or set its defaults

(config)# ip route 172.0.11.2/24 172.0.11.1 
/tmp/klish.fifo.9205.MfgOB7: 6: /tmp/klish.fifo.9205.MfgOB7: ip: not found

标签:bin,autogen,CLI,框架,clish,klish,configure
来源: https://www.cnblogs.com/liqinglucky/p/16563379.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有