Questions tagged [cisco-ios]

Cisco IOS (Internetwork Operating System) is the name of the operating system that is run by virtually all enterprise-class Cisco switches and routers, as well as in certain other Cisco networking products.

Cisco IOS is an embedded operating system for Cisco networking products. It is found in nearly all of Cisco's enterprise-class switches and routers.

Cisco IOS is a monolithic-kernel OS with no GUI. It is designed to perform some of its functions in software, and to delegate others to specialized hardware. For example, routing and other protocols run as IOS processes and contribute to the Routing Information Base (RIB). The RIB is processed to generate the final IP forwarding table (FIB, Forwarding Information Base), which is used by the forwarding function of the router. However, in routers with hardware-based forwarding, such as the Cisco 12000 series, IOS computes the FIB in software and loads it into the forwarding hardware (such as an ASIC or network processor), which performs the actual packet forwarding function.

Cisco releases and supports several versions of the IOS software, roughly parallel to the stable/unstable/nightly versions of open source projects. Cisco calls these versions "trains," and it releases several of them. The mainline and T trains are the most common, and the rest are specialized for specific groups of customers.

  • The mainline train is designed to be the most stable release the company can offer, and its feature set never expands during its lifetime. Updates are released only to address bugs in the product.
  • The T is the Technology train, gets new features and bug fixes throughout its life, and is therefore potentially less stable than the mainline. The T train, once mature, becomes the basis for the next version of the mainline train.
  • The S is the Service Provider train, runs only on Cisco's core router products and is heavily customized for Service Provider customers.
  • The E is the Enterprise train, customized for implementation in enterprise environments.
  • The B is the broadband train, meant to support broadband features.
  • The X* trains (e.g. XA, XB) are a series of speciality trains and are not widely available.
238 questions
-1
votes
1 answer

CISCO PBX 2811 cannot make local calls

We recently moved our company far enough that we have a new area code. I've setup our network and PBX and everything seems to be working fine except the phones. I can dial long distance numbers (any number not within our new local area code). I…
Damon
  • 718
  • 2
  • 8
  • 22
-1
votes
1 answer

Clear "no switchport" command from cisco device interface

How can clear "no switchport" command from cisco devices interface?
ramin kazemi
  • 43
  • 1
  • 2
  • 10
-1
votes
1 answer

Ansible with cisco devices

I try to test my audit activity on cisco device by the following task; tasks: - name: 1.1.1 Enable 'aaa new-model' (Scored) ios_command: commands: show running-config | incl aaa new-model register: output1 - name: 1.1.1…
-1
votes
1 answer

First time configuring cisco router by myself Why can't I reach the internet?

I can ping from the router Google's DNS server at 8.8.8.8 and 8.8.4.4...I can reach all inside network devices attached in the 192.168.1.X range. Other than those few addresses, I can't reach outside of my router. I have pulled an IP from my ISP. I…
-1
votes
1 answer

How can i get password,ip ,enable password and port ssh from ip2.txt for my Cisco Backup script

How can i get password,ip ,enable password and port ssh from ip2.txt for my Cisco Backup script? Hello to everyone. I want to write a script for Cisco backup. The script will try to connect by ssh, and if it fails by telnet. All data for the…
-1
votes
1 answer

I need to get some information form the cisco device. It is cisco-ios-xe device

I have a CISCO device. The device is configured with the WebUI. Which have many details? But I am not able to get these following details from there. CPU Load Temperature Device details. Memory use Alarms I have tried many times to get those above…
Anshu
  • 1,277
  • 2
  • 13
  • 28
-1
votes
1 answer

Can Ansible replace Cisco Syslog IP address, while preserving the rest of the line?

I have over 2k devices under management. We are retiring the old syslog server, and have to point all the devices to the new syslog server IP address. The challenge is that some devices have different 'words' or 'functions' after the ip…
-1
votes
2 answers

Problem to connect ssh in a cisco device using netmiko

I am trying to connect into a cisco device using netmiko, but I am facing the error bellow: I tried to change my code but didnt work at all. from netmiko import ConnectHandler cisco ={ 'device_type': 'cisco_ios', 'ip': '…
JRH
  • 69
  • 3
  • 11
-1
votes
1 answer

Cisco IOS md5 check ansible module fails

Running ansible 2.6 This error happens when I try to run the command: verify /md5 flash:/{ios_file} This is the output of the command: TASK [IOS - MD5 CHECK - PASS1]…
Brian Koch
  • 11
  • 1
  • 5
-1
votes
1 answer

ntc-ansible "response" and "module_args" (how access?)

I am using the networktocode ntc-ansible module in Ansible to control Cisco IOS devices (switches currently). I successfully can use ntc_show_Command to get 'show version' and 'show ip int brief' and put the result into a local file. But when I…
-1
votes
1 answer

SSH connectivity issues with ntc-ansible modules

I am trying to using the ntc-ansible module with Ansible running on Ubuntu (WSL). I have ssh connectivity to my remote device (Cisco 2960X) and I can run ansible playbooks to the same remote switch using the built in Ansible networking modules…
-1
votes
1 answer

Script in batch Cisco

It is possible to create a script, which will copy and save configuration from Cisco device? I have already created this in a batch file: C:\putty.exe -ssh XX.XX.XX.XX -l XXXXXX -pw XXXXXX So I can successfully login to SW. But, if I write any…
-1
votes
2 answers

PacketTrace Default Gateway

I've set up the default gateway of the router I am configurating as serial2/0 as they call it on packet trace with the address of 172.16.68.1. When I try and ping the gateway from the pc with the address 172.16.16.1 I just get an error saying…
-1
votes
1 answer

Ansible-Playbook - Save output to a remote server

I'm new to all the Ansible stuff. So most of the time I'm in "Trial and Error"-Mode. Now I'm facing a challenge with a playbook and I do not know to look further. The main task of this playbook should be to get a "Show run" from a Cisco Device and…
DrMxxxxx
  • 15
  • 1
  • 9
-1
votes
1 answer

Insert character Cisco IOS EEM Script

I am extracting the ip address of an interface and using that address' 3rd octet as part of the BGP AS number. I need to insert a 0 before the number if the 3rd octet is < 10. For example, if 3rd octet = 8 then BGP AS = 11108 Here is my current and…
user3051040
  • 161
  • 1
  • 11