Skip to content

sample Cisco configuration

Nguyen Huu Bach edited this page Nov 4, 2020 · 1 revision

Sample configuration for Cisco router without login prompt:

  • Need to comment out the default-login-prompt in $RENAT_PATH/config/config.yml
    # default-login-prompt: "login: "
  • using the template for a GNS3 cisco. Note that there is no user-login in this case.
    cisco-gns3:
        access: telnet
        auth: plain-text
        profile: default
        prompt: ".*(#|>)"
        password-prompt: "Password: "
        init:
            - terminal length 0
        finish:
            - quit
  • define the IP of a GNS3 cisco
device:
    # cisco
    r3:
        type: cisco-gns3
        description: Cisco 37xx
        ip: 192.168.56.103
  • item that use a router called r3 which is a GNS3 cisco
# router, server setting
node:

    r3:
        device: r3
        snmp-polling: no
        follow-remote-log: no
Clone this wiki locally