轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像
交易
充值流量¥7起我的订单
文档
工具
提交工单页面收录
virlconfig

davidbetz/virlconfig

davidbetz

Cisco VIRL Config Creator for SSH enablement, Ansible, and SecureCRT.

下载次数: 0状态:社区镜像维护者:davidbetz仓库类型:镜像最近更新:6 年前
让 AI 帮你使用轩辕镜像? · 展开查看说明 · 点击收起说明

如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这句话即可:

请先完整阅读并严格遵守以下文档中的全部规则与要求:

https://xuanyuan.cloud/agents.md

在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。

查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

镜像简介
下载命令
镜像标签列表与下载命令
轩辕镜像,让镜像更快,让人生更轻。
点击查看

Cisco VIRL Config Creator

Copyright © 2019 David Betz

https://img.shields.io/github/license/mashape/apistatus.svg]() https://travis-ci.org/davidbetz/virlconfig.svg?branch=master](https://travis-ci.org/davidbetz/virlconfig) https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg]([***]

Why do you want this?

  • You want to console to each VIRL device.
  • You want to use Ansible with VIRL devices.

How do you use it?

Download the binary and skim below instructions.

One of the core purposes of using Go is to avoid the needs to install a library and download the source. You can use the binary directly.

  • https://raw.githubusercontent.com/davidbetz/virlconfig-binary/master/virlconfig

  • https://raw.githubusercontent.com/davidbetz/virlconfig-binary/master/virlconfig.exe

  • Docker: docker run davidbetz/virlconfig

For Docker, it's more practical to use the docker-compose.yml file.

Modes

There are a few modes:

  • shows node, interface, and telnet data for each device (config)
  • creates a SecureCRT VBS script to connect to each device via telnet (securecrt)
  • creates Linux and CLI config required to enable SSH on each device (ssh)
  • creates an Ansible inventory file for a simulation (ansible)
  • creates RESTCONF and SSH tunneling config (restconf)
  • provides unified RESTCONF and SSH config for CSR1000v (csr1000v)

Sample usage:

./virlconfig -host 10.10.20.160 -alias -writeToFiles -mode ansible -path '/home/user/ansible-cisco/multicast-mpls'

Use Cases

This tool will create the SecureCRT for you so you can connect to each device, create SSH config so you can enable SSH on each device, and create an Ansible inventory file which will let you interact with the devices with Ansible.

Use Case: I just want consoles to the devices.

Use securecrt. This will give you the VBS file you can open in SecureCRT. You should just keep a single VBS file around and update the contents of Setup. See the following output:

' two-GXx69L.vbs
Sub Main()
    Setup "10.10.20.160"
End Sub

Sub Setup(address)
    StartInNewTab address, "csr1000v-1", ***
    StartInNewTab address, "csr1000v-2", ***
End Sub

Sub StartInNewTab(address, name, port)
    Set tab = crt.Session.ConnectInTab("/telnet " & address & " " & port)
    tab.Caption = name
End Sub

Use Script->Run in SecureCRT to open a console to each node.

Use -alias for simpler names:

' two-GXx69L.vbs
Sub Main()
    Setup "10.10.20.160"
End Sub

Sub Setup(address)
    StartInNewTab address, "r1", ***
    StartInNewTab address, "r2", ***
End Sub

Sub StartInNewTab(address, name, port)
    Set tab = crt.Session.ConnectInTab("/telnet " & address & " " & port)
    tab.Caption = name
End Sub

Use -writeToFiles to create the SecureCRT vbs file automatically. It will be in the same folder as virlconfig.

Use Case: I want to use RESTCONF to interact with CSR1000v devices.

To use RESTCONF on a device, you enable restconf, the HTTP server, and enable AAA for exec and for HTTP. Basically this:

conf t
aaa new-model
aaa authorization exec default local
restconf
ip http authentication local
ip http secure-server
end

You'll add that to each device.

You can use the SecureCRT mode to quickly connect to all devices at once.

OPTIONAL: typing a password once isn't a big deal, so copying an SSH key seems a big overkil, but you can do it:

sshpass -p guest ssh-copy-id guest@JUMPBOXIP

With that you can get on your jumpbox and run your HTTP calls:

curl -k -u "cisco:cisco" -H "Accept: application/yang-data+json, application/yang-data.errors+json" [***]

Done.

You can access the jumpbox with ssh guest@JUMPBOXIP. That IP address is provided when the tool is run with restconf mode.

Of course, being stuck on a jumpbox sucks, so let's continue: for each device, add a LocalFoward line to your ~/.ssh/config file. This will allow you to call locally (127.0.0.1) with your calls magically going out to the RESTCONF-enabled device.

Your ~/.ssh/config file would look something like this:

Host 172.16.30.70
User guest
LocalForward 20093 10.255.0.93:443
LocalForward 20095 10.255.0.95:443
LocalForward 20096 10.255.0.96:443
LocalForward 20097 10.255.0.97:443
LocalForward 20098 10.255.0.98:443
LocalForward 20099 10.255.0.99:443
LocalForward 20100 10.255.0.100:443
LocalForward 20101 10.255.0.101:443
LocalForward 20102 10.255.0.102:443
LocalForward 20094 10.255.0.94:443

You then you setup an SSH tunnel in a separate window:

ssh -N JUMPBOX_IP

Now you can interact using something like this (notice the address and port change):

curl -k -u "cisco:cisco" -H "Accept: application/yang-data+json, application/yang-data.errors+json" [***]

All of this information is provided when you run virlconfig in restconf mode.

Here's example output:

# ~/.ssh/config
cat >> ~/.ssh/config <<\EOF
Host 172.16.30.71
User guest
LocalForward 20104 10.255.0.104:443
LocalForward 20106 10.255.0.106:443
LocalForward 20107 10.255.0.107:443
LocalForward 20108 10.255.0.108:443
LocalForward 20109 10.255.0.109:443
LocalForward 20110 10.255.0.110:443
LocalForward 20111 10.255.0.111:443
LocalForward 20112 10.255.0.112:443
LocalForward 20113 10.255.0.113:443
LocalForward 20105 10.255.0.105:443
EOF

# Setup Jump Box
sshpass -p guest ssh-copy-id guest@172.16.30.71

# SSH Tunnel
ssh -N 172.16.30.71

# Enable RESTCONF on CSR1000v
! CSR100v
conf t
aaa new-model
aaa authorization exec default local
restconf
ip http authentication local
ip http secure-server
end

Just dump the config in, add the ~/.ssh/config content, and run the ssh command.

Be careful not to overwrite the ~/.ssh/config file. You might have other important things in there. The script provides appends to the config file, so you may need to remove old entries.

Use Case: I want to interact with the nodes with Ansible.

For this use case, you can start with https://github.com/davidbetz/virlconfig-ansible-sample as a template project.

Ansible uses SSH. To setup SSH, you need a console. So, you'll be using securecrt, ssh, and ansible. This seems like a bit much, but after you do it a few times, it's no big deal.

  1. follow the instructions in the SecureCRT use case to connect to each device

  2. use ssh. Output similar to the following will appear:

     == Devices ==
    
     ! CSR1000v (only one config for device type)
     en
     conf t
     ip domain-name ciscolab
     *** key generate rsa
     1024
     ip ssh version 2
     username cisco priv 15 secret cisco
     line vty 0 15
     transport input ssh
     login local
     end
    
     ! iosvl2-1 (one config per device)
     en
     conf t
     ip domain-name ciscolab
     *** key generate rsa
     1024
     ip ssh version 2
     username cisco priv 15 secret cisco
     line vty 0 15
     transport input ssh
     login local
     int g0/0
     no switchport
     ip address 10.255.0.201 255.255.0.0
     no shut
     end
    
     ! iosxrv-1 (config per device)
     *** key generate rsa general-keys
     2048
     conf t
     ssh server v2
     line default transport input ssh
     interface MgmtEth0/0/CPU0/0
     ipv4 address 10.255.0.202/16
     no shut
     commit
     end
    
     ! iosxrv-2 (config per device)
     *** key generate rsa general-keys
     2048
     conf t
     ssh server v2
     line default transport input ssh
     interface MgmtEth0/0/CPU0/0
     ipv4 address 10.255.0.203/16
     no shut
     commit
     end
    
     ! nx-osv-1 (config per device)
     ! username: admin
     ! password: admin
     conf t
     int mgmt0
     ip address 10.255.0.204/16
     end
    
     ! nx-osv-2 (config per device)
     ! username: admin
     ! password: admin
     conf t
     int mgmt0
     ip address 10.255.0.205/16
     end
    
     ! nx-osv-3 (config per device)
     ! username: admin
     ! password: admin
     conf t
     int mgmt0
     ip address 10.255.0.206/16
     end
    
     ! nx-osv-4 (config per device)
     ! username: admin
     ! password: admin
     conf t
     int mgmt0
     ip address 10.255.0.207/16
     end
    
    
     # Jump Box
     sshpass -p guest ssh-copy-id guest@172.16.30.86
    

You can use the csr1000v mode to get a unified RESTCONF and SSH config.

2b) Dump the generated config into each device. For CSR1000v and IOSv, configuration is per device type. For XRv, since each config block includes an IP address, it's per dervice.

Timing can be an issue here. For CSR1000v, the device may not be renamed yet, so the SSH keys won't generate. XRv will likely require you to create a system user. Type something random.

2c) Run the jump box command. This will copy an ssh key to the jump box, clearing the way for Ansible to connect.

Example jump box command:

sshpass -p guest ssh-copy-id guest@172.16.30.71

3) Use ansible to generate the Ansible group vars and inventory file. Assuming you know Ansible, you know where to put the files.

Sample group_vars/all.yml:

---
ansible_user: "ansible"
ansible_password: "ansible"
ansible_ssh_common_args: '-o ProxyCommand "ssh -q -W %h:%p guest@172.16.30.79"'
interface: g2

Sample Ansible inventory file:

  {
    "all": {
      "children": {
       "csr1000v": {
         "hosts": {
           "csr1000v-1": {
             "ansible_host": "10.255.0.200"
           }
         }
       },
       "iosvl2": {
         "hosts": {
           "iosvl2-1": {
             "ansible_host": "10.255.0.201"
           }
         }
       },
       "iosxrv": {
         "hosts": {
           "iosxrv-1": {
             "ansible_host": "10.255.0.202"
           },
           "iosxrv-2": {
             "ansible_host": "10.255.0.203"
           }
         }
       },
       "nxosv": {
         "hosts": {
           "nx-osv-1": {
             "ansible_host": "10.255.0.204"
           },
           "nx-osv-2": {
             "ansible_host": "10.255.0.205"
           },
           "nx-osv-3": {
             "ansible_host": "10.255.0.206"
           },
           "nx-osv-4": {
             "ansible_host": "10.255.0.207"
           }
         }
       }
     }
    }
  }

Use -alias for simpler names (csr and l2 only):

"r1": {
  "ansible_host": "10.255.0.200"
}

and

"s1": {
  "ansible_host": "10.255.0.201"
}

Usage

-alias Default is false. When true, csr1000v- is replaced with r and iosvl2- with s -host string IP address of VIRL server. -mode string config, ansible, securecrt, ssh -sim string Name of simulation. Only required if there's more than one. -verbose Default is false. When true, HTTP data is displayed. -writeToFiles Default is false. When true, files are written out (securecrt only).

Docker Compose

Quickly runnable via:

    docker-compose up config
    docker-compose up ansible
    docker-compose up securecrt
    docker-compose up ssh

...or via code:

    docker-compose up config-local
    docker-compose up ansible-local
    docker-compose up securecrt-local
    docker-compose up ssh-local
    docker-compose up test

See Docker docs to install docker-compose: https://docs.docker.com/compose/install/

Makefile

If you want to install Go, you can also use the Makefile:

    make run ARGS
    make clean
    make test
    make coverage
    make linux
    make windows

make linux and make windows build static binaries.

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 virlconfig 镜像标签

docker pull docker.xuanyuan.run/davidbetz/virlconfig:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull davidbetz/virlconfig:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

一键安装

一键安装 Docker

Linux Docker 一键安装

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Apple Container

macOS 原生容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

Unraid

Unraid NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

爱快 4.0 · iKuai 镜像加速

宝塔面板

一键配置镜像源

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

功能

版本功能对比

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

专属域名用法

专属域名 · 开启停用 · 多仓库

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 专业版 · 企业版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

账号

失败是否计费

manifest · blob · 计费

申请开发票(企业 / 个人)

企业 · 个人 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
davidbetz/virlconfig
定价查看流量套餐与价格
博客Docker 镜像公告与技术博客
专业版 · 高速稳定拉取镜像
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
50GB 仅 ¥7/年
专业版 · 高速稳定拉取镜像
50GB 仅 ¥7/年
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
用户协议·隐私政策·增值电信业务经营许可证:浙B2-20261007·©2024-2026 源码跳动©2024-2026 杭州源码跳动科技有限公司·商务合作:点击复制邮箱

更多 virlconfig 镜像推荐

davidbetz/recursivecall-go logo

davidbetz/recursivecall-go

davidbetz
这是一个简单的API镜像,会调用自身的另一个实例,主要用于演示Docker和Kubernetes的编排功能。
1万+ 次下载
7 年前更新

查看更多 virlconfig 相关镜像